gitextract_rshehg3n/ ├── .gitignore ├── DISCLAIMER.md ├── LICENCE.txt ├── README.md ├── plugins/ │ ├── DNSDetection/ │ │ ├── __init__.py │ │ └── behaviors.py │ ├── ErrorServerDetection/ │ │ ├── __init__.py │ │ └── behaviors.py │ ├── HTTPHeaderDetection/ │ │ ├── __init__.py │ │ └── behaviors.py │ ├── SubdomainDetection/ │ │ ├── __init__.py │ │ └── behaviors.py │ ├── WhoisDetection/ │ │ ├── __init__.py │ │ └── behaviors.py │ └── __init__.py ├── requirements.txt ├── setup.py ├── utils/ │ ├── CDNEngine.py │ ├── __init__.py │ ├── loader.py │ └── request.py └── whichCDN