Skip to content

Commit 684a3e3

Browse files
author
İSMAİL TAŞDELEN
committed
Add files via upload
1 parent 8867e5f commit 684a3e3

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

pentest_toolkit.py

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
#!/usr/bin/eny python
2+
# -*- coding:utf-8 -*-
3+
4+
import os
5+
6+
def msfconsole():
7+
os.system("msfconsole")
8+
9+
def settoolkit():
10+
os.system("setoolkit")
11+
12+
def websploit():
13+
os.system("websploit")
14+
15+
def intersect():
16+
os.system("intersect")
17+
18+
def u3_pwn():
19+
os.system("u3-pwn")
20+
21+
def termineter():
22+
os.system("termineter")
23+
24+
def wifite():
25+
os.system("wifite")
26+
27+
def kismet():
28+
os.system("kismet")
29+
30+
def bbqsql():
31+
os.system("bbqsql")
32+
33+
def httrack():
34+
os.system("httrack")
35+
36+
pentest_toolkit_ico = """
37+
#########################################################
38+
# PYTHON - PENTEST T00LKIT - GH0ST S0FTWARE #
39+
#########################################################
40+
# CONTACT #
41+
#########################################################
42+
# DEVELOPER : İSMAİL TAŞDELEN #
43+
# Mail Address : pentestdatabase@gmail.com #
44+
# LINKEDIN : https://www.linkedin.com/in/ismailtasdelen #
45+
# Whatsapp : + 90 534 295 94 31 #
46+
#########################################################
47+
"""
48+
49+
print pentest_toolkit_ico
50+
51+
islemler_ico = """
52+
53+
(1) METASPLOIT (6) TERMINETER
54+
(2) SET TOOLKIT (7) WIFITE
55+
(3) WEBSPLOIT (8) KISMET
56+
(4) INTERSECT (9) BBQSQL
57+
(5) U3-PWN (10) HTTRACK
58+
"""
59+
60+
print islemler_ico
61+
62+
islem = input("Yapılcak işlem numarasını giriniz : ")
63+
64+
if islem == 1:
65+
msfconsole()
66+
if islem == 2:
67+
settoolkit()
68+
if islem == 3:
69+
websploit()
70+
if islem == 4:
71+
intersect()
72+
if islem == 5:
73+
u3_pwn()
74+
if islem == 6:
75+
termineter()
76+
if islem == 7:
77+
wifite()
78+
if islem == 8:
79+
kismet
80+
if islem == 9:
81+
bbqsql()
82+
if islem == 10:
83+
httrack()

0 commit comments

Comments
 (0)