dimanche 12 août 2018

Python3 Detecting Web Application Like Wappalyzer

I'm trying to identify a web site like wappalyzer.

Example:

def identifier(url):
    ...some codes and modules
    return results

results = identify("https://stackoverflow.com")
print(results)
## Varnish, Fastly, JQuery, .......

I found some modules for that;

For Python2:

  1. Module:https://github.com/chorsley/python-Wappalyzer (output insufficient information)

  2. Module:https://github.com/scrapinghub/wappalyzer-python

For Python3:

  1. https://github.com/nemurici/python3-wappalyzer ( Module 1 Based - output insufficient information)
  2. https://github.com/LyleMi/python3-Wappalyzer (Module 1 Based - output insufficient information)
  3. https://github.com/CERN-CERT/WAD (Nice but can't use in my script, requests arguments)

I have to use "Python3", so what should i do ? Are there any other method for identify Web Apps?




Aucun commentaire:

Enregistrer un commentaire