Skip to content

A C++ program that XOR encrypts Shellcode in order to obfuscate it

License

Notifications You must be signed in to change notification settings

axelwesselgren/Shellcode-encryptor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation


Shellcode Encryptor

A C++ program that XOR encrypts Shellcode in order to obfuscate it

Getting Started

Follow these steps to run the program.

Prerequisites

Make sure you have a C++ compiler installed, for example MinGW

Instructions

  1. Clone the repository

    git clone https://github.com/axelwesselgren/.git
    cd mrkoll.se-scraper
  2. Fill out the two variables shellcode and key

    unsigned char shellcode[] =
    const char* key =
  3. Compile the file

    • On macOS/Linux:

      g++ encryptor.cpp -o encryptor
    • On Windows:

      g++ encryptor.cpp -o encryptor.exe
  4. Run the executable

    • On macOS/Linux:

      ./encryptor
    • On Windows:

      encryptor.exe

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

⚠️ Disclaimer

This project is intended for educational and research purposes only.
Use of this tool must comply with all applicable laws and the terms of service of the websites being accessed.
The author does not condone or encourage any form of misuse, and assumes no liability for actions taken using this code.

License

Distributed under the MIT license. See LICENSE for more information.

(back to top)

About

A C++ program that XOR encrypts Shellcode in order to obfuscate it

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages