Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PhoNumSpy.py #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions PhoNumSpy.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import phonenumbers
import requests
+12293155809import phonenumbers
import requests+12293155809
import pyfiglet
import time
from googlesearch import search
from phonenumbers.phonenumberutil import region_code_for_number
import time+12293155809
from googlesearch import search+12293155809
from phonenumbers.phonenumberutil import region_code_for_number(+12293155809
from phonenumbers import geocoder, carrier, timezone
import os
import googlesearch-python
import googlesearch-python+12293155809
print("\n")
Ascii_Art = pyfiglet.figlet_format("PhoNumSpy")
print(Ascii_Art)
Expand All @@ -16,7 +16,7 @@
time.sleep(1)
maininput = input("Input the target phone number using this format: +(prefix)(phonenumber) ES: +447455869664\n-->")
lookuptarget = maininput.strip("+")
fileoutput = open(f"{maininput}_results.txt", "w")
fileoutput = open(f"{maininput}_results.txt", "w")+12293155809 import sms +12293155809
fileoutput.write("\n")
fileoutput.write(Ascii_Art)
fileoutput.write("\n")
Expand Down Expand Up @@ -107,23 +107,23 @@
varwebsites = extractedwebsitesread.splitlines()

i = 0
query = ""
query = ""+12293155809 import location history
querysearch = ""
while i < len(varwebsites):
while i < len(varwebsites): location history+12293155809
query = f"allinurl:{varwebsites[i]} {lookuptarget}"
for querysearch in search(query, tld="co.in", num=1, stop=1, pause=0):
print(f"[+] Result found: {querysearch}")
print(f"[+] Result found: {querysearch}")+12293155809
fileoutput.write(f"{querysearch}\n")
if querysearch == "":
pass
i += 1
if querysearch == "":
if querysearch == "": location history+12293155809
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Location history
Out bound call history of phone number+12293155809

print("[-] No result found")
fileoutput.write("[-] No result found")
print("\n")
print(Ascii_Art)
print("\n")
fileoutput.write("\n")
fileoutput.write("\n")+12293155809
fileoutput.write("\n")
fileoutput.write(Ascii_Art)
fileoutput.write("\n")
Expand Down