Python Script to automate the Assembly Language Debugger
The Assembly Language Debugger is a tool for debugging Linux elf files (executable programs) at the assembly level.
ALD is available here: http://ald.sourceforge.net/
This script makes it easy to collect the complete disassembled output from ald : disas.py
eg:
# python disas.py ./a.out
This script uses “expect” to collect the complete disassembled output of the executable file. Without this script, the user will have to keep on pressing “enter” to collect the complete output from ald.
# This post will be moved to the random scripts page shortly