-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbanner.py
73 lines (62 loc) · 2.42 KB
/
banner.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
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
import random , os
from termcolor import *
import sys
from termcolor import *
import requests
import socket
## COLORS ###############
wi="\033[1;37m"
rd="\033[1;31m"
gr="\033[1;32m"
yl="\033[1;33m"
#########################
os.system('cls||clear')
banner = """
Joe framwork tool for penetesters and devolpoers
░██╗░░░░░░░██╗███████╗██████╗░░░░░░██╗░█████╗░███████╗
░██║░░██╗░░██║██╔════╝██╔══██╗░░░░░██║██╔══██╗██╔════╝
░╚██╗████╗██╔╝█████╗░░██████╦╝░░░░░██║██║░░██║█████╗░░
░░████╔═████║░██╔══╝░░██╔══██╗██╗░░██║██║░░██║██╔══╝░░
░░╚██╔╝░╚██╔╝░███████╗██████╦╝╚█████╔╝╚█████╔╝███████╗
░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░░╚════╝░░╚════╝░╚══════╝┛
----------------------------------------------------
Facebook : https://www.facebook.com/Yousef.Elsa3dany
Github : https://github.com/y0usefalsaadany
----------------------------------------------------
"""
print (colored(banner,"green"))
chooises = f"""
{rd}[{yl}1{rd}] Domain information
[{yl}2{rd}] Download source code
[{yl}3{rd}] Subdomain collector
[{yl}4{rd}] Website paths collector
[{yl}5{rd}] Api paths collector
[{yl}6{rd}] Make list for brute force
[{yl}7{rd}] Crack hash(md5,sha1)
----------------------------------------------------
"""
try:
print(chooises)
inpt = input("Choose Number : ")
sys.path.insert(0, 'data-sploit')
if inpt == "1":
import siteInfo
if inpt == "2":
import sourceCode
if inpt == "3":
import subdomain
if inpt == "4":
import paths
sys.path.insert(0, 'api')
if inpt == "5":
import api
sys.path.insert(0, 'make_list')
if inpt == "6":
import list
sys.path.insert(0, 'crack')
if inpt == "7":
import crack
# else:
# print ('Enter one of the numbers shown in front of you.')
except KeyboardInterrupt:
sys.exit()