-
Notifications
You must be signed in to change notification settings - Fork 68
Home
pathetiq edited this page Mar 5, 2017
·
9 revisions
This will be updated soon with all options
Open your jython used by Burp Suite:
- /path/to/jython/bin/jython
Inside jython:
import nltk
nltk.download('punkt')
Simply install the plug-in gfrom the Burp Store in the Extender tab.
Prerequisites
- Install Jython 2.7 (jython_installer-2.7.0.jar)
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:
- git clone https://github.com/nltk/nltk.git
- cd nltk
- git checkout tags/3.1
- /path/to/jython/bin/jython setup.py install
Install TextBlob:
- git clone https://github.com/sloria/TextBlob.git
- cd TextBlob
- git checkout tags/0.11.0
- /path/to/jython/bin/jython setup.py install
- 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