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 DoxTracker.py #6

Open
wants to merge 1 commit into
base: master
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
23 changes: 11 additions & 12 deletions DoxTracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ def KURO():
def LOGO():
KURO()

print """
print("""
\033[1;31m 888b. \033[1;32m88888 \033[1;36m 8
\033[1;31m 8 \033[1;33m 8 .d8b. Yb\033[1;32m dP 8 8d\033[1;36m8b .d88 .d8b 8\033[1;34m.dP .d88b 8d8b
\033[1;31m 8 \033[1;33m 8 8' .8 \033[1;32m `8. 8 8\033[1;36mP 8 8 8 \033[1;34m 88b 8.dP' 8P
\033[1;31m 88\033[1;33m8P' `Y8P'\033[1;32m dP Yb 8\033[1;36m 8 `Y88 `Y8\033[1;34mP 8 Yb `Y88P 8

\033[1;31mPeOpLe TrAcKeR\033[1;m \033[1;34mBY\033[1;m KURO-CODE \033[1;33mVersion:\033[1;32m Beta 1.0\033[1;35m
"""
""")

def menu():

Expand Down Expand Up @@ -235,7 +235,7 @@ def PHONE():
time.sleep(1)
Num = raw_input(" Number:\033[1;m ")

print """\033[1;34m
print("""\033[1;34m
1. Okcaller
2. Facebook
3. France-inverse
Expand All @@ -246,7 +246,7 @@ def PHONE():
00. All
\033[1;m=========================
\033[1;36m 99. Back\033[1;31m 0. Exit
"""
""")
Tracker = raw_input("\033[1;35m D0xTr\033[0;31m@\033[1;35mck3r\033[1;m:~\033[1;34m/\033[1;m$\033[1;m ")

if Tracker == "1":
Expand Down Expand Up @@ -320,15 +320,15 @@ def DEAD():
Name = raw_input(" Name:\033[1;m ")
F_name = raw_input("\033[1;35m First name:\033[1;m ")

print """\033[1;34m
print("""\033[1;34m

1. Libramemoria
2. Avis-de-deces
3. Enmemoria \033[1;33m
00. All\033[1;m
=============================
\033[1;36m 99. Back\033[1;31m 0. Exit
"""
""")
Tracker = raw_input("\033[1;35m D0xTr\033[0;31m@\033[1;35mck3r\033[1;m:~\033[1;34m/\033[1;m$\033[1;35m ")
if Tracker == "1":
KURO()
Expand Down Expand Up @@ -373,15 +373,15 @@ def IP():
LOGO()
ip = raw_input(" Ip:\033[1;m ")

print """\033[1;34m
print("""\033[1;34m

1. G-force
2. whatismyipaddress
3. Whois\033[1;33m
00. All\033[1;m
==============================
\033[1;36m 99. Back\033[1;31m 0. Exit
"""
""")
Tracker = raw_input("\033[1;35m D0xTr\033[0;31m@\033[1;35mck3r\033[1;m:~\033[1;34m/\033[1;m$\033[1;35m ")
if Tracker == "1":
KURO()
Expand Down Expand Up @@ -414,7 +414,7 @@ def IP():
else:
KURO()
LOGO()
print "\033[1;31m[ERROR]\033[1;m selection invalid!"
print ("\033[1;31m[ERROR]\033[1;m selection invalid!")
time.sleep(3)
menu()

Expand All @@ -423,10 +423,9 @@ def EXITMENU():
KURO()
LOGO()
time.sleep(1)
print "\033[1;m Thanks for using DoxTracker\033[1;m"
print ("\033[1;m Thanks for using DoxTracker\033[1;m")
time.sleep(2)
print
print "\033[1;m[\033[1;31mX\033[1;m]...\033[1;32mClosing"
print ("\033[1;m[\033[1;31mX\033[1;m]...\033[1;32mClosing")
time.sleep(1)
KURO()
sys.exit()
Expand Down