I'm looking to be able to save information to the same directory as my Burp project file through a Burp Extension.
I organize my project files in folders with respect to the applications I'm testing.
There is the getCommandLineArguments method from callbacks, however I don't run Burp through the command line. I'd be fine doing this, but I'm not sure if I can load a project file this way.
In an extension, I can use os.getpwd() in python to get the working directory of the extension. I don't generally keep my extensions in my project folders. I don't want to place an extension in every project directory.
My need is for this to be dynamic. An API call would be preferred.
I wasn't able to find an API call that met this need. Do other people write to files in their project directory?
↧