Created
June 19, 2019 15:56
-
-
Save oldkingcone/22725d7eaebb2f07c37cf254effa5a77 to your computer and use it in GitHub Desktop.
Scamm Blaster, you will have to find out how the post data is recieved. But this is designed to submit false data to an attempted scammers phishing page, ruining their attempts at collecting valid creds. This idea was taken from a youtube video (sorry man i cannot find your video :( ) i am not trying to steal this idea, its brilliant, but needed…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# I saw this on a youtube video, and figured i would make some adjustments, and improve upon it. | |
# This is designed to fill the douchebags database with junk data, making sure the phishing campaign is not successful. | |
# Do have fun with this. | |
import requests | |
import os | |
import random | |
import string | |
from faker import Faker | |
chars = string.ascii_letters + string.digits + '!@#$%^&*()[]\\/.,:";\'`~/*-+=_-<>><?|}{' | |
random.seed = (os.urandom(4096)) | |
domain_choice = [] | |
url = str(input("Please enter the douchbags URL\n->")) | |
names = Faker() | |
while True: | |
name_extra = ''.join(random.choice(string.digits)) | |
username = names.email() | |
password = ''.join(random.choice(chars) for i in range(100)) | |
requests.post(url, allow_redirects=False, data={ | |
'email': username, | |
'password': password | |
}) | |
print(f'Sent: {username}\n{password}\n to {url}\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment