Auxiliary::Web::Analysis::Differential

Removed payload option from #process_vulnerability call
unstable
Tasos Laskos 2013-01-22 23:41:36 +02:00
parent 0d564c1ce8
commit 6b5c6c3a0c
1 changed files with 2 additions and 3 deletions

View File

@ -101,7 +101,7 @@ module Analysis::Differential
# save the response and some data for analysis
responses[:good][elem.altered] << {
'res' => res,
'elem' => elem
'elem' => elem.dup
}
end
end
@ -122,8 +122,7 @@ module Analysis::Differential
http.if_not_custom_404( action, res['res'].body ) do
# if this isn't a custom 404 page then it means that
# the element is vulnerable, so go ahead and log the issue
fuzzer.process_vulnerability( res['elem'], 'Boolean manipulation.',
:payload => res['elem'].altered_value )
fuzzer.process_vulnerability( res['elem'], 'Boolean manipulation.' )
end
end
end