@@ -481,13 +481,26 @@ class SQLMapGenerator {
481
481
if ( document . getElementById ( 'parseErrors' ) . checked ) config [ '--parse-errors' ] = true ;
482
482
483
483
// Post-exploitation options
484
+ if ( document . getElementById ( 'all' ) . checked ) config [ '--all' ] = true ;
485
+ if ( document . getElementById ( 'banner' ) . checked ) config [ '--banner' ] = true ;
486
+ if ( document . getElementById ( 'columns' ) . checked ) config [ '--columns' ] = true ;
487
+ if ( document . getElementById ( 'comments' ) . checked ) config [ '--comments' ] = true ;
488
+ if ( document . getElementById ( 'count' ) . checked ) config [ '--count' ] = true ;
484
489
if ( document . getElementById ( 'currentUser' ) . checked ) config [ '--current-user' ] = true ;
485
490
if ( document . getElementById ( 'currentDb' ) . checked ) config [ '--current-db' ] = true ;
486
491
if ( document . getElementById ( 'dbs' ) . checked ) config [ '--dbs' ] = true ;
487
- if ( document . getElementById ( 'tables' ) . checked ) config [ '--tables' ] = true ;
488
- if ( document . getElementById ( 'columns' ) . checked ) config [ '--columns' ] = true ;
489
- if ( document . getElementById ( 'schema' ) . checked ) config [ '--schema' ] = true ;
492
+ if ( document . getElementById ( 'dump' ) . checked ) config [ '--dump' ] = true ;
490
493
if ( document . getElementById ( 'dumpAll' ) . checked ) config [ '--dump-all' ] = true ;
494
+ if ( document . getElementById ( 'hostname' ) . checked ) config [ '--hostname' ] = true ;
495
+ if ( document . getElementById ( 'isDba' ) . checked ) config [ '--is-dba' ] = true ;
496
+ if ( document . getElementById ( 'passwords' ) . checked ) config [ '--passwords' ] = true ;
497
+ if ( document . getElementById ( 'privileges' ) . checked ) config [ '--privileges' ] = true ;
498
+ if ( document . getElementById ( 'roles' ) . checked ) config [ '--roles' ] = true ;
499
+ if ( document . getElementById ( 'schema' ) . checked ) config [ '--schema' ] = true ;
500
+ if ( document . getElementById ( 'search' ) . checked ) config [ '--search' ] = true ;
501
+ if ( document . getElementById ( 'statements' ) . checked ) config [ '--statements' ] = true ;
502
+ if ( document . getElementById ( 'tables' ) . checked ) config [ '--tables' ] = true ;
503
+ if ( document . getElementById ( 'users' ) . checked ) config [ '--users' ] = true ;
491
504
492
505
const database = document . getElementById ( 'database' ) . value . trim ( ) ;
493
506
if ( database ) config [ '-D' ] = database ;
@@ -521,7 +534,8 @@ class SQLMapGenerator {
521
534
'-p' , '--skip' , '--param-exclude' , '--param-filter' , '--level' , '--risk' , '--dbms' , '--os' ,
522
535
'--technique' , '--invalid-bignum' , '--invalid-logical' , '--invalid-string' , '--no-cast' , '--no-escape' , '--predict-output' ,
523
536
'--batch' , '-v' , '-t' , '--parse-errors' , '--test-filter' ,
524
- '--current-user' , '--current-db' , '--dbs' , '--tables' , '--columns' , '--schema' , '--dump-all' ,
537
+ '--all' , '--banner' , '--columns' , '--comments' , '--count' , '--current-user' , '--current-db' , '--dbs' , '--dump' , '--dump-all' ,
538
+ '--hostname' , '--is-dba' , '--passwords' , '--privileges' , '--roles' , '--schema' , '--search' , '--statements' , '--tables' , '--users' ,
525
539
'-D' , '-T' , '-C' , '-o' ,
526
540
'--tamper' , '--prefix' , '--suffix' , '--csrf-token' , '--csrf-url' , '--second-url'
527
541
] ;
@@ -830,13 +844,26 @@ class SQLMapGenerator {
830
844
'-t' : 'trafficFile' ,
831
845
'--parse-errors' : 'parseErrors' ,
832
846
'--test-filter' : 'testFilter' ,
847
+ '--all' : 'all' ,
848
+ '--banner' : 'banner' ,
849
+ '--columns' : 'columns' ,
850
+ '--comments' : 'comments' ,
851
+ '--count' : 'count' ,
833
852
'--current-user' : 'currentUser' ,
834
853
'--current-db' : 'currentDb' ,
835
854
'--dbs' : 'dbs' ,
836
- '--tables' : 'tables' ,
837
- '--columns' : 'columns' ,
838
- '--schema' : 'schema' ,
855
+ '--dump' : 'dump' ,
839
856
'--dump-all' : 'dumpAll' ,
857
+ '--hostname' : 'hostname' ,
858
+ '--is-dba' : 'isDba' ,
859
+ '--passwords' : 'passwords' ,
860
+ '--privileges' : 'privileges' ,
861
+ '--roles' : 'roles' ,
862
+ '--schema' : 'schema' ,
863
+ '--search' : 'search' ,
864
+ '--statements' : 'statements' ,
865
+ '--tables' : 'tables' ,
866
+ '--users' : 'users' ,
840
867
'-D' : 'database' ,
841
868
'-T' : 'table' ,
842
869
'-C' : 'column' ,
0 commit comments