GerbenJavado / LinkFinder

A python script that finds endpoints in JavaScript files
https://gerbenjavado.com/discovering-hidden-content-using-linkfinder
MIT License
3.7k stars 595 forks source link

ImportError: No module name html #67

Closed Vishnugadupudi closed 5 years ago

Vishnugadupudi commented 5 years ago
Traceback (most recent call last):
  File "linkfinder.py", line 11, in <module>
    import re, sys, glob, html, argparse, jsbeautifier, webbrowser, subprocess, base64, ssl, xml.etree.ElementTree
ImportError: No module named html
Vishnugadupudi commented 5 years ago

Solution: pip install html or sudo apt-get install html

EdOverflow commented 5 years ago

:+1:

hasnat0x01 commented 4 years ago

python linkfinder.py -i http://xxxx/js/hoverIntent.js -o results.html Traceback (most recent call last): File "linkfinder.py", line 372, in <module> ''' % (html.escape(url), html.escape(url)) AttributeError: 'module' object has no attribute 'escape'

any solution for this error ?

EdOverflow commented 4 years ago

@hasnat0x01, make sure you are running Python 3.

hasnat0x01 commented 4 years ago

@EdOverflow Thank you its working fine now

ibk96 commented 4 years ago

Install before requirement file, use this command for install pip sudo apt install python-pip