Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arkregiel/win-shellcode-executor
Simple Windows shellcode executor
https://github.com/arkregiel/win-shellcode-executor
cpp maldev malware shellcode shellcode-execute
Last synced: 30 days ago
JSON representation
Simple Windows shellcode executor
- Host: GitHub
- URL: https://github.com/arkregiel/win-shellcode-executor
- Owner: arkregiel
- License: mit
- Created: 2024-08-13T16:53:40.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-20T13:23:02.000Z (3 months ago)
- Last Synced: 2024-08-20T15:25:19.355Z (3 months ago)
- Topics: cpp, maldev, malware, shellcode, shellcode-execute
- Language: C++
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 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
- [Malware development 101: Creating your first ever MALWARE](https://www.youtube.com/watch?v=zEk3mi4Pt_E)
- [Malware Development](https://www.youtube.com/playlist?list=PL_z_ep2nxC57sHAlCcvvaYRrpdMIQXri1)