Skip to content

Commit 58c0dec

Browse files
author
İSMAİL TAŞDELEN
committed
Add files via upload
1 parent b8eec73 commit 58c0dec

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
#!/usr/bin/eny python
2+
# -*- coding:utf-8 -*-
3+
4+
import os
5+
6+
MetasploitFramework_databasemanagement_ico = """
7+
####################################################################################
8+
# PYTHON - METASPLOIT FRAMEWORK DATABASE MANAGEMENT - GH0ST S0FTWARE #
9+
####################################################################################
10+
# CONTACT #
11+
####################################################################################
12+
# DEVELOPER : İSMAİL TAŞDELEN #
13+
# Mail Address : pentestdatabase@gmail.com #
14+
# LINKEDIN : https://www.linkedin.com/in/ismailtasdelen #
15+
# Whatsapp : + 90 534 295 94 31 #
16+
####################################################################################
17+
"""
18+
19+
print MetasploitFramework_databasemanagement_ico
20+
21+
def msfdb_init():
22+
os.system("msfdb init")
23+
24+
def msfdb_reinit():
25+
os.system("msfdb reinit")
26+
27+
def msfdb_delete():
28+
os.system("msfdb delete")
29+
30+
def msfdb_start():
31+
os.system("msfdb start")
32+
33+
def msfdb_stop():
34+
os.system("msfdb stop")
35+
36+
islemler_ico = """
37+
(1) Metasploit-Framework Database Init
38+
(2) Metasploit-Framework Database Reinit
39+
(3) Metasploit-Framework Database Delete
40+
(4) Metasploit-Framework Database Start
41+
(5) Metasploit-Framework Database Stop
42+
"""
43+
44+
print islemler_ico
45+
46+
islem = input("Yapılcak işlem numarasını giriniz : ")
47+
48+
if islem == 1:
49+
msfdb_init()
50+
if islem == 2:
51+
msfdb_reinit()
52+
if islem == 3:
53+
msfdb_delete()
54+
if islem == 4:
55+
msfdb_start()
56+
if islem == 5:
57+
msfdb_stop()

0 commit comments

Comments
 (0)