-
Notifications
You must be signed in to change notification settings - Fork 1
/
panel.py
40 lines (34 loc) · 917 Bytes
/
panel.py
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from urllib2 import Request, urlopen, URLError, HTTPError
def Space(j):
i = 0
while i<=j:
print " ",
i+=1
def findAdmin():
f = open("link.txt","r");
link = raw_input("Enter Site Name \n(ex : example.com or www.example.com ): ")
print "\n\nAvilable links : \n"
while True:
sub_link = f.readline()
if not sub_link:
break
req_link = "http://"+link+"/"+sub_link
req = Request(req_link)
try:
response = urlopen(req)
except HTTPError as e:
continue
except URLError as e:
continue
else:
print "OK => ",req_link
def Credit():
Space(9); print "#####################################"
Space(9); print "# <<< Admin Panel retriever >>> #"
Space(9); print "# coded by MR.ROGUE #"
Space(9); print "# instagram:cyber.security.unlocked #"
Space(9); print "#####################################"
Credit()
findAdmin()