https://github.com/enty8080/droppers
Droppers written in assembly to drop executables on the compromised computer system.
https://github.com/enty8080/droppers
assembly exploit payload penetration-testing shellcode
Last synced: about 1 year ago
JSON representation
Droppers written in assembly to drop executables on the compromised computer system.
- Host: GitHub
- URL: https://github.com/enty8080/droppers
- Owner: enty8080
- Created: 2022-02-19T19:56:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T09:35:39.000Z (about 3 years ago)
- Last Synced: 2025-01-26T12:27:13.519Z (about 1 year ago)
- Topics: assembly, exploit, payload, penetration-testing, shellcode
- Language: Assembly
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Droppers
Droppers written in assembly to drop executables on the compromised computer system.
```python3
from linux_x64_dropper import Dropper
dropper = Dropper()
code = dropper.generate(assemble=False, options={'RHOST': '127.0.0.1', 'RPORT': 8888})
print(code)
```