├── .gitignore ├── Darkweb └── ScanningTheDarkWeb │ ├── Docker │ ├── docker-compose.yml │ └── haproxy.cfg │ ├── Results │ └── results.json │ ├── ServerList │ └── validated-server-list.txt │ ├── WebScraper │ ├── requirements.txt │ ├── scrapy.cfg │ └── torexplorer │ │ ├── __init__.py │ │ ├── extractors.py │ │ ├── helpers.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ ├── __init__.py │ │ └── explorer.py │ └── images │ ├── darkweb1.png │ └── darkweb2.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/.gitignore -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/Docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/Docker/docker-compose.yml -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/Docker/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/Docker/haproxy.cfg -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/Results/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/Results/results.json -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/ServerList/validated-server-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/ServerList/validated-server-list.txt -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/requirements.txt: -------------------------------------------------------------------------------- 1 | scrapy 2 | requests 3 | validators 4 | -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/scrapy.cfg -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/extractors.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/helpers.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/items.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/middlewares.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/pipelines.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/settings.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/spiders/__init__.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/spiders/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/WebScraper/torexplorer/spiders/explorer.py -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/images/darkweb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/images/darkweb1.png -------------------------------------------------------------------------------- /Darkweb/ScanningTheDarkWeb/images/darkweb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/Darkweb/ScanningTheDarkWeb/images/darkweb2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalyst256/CyberNomadResources/HEAD/README.md --------------------------------------------------------------------------------