The Universal Hooker is a tool to intercept execution of programs, debug programs, etc. It enables the user to intercept calls to API calls inside DLLs, and also arbitrary addresses within the executable file in memory. The 'hooks' are written in python an can be changed in runtime (if you change a 'hook' while the program is running, next time the hook is triggered the new code will be executed).See the link above for more info.
Matthew Lewis from IRM wrote a paper called "High-Level Reverse Engineering" where he uses uhooker and also wrote a useful IDA plugin to automatically create the hooks, get it here.
The Pass-The-Hash Toolkit contains utilities to manipulate the Windows Logon Sessions mantained by the LSA (Local Security Authority) component. These tools allow you to list the current logon sessions with its corresponding NTLM credentials (e.g.: users remotely logged in thru Remote Desktop/Terminal Services), and also change in runtime the current username, domain name, and NTLM hashes (YES, PASS-THE-HASH on Windows!).
See the link above for more info.
You can also find additional documentation and attack scenarios here
Basically a tool to passively get information from wireless networks,
specially open wifi networks, the idea is to be hopping around all
802.11 channels and get information from that traffic; you can run the tool, go read something, come back, and have results.
Basically it does some graphs for bssids->clients, captures credentials and traffic for smtp, pop3, http, msn messages, etc.
It is written in python, and can be easily enhanced.