Skip to content
pathetiq edited this page Mar 5, 2017 · 9 revisions

This will be updated soon with all options

Install new languages to detect words with the Spider module

Open your jython used by Burp Suite:

  • /path/to/jython/bin/jython

Inside jython:

import nltk
nltk.download('punkt')

Installation in Burp Store

Simply install the plug-in gfrom the Burp Store in the Extender tab.

Manual installation steps for: OS kali linux

Prerequisites

Not tested on Windows
Note: The installation order is important

Install bs4 and tld:

  • /path/to/jython/bin/pip install bs4 tld

Install version 2.10 of requests

  • Download and then install with: /path/to/jython/bin/jython setup.py install

Install nltk:

Install TextBlob:

Activate the plugin in Burp Suite Extender

  • Tab Extender -> Tab Options -> Python Environment : path /root/jython2.7.0/jython.jar

Note: We need textblob 0.11.0 and nltk 3.1 as the next version use sqlite3 module that is not supported by jython as of July 29th 2016. See bug report here: Jython Issue 1682864