Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 559 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 559 Bytes

PINJA

Pwn tools is an amazing tool but automating debugger tasks with the API is not the greatest experience. On the other hand Binary Ninja has an amazing debug interface with their DebuggerController class. This project seeks to combine the two into one class for easiser usage. I don't know what I'm doing so please open a issue if you have anything to say.

Getting Started

from pinja import * 

p = ninja_process("a.out")
# Breaks at entrypoint, must continue
p.go()
print(p.clean())
p.sendline(b"deadbeef")
p.clean()