![]() |
|
EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. (/Thread-EternalBlue-Package-Blocker-Checker-Enable-or-disable-WannaCry-NotPetya-etc) |
EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - hacxx - 03-25-2019 EternalBlue Blocker Enable or Disable SMB system vulnerability that can be explored by WannaCry, NotPetya or any other EternalBlue exploit tool. EternalBlues Check if your WAN/LAN computers are vulnerable to SMB system vulnerability. How to use? 1) Execute "EternalBlue Blocker" with admin privileges. 2) Select option 2 3) Execute "EternalBlues" 4) Click on Scan 5) Scroll the list looking for your computer name or local IP. Note: If successfully blocked there should be "NO" in EternalBlues in your IP/Hostname. EternalBlue Blocker Source Code Code: @title EternalBlue Exploit Blocker
@echo off
:start
echo .....................................................
echo . EternalBlue Exploit Blocker .
echo . .
echo . (This program requires admin privileges to run) .
echo .....................................................
set /p choice=Enable (1)/Disable (2) EternalBlue Exploit:
if '%choice%'=='1' goto 1
if '%choice%'=='2' goto 2
cls
goto start
:1
cls
echo .....................................................
echo . EternalBlue Exploit Blocker .
echo . .
echo . (This program requires admin privileges to run) .
echo .....................................................
echo This will turn this computer vulnerable to WannaCry,
echo NotPetya or any other EternalBlue exploit tool.
echo .....................................................
set /p choice=Are you sure you want to unprotect this computer? (y=Yes/n=No)
if '%choice%'=='y' goto y
if '%choice%'=='n' goto n
cls
goto start
:y
reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v SMB1 /t REG_DWORD /d "1" /f
reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v SMB2 /t REG_DWORD /d "1" /f
pause
cls
goto start
:n
cls
goto start
:2
reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v SMB1 /t REG_DWORD /d "0" /f
reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v SMB2 /t REG_DWORD /d "0" /f
pause
clsEternalBlues Source Code Code: Not my code...Download: https://www.file-up.org/ridvxk3k63hg Download 2: https://www.solidfiles.com/v/7pgQ8n4VWpkNV Virus Scan https://www.virustotal.com/#/file/a431f84e91feb15403d149331b49c433d71b26c9e112a0f44a58076562d4b7f1/detection RE: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - Request - 03-25-2019 Or... Update your computer? (Or upgrade to linux )
RE: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - hacxx - 03-26-2019 I have a laptop running Tails OS which i don't use and i still prefer Windows. RE: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - Johnngnky - 03-26-2019 Should have tried to reverse engineer them and sell them RE: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - hacxx - 10-03-2021 The links are still up. ------------------- RE: EternalBlue Package (Blocker & Checker) - Enable or disable WannaCry, NotPetya, etc.. - mothered - 10-04-2021 (10-03-2021, 09:50 PM)hacxx Wrote: The links are still up.Good choice with Solidfiles - 2.5 years later, and It's still active. I've got files hosted on their servers for 5+ years. |