GithubHelp home page GithubHelp logo

hirusha-adi / stealth-loader Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 5 KB

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

License: MIT License

PowerShell 21.06% Makefile 4.79% C++ 74.16%
rat trojans

stealth-loader's Introduction

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.

stealth-loader's People

Contributors

hirusha-adi avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.