KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
prop
★ 8
Open GitHub ↗
My take on a rop chain generator
Download README (.md)
Explore Similar Repositories
miso-jswidget-example
:
Example of embedding arbitrary javascript widgets into Miso.
Tail
:
Rust tail rewrite
Artificial_Intelligence_In_Games
:
No description available.
grafana-selinux
:
Grafana SELinux policy module for CentOS 7 & RHEL 7
autorun-console-commands
:
This mod allows you to autorun console commands from text files
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
prop
?
Download (.md)
# prop A simple rop gadget collector. # Install `pip install -e . --user` # Usage ``` usage: prop [-h] [-d DEPTH] [-t] [-c] [-p] [-m MAX_ADDRS_PER_GADGET] [-s] binary_path positional arguments: binary_path The binary path of the file to be analyzed optional arguments: -h, --help show this help message and exit -d DEPTH, --depth DEPTH Gadget search depth (default=10) -t, --text_gadgets output gadgets in text format (default) -c, --code output interesting gadgets found as python functions -p, --python_gadgets output gadgets as a python dictionary -s, --silent no gadgets output, just some info -m MAX_ADDRS_PER_GADGET, --max_addrs_per_gadget MAX_ADDRS_PER_GADGET the maximum number of addresses that are printed per gadget (default=3) ``` # Examples * `prop -h` * `prop /bin/ls` * `prop --python_gadgets /bin/ls` * `prop --silent /bin/ls` * `prop --code /bin/ls`