Last active
April 4, 2021 21:03
-
-
Save xelemental/ea0b96b4814aee47cc88aa0f1245137b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Run the code :F9 | |
- Step into/ over instructions: F7/F8 | |
- Execute until selecyted instruction : F4 | |
- Execute until next return : Ctrl + F9 | |
- Show Previous/next executed instructions: -/+ | |
- Return to previous view : * | |
- Go to specific expression: Ctrl+g | |
- Insert comment/label : ;/; | |
- Show current function as a graph : g | |
- Find Specific pattern : Ctrl + b | |
- Set Software breakpoint on specific instruction : Select instruction + F2 | |
- Set software breakpoint on API: Go to command prompt > SetBPX API Name | |
- Highlight all occurrences of the keyword in disassembler : h > Click on keyword | |
- Assemble instruction in place of selected one : Select instruction > Spacebar | |
- Edit data in memory or instruction opcode : Select data or instruction + Ctrl+o | |
- Extract API call references : Right-click in disassembler > Search for > Current module > Intermodular calls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment