Skip to content

Instantly share code, notes, and snippets.

@penafieljlm
Last active March 11, 2024 05:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penafieljlm/997fc0ae462d9001ed13ae12de9236a5 to your computer and use it in GitHub Desktop.
Save penafieljlm/997fc0ae462d9001ed13ae12de9236a5 to your computer and use it in GitHub Desktop.
  • Executables
    • Linux Native
      • Static Analysis
      • Dynamic Analysis
        • gdb: Step through a program
        • netstat: Identifies list of connections between local and remore sockets
        • strace: Track system calls invoked by program
        • ftrace: Track function calls invoked by the program
        • ltrace: Trace calls to shared libraries
        • lsof: List files opened by processes
        • tcpdump: Sniff packets from port (and process if you know the port)
        • fuser: Identifies users of files and sockets
        • dmesg | tail: Identify instruction pointer and stack pointer of the last program that crashed
        • r2: Radare2, debugger
    • Windows Native
      • API Monitor: Track system calls invoked by a program
      • Process Monitor: Get an overview of system processes
      • HxD: View the memory contents of a process in memory
    • Java
  • Data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment