m4ll0k / SecretFinder

SecretFinder - A python script for find sensitive data (apikeys, accesstoken,jwt,..) and search anything on javascript files
GNU General Public License v3.0
2k stars 373 forks source link

Cannot run SecretFinder because ModuleNotFoundError #3

Closed TheCrott closed 4 years ago

TheCrott commented 4 years ago

I'm using python 3.6.8 on mac osx 10.14.1

secretfinder$ python SecretFinder.py -i https://code.jquery.com/jquery-3.3.1.js -o cli Traceback (most recent call last): File "SecretFinder.py", line 16, in import jsbeautifier ModuleNotFoundError: No module named 'jsbeautifier'

m4ll0k commented 4 years ago

@TheCrott python3 -m pip install jsbeautifier or pip3 install -r jsbeautifier

TheCrott commented 4 years ago

Solved now thanks. I'm missing pip3 when installing requirements