Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
Fixed two different Menu Option formatting bugs for Python and Ruby payload menus respectively.
  • Loading branch information
tanc7 authored Mar 29, 2017
1 parent 222af1c commit ca07a87
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions EZPZ.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/usr/bin/env python
# coding=UTF-8

#Startup Module Imports
import os
import socket
Expand Down Expand Up @@ -441,9 +438,9 @@ def Platform_Python():
opt_Choice = str(raw_input("Enter a OPTION: "))

if opt_Choice == "1":
return
Python_INLINE()
elif opt_Choice == "2":
return
Python_STAGED()
elif opt_Choice == "0":
main()
else:
Expand All @@ -466,10 +463,10 @@ def Ruby_INLINE():
'2': 'ruby/shell_reverse_tcp_ssl'
}

opt_List = {
opt_List = (
'\n\t#1. Ruby Reverse COMMAND Shell, TCP',
'#2. Ruby Reverse COMMAND Shell, TCP + SSL'
}
)
print ("\n\t".join(opt_List))

opt_Choice = str(raw_input("Enter a payload shown: "))
Expand Down

0 comments on commit ca07a87

Please sign in to comment.