From ca07a8740b382fe76fbf81648142613364496baf Mon Sep 17 00:00:00 2001 From: tanc7 Date: Tue, 28 Mar 2017 23:25:19 -0700 Subject: [PATCH] Bug Fixes Fixed two different Menu Option formatting bugs for Python and Ruby payload menus respectively. --- EZPZ.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/EZPZ.py b/EZPZ.py index 6860d59..901560d 100644 --- a/EZPZ.py +++ b/EZPZ.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# coding=UTF-8 - #Startup Module Imports import os import socket @@ -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: @@ -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: "))