Skip to content

FAQ‐EN

outlaws edited this page Nov 8, 2024 · 3 revisions

I cannot see the jython hook.

Please configure a folder in Burp's Java environment (Settings -> Extensions) and place jython-standalone-xxx.jar in that folder.

The result of using this request to execute the check expression is false.

Expressions are used to determine whether a request needs to be processed. If this occurs, please check the expression. Note that the value of request.Host does not need to include a port.

I have to use jython, but the built-in encryption and decryption algorithms in the project are not sufficient.

There are three ways to solve it

  1. Directly modify the source code of this project and package it yourself.

  2. The encryption and decryption third-party library used in the project is Bouncycastle. If it supports it, you can try rewriting it with jython.

  3. Implement the encryption and decryption algorithm you need in Java, package it in a jar file, and place it in the folder configured in Java environment (Settings ->Extensions). Then, you can introduce the classes in the hook mode of jython.