JSParser
JSParser copied to clipboard
Shivas-MacBook-Pro:JSParser shivakatravath$ python3 handler.py Traceback (most recent call last): File "/Users/shivakatravath/recon/JSParser/handler.py", line 5, in import safeurl, types, sys, re, mimetypes, glob, jsbeautifier, urlparse, pycurl File "/Users/shivakatravath/recon/JSParser/safeurl.py", line 17, in import...
When running `python handler.py` I get the following error: ``` ImportError: No module named 'StringIO' ``` I believe this is related to python 3.x ``` ⇒ python --version Python 3.5.2...
``` Traceback (most recent call last): File "C:\Tools\JSParser-master\JSParser-master\handler.py", line 2, in import tornado.ioloop, tornado.web, tornado.autoreload ImportError: No module named tornado.ioloop ```
kali 2021 removed pip from apt so it is hard to operate tool here.
kali 2021 removed pip from apt so it is hard to operate tool here.
# solution for StringIO issue in safeurl.py - open safeurl.py and change `import StringIO` `to` `import io ` # Now open handler.py and do following - go to line 11...
Updating the code to work with python 3
Running JSParser on Parrot OS pops up this error python setup.py install Traceback (most recent call last): File "setup.py", line 2, in from setuptools import setup, find_packages ImportError: No module...
Traceback (most recent call last): File "/root/tools/JSParser/handler.py", line 5, in import safeurl, types, sys, re, mimetypes, glob, jsbeautifier, urlparse, pycurl File "/root/tools/JSParser/safeurl.py", line 18, in import StringIO ModuleNotFoundError: No module...