Check out my first novel, midnight's simulacra!

Ptracer: Difference between revisions

From dankwiki
Jump to navigation Jump to search
No edit summary
mention Radare and ERESI. add to x86 category. link to libdisasm
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
A quick-n-dirty instruction trace generation tool using <tt>[[ptrace|ptrace(2)]]</tt>.
A quick-n-dirty instruction trace generation tool using <tt>[[ptrace|ptrace(2)]]</tt> and [http://bastard.sourceforge.net/libdisasm.html libdisasm].


Code can be found at http://github.com/dankamongmen/ptracer.
Code can be found at http://github.com/dankamongmen/ptracer.
==See Also==
* The [http://www.eresi-project.org/ ERESI Project] has produced some awesome tools
* [http://radare.nopcode.org/new/ Radare] has some pretty powerful capabilities
[[CATEGORY: Projects]]
[[CATEGORY: x86]]

Latest revision as of 21:29, 24 July 2010

A quick-n-dirty instruction trace generation tool using ptrace(2) and libdisasm.

Code can be found at http://github.com/dankamongmen/ptracer.

See Also