-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebinfo
140 lines (139 loc) · 4.52 KB
/
webinfo
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
#!/usr/bin/python
# This code write by Mr.nope
# version 1.3.0
##########################################################################
import os
import time
import whois
class color:
green = '\033[92m'
red = '\033[91m'
End = '\033[0m'
blue = '\033[96m'
opt = color.green + "\nwebinfo ~" + color.red + "#" + color.End
ip = "\nEnter ip: "
def cls():
os.system("clear")
def start():
try:
import whois
menu()
except:
cls()
os.system("pip install python-whois")
time.sleep(0.50)
meinmenu()
try:
from colorama import Fore,init
menu()
except:
os.system("pip install colorama")
time.sleep(0.50)
meinmenu()
def menu():
os.system("prinf'\033]2;Webinfo\a'")
cls()
print"""
mm mmmm
*@@@@* @ *@@@* m@@ *@@@@* m@* **
*@@ m@@ m@ @@ @@ @@*
@@m m@@@m m@ mm@*@@ @@m@@@@m @@ *@@@@@@@@m @@@@@ m@@*@@m
@@m @* @@m @* m@* @@ @@ *@@ @@ @@ @@ @@ @@* *@@
!@@ @* *@@ @* !@****** !@ @@ @! @! @@ !@ @@ @@
!@@m !@@m !@m m !!! m@! @! @! !@ !@ @@ !@
!!@!* !!@!* !!****** !! !! !! !! !! !: !@ !!
!!!! !!!! :!! :!! !!! :! !! !! !: !!! !!!
: : : : :: : : : :: :!: : : ::: :!: :: ::: : : : :
""" + color.red + """
----[ This code write by """ + color.green + "Mr.nope" + color.red + " ]----------" + color.blue + """
----[ GitHub: """ + color.green + "https://github.com/mrprogrammer2938" + color.End + color.blue + " ]------" + color.End
print"\n{1}-Start"
print"\n{2}-About Us"
print"\n{3}-Exit..."
choose = raw_input(opt)
if choose == '1':
work()
elif choose == '2':
info()
elif choose == '3':
cls()
print color.green + "Exiting..." + color.End
exit()
elif choose == '':
menu()
elif choose == ' ':
menu()
elif choose == ' ':
menu()
else:
cls()
print(choose + color.red + " Not Found!" + color.End)
meinmenu()
def work():
os.system("prinf'\033]2;Webinfo/Start\a'")
cls()
print"""
mm mmmm
*@@@@* @ *@@@* m@@ *@@@@* m@* **
*@@ m@@ m@ @@ @@ @@*
@@m m@@@m m@ mm@*@@ @@m@@@@m @@ *@@@@@@@@m @@@@@ m@@*@@m
@@m @* @@m @* m@* @@ @@ *@@ @@ @@ @@ @@ @@* *@@
!@@ @* *@@ @* !@****** !@ @@ @! @! @@ !@ @@ @@
!@@m !@@m !@m m !!! m@! @! @! !@ !@ @@ !@
!!@!* !!@!* !!****** !! !! !! !! !! !: !@ !!
!!!! !!!! :!! :!! !!! :! !! !! !: !!! !!!
: : : : :: : : : :: :!: : : ::: :!: :: ::: : : : :
"""
web = raw_input("Enter ip or url: ")
time.sleep(0.50)
start2 = whois.whois(web)
print(start2)
time.sleep(0.50)
tryagain()
def tryagain():
try4 = raw_input("Do you want to try again? [y/n] ")
if try4 == 'y':
work()
elif try4 == 'n':
meinmenu()
else:
tryagain()
def meinmenu():
try3 = raw_input("Do you want to back to mein menu? [y/n] ")
if try3 == 'y':
menu()
elif try3 == 'n':
cls()
print(color.green + "Exiting..." + color.End)
exit()
else:
meinmenu()
def info():
cls()
print color.green
os.system("figlet Mr.nope")
print color.End
time.sleep(0.25)
print color.red + """
This code write by """ + color.green + "Mr.nope" + color.End
time.sleep(0.25)
print"""
Dont Forget to check github :)"""
time.sleep(0.15)
print color.blue + """
https://github.com/mrprogrammer2938""" + color.End
time.sleep(1)
meinmenu()
def meinmenu():
try2 = raw_input("\npress Enter...")
if try2 == '':
menu()
else:
menu()
if __name__ == '__main__':
try:
menu()
except KeyboardInterrupt:
print("\nCtrl + C")
print("Exiting...")
exit(1)