For school I have to make a fuzzer, I use Charle Miller to fuze pdf files. I want to check to amount of failure of an app. When I do
result = process.communicate()
print(result)
it print (None,None) several times what does that mean?
For school I have to make a fuzzer, I use Charle Miller to fuze pdf files. I want to check to amount of failure of an app. When I do
result = process.communicate()
print(result)
it print (None,None) several times what does that mean?
Copyright © 2021 Jogjafile Inc.
It means that when you created the
subprocess.Popenobject, you did not specifystdout=PIPEorstderr=PIPE.For example: