├── Input-Examples └── social-mapper-results.csv ├── LICENSE ├── README.md ├── Results └── .gitignore ├── docs ├── TroubleShooting_Social_Attacker │ ├── Troubleshooting.md │ └── facebook-html-classes.png └── logo.png ├── modules ├── __init__.py ├── facebookphisher.py ├── linkedinphisher.py ├── twitterphisher.py └── vkontaktephisher.py ├── sa_server ├── get-a-ssl-certificate.txt ├── sa_server.py └── web │ ├── favicon.ico │ └── robots.txt ├── setup ├── requirements.txt └── setup-mac.txt └── social_attacker.py /Input-Examples/social-mapper-results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/Input-Examples/social-mapper-results.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/README.md -------------------------------------------------------------------------------- /Results/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/TroubleShooting_Social_Attacker/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/docs/TroubleShooting_Social_Attacker/Troubleshooting.md -------------------------------------------------------------------------------- /docs/TroubleShooting_Social_Attacker/facebook-html-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/docs/TroubleShooting_Social_Attacker/facebook-html-classes.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/docs/logo.png -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/facebookphisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/modules/facebookphisher.py -------------------------------------------------------------------------------- /modules/linkedinphisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/modules/linkedinphisher.py -------------------------------------------------------------------------------- /modules/twitterphisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/modules/twitterphisher.py -------------------------------------------------------------------------------- /modules/vkontaktephisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/modules/vkontaktephisher.py -------------------------------------------------------------------------------- /sa_server/get-a-ssl-certificate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/sa_server/get-a-ssl-certificate.txt -------------------------------------------------------------------------------- /sa_server/sa_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/sa_server/sa_server.py -------------------------------------------------------------------------------- /sa_server/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/sa_server/web/favicon.ico -------------------------------------------------------------------------------- /sa_server/web/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /setup/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/setup/requirements.txt -------------------------------------------------------------------------------- /setup/setup-mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/setup/setup-mac.txt -------------------------------------------------------------------------------- /social_attacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Greenwolf/social_attacker/HEAD/social_attacker.py --------------------------------------------------------------------------------