-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusername.bat
55 lines (50 loc) · 1.38 KB
/
username.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@echo off
title Username Tool
:home
cls
echo.
echo __ __________ _________ ____ _____ ___ ___
echo / / / / ___/ _ \/ ___/ __ \/ __ `/ __ `__ \/ _ \
echo / /_/ (__ ) __/ / / / / / /_/ / / / / / / __/
echo \__,_/____/\___/_/ /_/ /_/\__,_/_/ /_/ /_/\___/
echo.
echo Choose an options:
echo =================
echo [1] Sherlock
echo [2] Blackbird
echo [3] Maigret
echo [4] WhatsMyName
echo [5] Exit
echo.
set /p web=Type option:
if "%web%"=="1" goto 1
if "%web%"=="2" goto 2
if "%web%"=="3" goto 3
if "%web%"=="4" goto 4
if "%web%"=="5" exit
:1
set /p url=Target Username:
cd "D:\open-source intelligence\main tools\sherlock"
start python -m sherlock_project %url% > %userprofile%\Documents\%url%-Sherlock.txt
start "" %userprofile%\Documents\%url%-sherlock.txt
goto home
:2
set /p url=Target Username:
cd "D:\open-source intelligence\main tools\blackbird"
start python blackbird.py --username %url% --pdf
goto home
:3
set /p url=Target Username:
cd "D:\open-source intelligence\main tools\maigret"
start python -m maigret %url% > %userprofile%\Documents\%url%-maigret.txt
start "" %userprofile%\Documents\%url%-maigret.txt
goto home
:4
set /p url=Target Username:
cd "D:\open-source intelligence\main tools\whatsmyname"
start python whatsmyname.py -u %url%
echo Menunggu proses selesai...
pause
cd "D:\open-source intelligence\main tools\whatsmyname"
start "" whatsmyname_report_%url%.html
goto home