├── .dockerignore
├── templates
├── error.html
├── footer.html
├── view-results.html
├── about.html
├── header.html
└── index.html
├── jsparser.png
├── requirements.txt
├── fonts
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
├── Dockerfile
├── setup.py
├── js
├── npm.js
├── parsejs.js
└── bootstrap.min.js
├── README.md
├── .gitignore
├── css
├── main.css
├── bootstrap-theme.min.css
├── bootstrap-theme.min.css.map
├── bootstrap-theme.css
└── bootstrap-theme.css.map
├── handler.py
└── safeurl.py
/.dockerignore:
--------------------------------------------------------------------------------
1 | .gitignore
--------------------------------------------------------------------------------
/templates/error.html:
--------------------------------------------------------------------------------
1 | error
--------------------------------------------------------------------------------
/jsparser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nahamsec/JSParser/HEAD/jsparser.png
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | safeurl
2 | tornado
3 | jsbeautifier
4 | netaddr
5 | pycurl
6 | BeautifulSoup4
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nahamsec/JSParser/HEAD/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nahamsec/JSParser/HEAD/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nahamsec/JSParser/HEAD/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nahamsec/JSParser/HEAD/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |