Skip to content

Commit

Permalink
paybag.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpool2000 committed Aug 30, 2019
1 parent 1c95a50 commit 72364f8
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions paybag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,13 @@

try:
os.system('clear')

# Color code

R='\033[91m'
Y='\033[93m'
G='\033[92m'
CY='\033[96m'
W='\033[97m'
B='\033[95m'

# Start

def start():
print(CY+"""
____ __
Expand Down Expand Up @@ -68,9 +63,6 @@ def checkver():
if sys.version_info[0] < 3:
print(Y+"Use Python 3 to run this script"+R+"!"+W)
exit(0)


# Creating directory

def mk():

Expand All @@ -96,10 +88,7 @@ def check2():

def sel():
try:
c=int(input(G+"Select your choice >>"+W+" "))

# Create payload

c=int(input(G+"Select your choice >>"+W+" "))
if c==1:
def sel1():
try:
Expand Down Expand Up @@ -166,9 +155,6 @@ def sel1():
sel1()
osi()
sel1()

# Creating handler

elif c==2:
def sel2():
try:
Expand Down Expand Up @@ -299,9 +285,6 @@ def sel2():
sel2()
lst()
sel2()

# Launching msfconsole

elif c==3:
os.system('clear')
print(Y+"\n>>> Launching msfconsole..................\n\n"+W)
Expand Down Expand Up @@ -331,9 +314,6 @@ def sel2():
except ValueError:
print(R+"\nInvalid input ! Please try again!\n")
sel()

# For termux users

def ch3():
if os.path.isfile(pth)==True:
if os.path.isfile('/data/data/com.termux/files/usr/bin/msfvenom')==False:
Expand All @@ -353,9 +333,7 @@ def ch3():
else:
print(R+"\nInvalid choice ! Leaving.......\n"+W)
exit(0)


#call
checkver()
start()
mk()
Expand Down

0 comments on commit 72364f8

Please sign in to comment.