These are a collection of Fermion Scripts that I have found helpful while performing reverse engineering.
- called_exported_functions.js - When you know a DLL is being loaded, you want to see what exported functions are being called.
- scan_memory.js - Scan the current attached process for interesting strings.
- CreateProcessW_Intercept.js - Intercept CreateProcessW and change the command line for process creation. I added a counter to ensure we are not launching the command multiple times, but this can be changed.