Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 919 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 919 Bytes

Windows Shellcode Executor

Disclaimer

This project is for educational purposes only. Don't use it for illegal activities. I'm not responsible for any damage caused by this project.

Description

This project is a simple Windows shellcode executor.

Project contains classes:

  • ShellcodeSelfInjector - injects shellcode into its own process memory and executes it.
  • ShellcodeProcessInjector - injects shellcode into another process memory and executes it.

What is shellcode?

Shellcode is a small piece of code used in exploiting software vulnerabilities. It's designed to be executed directly by the processor, often to spawn a shell or execute commands on a compromised system.

References