Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.
/ Stealth-Loader Public archive

download an exe and start it in background in without notifying the user in windows

License

Notifications You must be signed in to change notification settings

hirusha-adi/Stealth-Loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RAT Loader

Download and start your executable file in the background.

  • Change the URL in line 8 of the code.cpp file (line 1 of powershell.ps1)

Compiling the code.cpp

Using cl.exe

  • To compile the C++ code in Windows, you can use the command line tool cl.exe, which is part of the Microsoft Visual C++ Build Tools.
cl /EHsc /O2 /Fe:run.exe code.cpp
  • The /EHsc option enables C++ exceptions handling,
  • /O2 optimizes the code for maximum performance,
  • and /Fe:run.exe specifies the output file name.
  • code.cpp is the C++ source file.

Using clang

  • To compile C++ code with Clang in Windows, you can use the clang++.exe command line tool.
clang++ -o run.exe code.cpp

The -o option specifies the output file name, in this case run.exe. Replace code.cpp with the actual name of your C++ source file.

Using make

  • To build the code, open a command prompt, navigate to the directory where the Makefile and source file are located, and run the following command:
make
  • This will compile the code and create the run.exe file. To clean up the build artifacts, you can run the following command:
make clean
  • This will delete the run.exe file.

About

download an exe and start it in background in without notifying the user in windows

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published