-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_lookup.py
More file actions
141 lines (87 loc) · 7.31 KB
/
Copy pathmain_lookup.py
File metadata and controls
141 lines (87 loc) · 7.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
from tkinter import *
import tkinter as tk
from PIL import Image, ImageTk
import subprocess
from main_ip import ip
from main_number import number
from main_username import username
def lookup():
lookup = tk.Toplevel()
lookup.title("WHITEWOLF-TOOLS")
lookup.geometry("1200x560")
lookup.minsize(1200, 560)
lookup.iconbitmap("icon-tool.ico")
lookup.configure(bg="black")
lookup.grid_columnconfigure(0, weight=1)
lookup.grid_columnconfigure(1, weight=1)
lookup.grid_rowconfigure(0, weight=1)
hautdroite_frame = Frame(lookup, bg="black")
hautdroite_frame.grid(row=0, column=1, sticky="ne", padx=(0, 150))
hautdroite2_frame = Frame(lookup, bg="black")
hautdroite2_frame.grid(row=0, column=1, sticky="e", padx=(0, 50))
bg_label = tk.Label(lookup, bg="black")
bg_label.place(x=-30, rely=0.5, anchor="w")
gif = Image.open("back.gif")
frames = []
try:
while True:
frames.append(ImageTk.PhotoImage(gif.copy()))
gif.seek(len(frames))
except Exception as e:
print(f"ERROR {e}")
pass
frame_index = 0
def animate():
nonlocal frame_index
bg_label.config(image=frames[frame_index])
frame_index = (frame_index + 1) % len(frames)
lookup.after(1000, animate)
animate()
texte_complet = f"""
██╗ ██╗██╗ ██╗██╗████████╗███████╗██╗ ██╗ ██████╗ ██╗ ███████╗
██║ ██║██║ ██║██║╚══██╔══╝██╔════╝██║ ██║██╔═══██╗██║ ██╔════╝
██║ █╗ ██║███████║██║ ██║ █████╗ ██║ █╗ ██║██║ ██║██║ █████╗
██║███╗██║██╔══██║██║ ██║ ██╔══╝ ██║███╗██║██║ ██║██║ ██╔══╝
╚███╔███╔╝██║ ██║██║ ██║ ███████╗╚███╔███╔╝╚██████╔╝███████╗██║
╚══╝╚══╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚══════╝ ╚══╝╚══╝ ╚═════╝ ╚══════╝╚═╝ """
titre = tk.Label(hautdroite_frame, text=texte_complet, bg="black", fg="white", font=("Courier New", 7, "bold"))
titre.pack()
IP = Button(hautdroite2_frame, text="IP", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2", command=ip)
IP.grid(row=0, column=0, padx=10)
NUMBER = Button(hautdroite2_frame, text="Number", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2", command=number)
NUMBER.grid(row=0, column=1, padx=10)
USER = Button(hautdroite2_frame, text="Username", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2", command=username)
USER.grid(row=0, column=2, padx=10)
GOOGLE = Button(hautdroite2_frame, text="Google", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
GOOGLE.grid(row=0, column=3, padx=10)
DNS = Button(hautdroite2_frame, text="Dns", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
DNS.grid(row=1, column=0, padx=10)
DISCORD = Button(hautdroite2_frame, text="Discord", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
DISCORD.grid(row=1, column=1, padx=10, pady=10)
GITHUB = Button(hautdroite2_frame, text="Github", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
GITHUB.grid(row=1, column=2, padx=10, pady=10)
LEAK = Button(hautdroite2_frame, text="Leak mail", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
LEAK.grid(row=1, column=3, padx=10, pady=10)
ARCHIVE = Button(hautdroite2_frame, text="Archive", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
ARCHIVE.grid(row=2, column=0, padx=10, pady=10)
TIKTOK = Button(hautdroite2_frame, text="4c Tiktok", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
TIKTOK.grid(row=2, column=1, padx=10, pady=10)
GITHUB2 = Button(hautdroite2_frame, text="4c Github", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
GITHUB2.grid(row=2, column=2, padx=10, pady=10)
SCANIP = Button(hautdroite2_frame, text="IP Scanner", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
SCANIP.grid(row=2, column=3, padx=10, pady=10)
SSL = Button(hautdroite2_frame, text="SSL / TLS", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
SSL.grid(row=3, column=0, padx=10, pady=10)
ROBLOX = Button(hautdroite2_frame, text="Roblox", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
ROBLOX.grid(row=3, column=1, padx=10, pady=10)
AI = Button(hautdroite2_frame, text="Ai", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
AI.grid(row=3, column=2, padx=10, pady=10)
HOLEHE = Button(hautdroite2_frame, text="Holehe", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2")
HOLEHE.grid(row=3, column=3, padx=10, pady=10)
def EXIT():
subprocess.call("taskkill /F /IM python.exe", shell=True)
EXIT = Button(hautdroite2_frame, text="EXIT", font=("Orbitron", 14, "bold"), fg="white", bg="#111111", activebackground="#222222", activeforeground="white", relief="flat", bd=0, padx=20, pady=10, cursor="hand2", command=EXIT)
EXIT.grid(row=4, column=3, pady=10)
hautdroite_frame.lift()
hautdroite2_frame.lift()
lookup.mainloop()