Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 9 days ago
JSON representation

Droppers written in assembly to drop executables on the compromised computer system.

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)
```