-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WHY AttributeError: 'NoneType' object has no attribute 'split'??? #100
Comments
I got "kinda" the same problem - process monitor is fine for me though, and restarts target as it should:
But the fuzzer fails to continue, and gives the same error as above:
|
I got this exception when I was trying my first sulley project, fuzzing apache. Any idea? I'm under ubuntu 15.04, btw
The output of process_monitor is as follows:
The fuzzing program:
from sulley import *
from requests import http
def try_recv(sock):
print 'SKIP!'
sess = sessions.session(session_filename="audits/apache2.session")
target = sessions.target('127.0.0.1', 80)
target.netmon = pedrpc.client('127.0.0.1', 26001)
target.procmon = pedrpc.client('127.0.0.1', 26002)
target.procmon_options = {'proc_name': 'apache2'}
sess.pre_send = try_recv
sess.add_target(target)
sess.connect(s_get("HTTP VERBS"))
sess.connect(s_get("HTTP VERBS BASIC"))
sess.connect(s_get("HTTP VERBS POST"))
sess.connect(s_get("HTTP HEADERS"))
sess.connect(s_get("HTTP COOKIE"))
sess.fuzz()
The text was updated successfully, but these errors were encountered: