Skip to content

Instantly share code, notes, and snippets.

Code completion for Burp Jython extensions

The IntelliJ Python plugin supports code completion and this can recognize the Burp API. First, make sure your project has the SDK set to Jython:

image

Then, add the Burp API as a library:

image

@Brae
Brae / Reverse Engineering Techniques.md
Last active July 7, 2016 15:02
Summary of tools and approaches for RE purposes

##Packers:

  • PEiD - Packer detection, runs on Windows (can't find a Linux version)
  • UPX - Common packer software

##Section Analysis:

  • PEView - Show info from the PE header
  • PE Explorer - Similar to PE View
  • Resource Hacker - Browser the .rsrc section
    • Icon section lists image shown when the executable is in a file listing
  • Menu section stores all menus that appear in various windows, suh as the File, Edit and View menus. This section contains the names of all the menus, as well as the text shown for each. The names should give you a good idea of their functionality.