Skip to content

Instantly share code, notes, and snippets.

@DevonThomas
DevonThomas / phone-search.py
Last active March 17, 2024 21:28
OSINT Phone Search tool inspired by Michael Bazzell's previously public tool.
import webbrowser
areaCode = input("What is the area code of the phone number? ")
middle3 = input("What are the middle 3 digits? ")
last4 = input("What are the last 4 digits? ")
phoneNumber = str(areaCode) + str(middle3) + str(last4)
fourOneOne = "https://www.411.com/phone/" + "1-" + str(areaCode) + "-" + str(middle3) + "-" + str(last4)
webbrowser.open(fourOneOne)