quentinhardy / odat

ODAT: Oracle Database Attacking Tool
1.6k stars 345 forks source link

test module "all" cannot skip a module and continue to the next #27

Closed byr0nchan closed 4 years ago

byr0nchan commented 6 years ago

The login ADAMS has already been tested at least once. What do you want to do:

quentinhardy commented 4 years ago

In this exact case, I assume you have already found valid credentials and you want to skip the research of new passwords. You can use the -U and -P for skipping this step with the all module for example.

quentinhardy commented 4 years ago

Implemented in https://github.com/quentinhardy/odat/commit/9cfbdec1616b7796056890888e6eb806b2f33959 Thank you for the idea.

mahmoudawni88 commented 2 years ago

Hi,

-U or -P isn't working.

mahmoudawni88 commented 2 years ago

form the code, you have to reply with a 0r A, c or C, p or P

if rep == 's' or rep == 'S' : return 0 elif rep == 'a' or rep == 'A' : return 1 elif rep == 'c' or rep == 'C' : return 2 elif rep == 'p' or rep == 'P': return 3

Thanks, awni