mirror of
https://github.com/mgeeky/Penetration-Testing-Tools.git
synced 2024-11-22 02:21:36 +01:00
ysoserial-generator.py - fixed issue with shell()
This commit is contained in:
parent
04bd92f502
commit
2bfd19e016
@ -297,10 +297,14 @@ def processShellCmd(cmd):
|
|||||||
|
|
||||||
def shell(cmd, noOut = False):
|
def shell(cmd, noOut = False):
|
||||||
cmd = processShellCmd(cmd)
|
cmd = processShellCmd(cmd)
|
||||||
out, err = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
|
out = ""
|
||||||
|
try:
|
||||||
if not out and err:
|
out = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
|
||||||
out = err
|
except subprocess.CalledProcessError as e:
|
||||||
|
if 'Available payload types' in e.output or 'mbechler' in e.output:
|
||||||
|
out = e.output
|
||||||
|
else:
|
||||||
|
Logger.dbg('Error ({}): shell(\'{}\') returned code {}: {}'.format(str(e), e.cmd, e.returncode, e.output))
|
||||||
|
|
||||||
if not noOut:
|
if not noOut:
|
||||||
Logger.dbg('shell(\'{}\') returned:\n"{}"\n'.format(cmd, out))
|
Logger.dbg('shell(\'{}\') returned:\n"{}"\n'.format(cmd, out))
|
||||||
|
Loading…
Reference in New Issue
Block a user