Skip to content

Instantly share code, notes, and snippets.

@ghifarit53
Last active October 9, 2022 02:14
Show Gist options
  • Save ghifarit53/9878bf62671a3f1712259cc1476d6288 to your computer and use it in GitHub Desktop.
Save ghifarit53/9878bf62671a3f1712259cc1476d6288 to your computer and use it in GitHub Desktop.
An attempt to spam phisher's website with fake credentials

Then (19 September 2022)

Screen Shot 2022-09-19 at 8 23 16 AM

Screen Shot 2022-09-19 at 8 23 53 AM

Now (21 September 2022)

Screen Shot 2022-09-21 at 2 18 45 PM

Screen Shot 2022-09-21 at 2 23 31 PM

import datetime as dt
import random
import string
import requests
def get_random_string(length):
# choose from all lowercase letter
result = ''.join(random.SystemRandom().choice(string.ascii_lowercase +
string.digits)
for _ in range(length))
return result
url = "https://ig-ftopicture.b0tnet.com/data.php"
while True:
creds = {
'email': (None, get_random_string(10) + "@gmail.com"),
'pass': (None, get_random_string(20))
}
print(dt.datetime.now(), end=": ")
requests.post(url, data=creds)
print(creds['email'][1], creds['pass'][1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment