-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f827e66
commit a7b6aca
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import requests | ||
from termcolor import colored | ||
from colorama import Fore | ||
import colorama | ||
from tqdm import tqdm | ||
import argparse | ||
import threading | ||
import time | ||
import datetime | ||
|
||
colorama.init() | ||
|
||
def logo(): | ||
print(Fore.RED+""" | ||
_ _ _ _____ _ _ | ||
/ \ __| |_ __ ___ (_)_ __ | ___(_)_ __ __| | ___ _ __ | ||
/ _ \ / _` | '_ ` _ \| | '_ \| |_ | | '_ \ / _` |/ _ \ '__| | ||
/ ___ \ (_| | | | | | | | | | | _| | | | | | (_| | __/ | | ||
/_/ \_\__,_|_| |_| |_|_|_| |_|_| |_|_| |_|\__,_|\___|_| | ||
By Xnuvers007 | ||
command = jagoadminfinder.py -t <Site> using http:// | ||
""") | ||
wordlist = open("list.txt","r") | ||
def findPanel(url): | ||
for words in wordlist: | ||
words = words.strip() | ||
req = requests.get(url+"/"+words) | ||
if req.status_code == 200: | ||
print(req.url) | ||
parser = argparse.ArgumentParser(""" | ||
python3 AdminFinder -t [url] | ||
ex:python3 AdminFinder -t http://google.com | ||
""") | ||
parser.add_argument("-t","--t") | ||
args = parser.parse_args() | ||
url = args.t | ||
if url !=None: | ||
for _ in tqdm(range(100), | ||
desc="Loading...", | ||
ascii=False, ncols=75): | ||
time.sleep(0.3) #loading... | ||
for i in range(50): | ||
t = threading.Thread(target=findPanel,args=(url,)) | ||
t.start() | ||
else: | ||
logo() | ||
|
||
|
||
logo() |