├── .gitignore ├── LICENSE ├── README.md ├── SpyScraper.py ├── assets └── spyscraper.jpg ├── data.json ├── lib ├── banner.py ├── colors.py ├── formats.py ├── launcher.py ├── requests.py └── scrapper.py ├── main.py ├── requirements.txt └── useragents.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/README.md -------------------------------------------------------------------------------- /SpyScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/SpyScraper.py -------------------------------------------------------------------------------- /assets/spyscraper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/assets/spyscraper.jpg -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "target_url": "" 3 | } -------------------------------------------------------------------------------- /lib/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/banner.py -------------------------------------------------------------------------------- /lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/colors.py -------------------------------------------------------------------------------- /lib/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/formats.py -------------------------------------------------------------------------------- /lib/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/launcher.py -------------------------------------------------------------------------------- /lib/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/requests.py -------------------------------------------------------------------------------- /lib/scrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/lib/scrapper.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asyncio 2 | python-whois 3 | bs4 4 | requests -------------------------------------------------------------------------------- /useragents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N0rz3/SpyScraper/HEAD/useragents.txt --------------------------------------------------------------------------------