@@ -481,13 +481,26 @@ class SQLMapGenerator {
481481 if ( document . getElementById ( 'parseErrors' ) . checked ) config [ '--parse-errors' ] = true ;
482482
483483 // 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 ;
484489 if ( document . getElementById ( 'currentUser' ) . checked ) config [ '--current-user' ] = true ;
485490 if ( document . getElementById ( 'currentDb' ) . checked ) config [ '--current-db' ] = true ;
486491 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 ;
490493 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 ;
491504
492505 const database = document . getElementById ( 'database' ) . value . trim ( ) ;
493506 if ( database ) config [ '-D' ] = database ;
@@ -521,7 +534,8 @@ class SQLMapGenerator {
521534 '-p' , '--skip' , '--param-exclude' , '--param-filter' , '--level' , '--risk' , '--dbms' , '--os' ,
522535 '--technique' , '--invalid-bignum' , '--invalid-logical' , '--invalid-string' , '--no-cast' , '--no-escape' , '--predict-output' ,
523536 '--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' ,
525539 '-D' , '-T' , '-C' , '-o' ,
526540 '--tamper' , '--prefix' , '--suffix' , '--csrf-token' , '--csrf-url' , '--second-url'
527541 ] ;
@@ -830,13 +844,26 @@ class SQLMapGenerator {
830844 '-t' : 'trafficFile' ,
831845 '--parse-errors' : 'parseErrors' ,
832846 '--test-filter' : 'testFilter' ,
847+ '--all' : 'all' ,
848+ '--banner' : 'banner' ,
849+ '--columns' : 'columns' ,
850+ '--comments' : 'comments' ,
851+ '--count' : 'count' ,
833852 '--current-user' : 'currentUser' ,
834853 '--current-db' : 'currentDb' ,
835854 '--dbs' : 'dbs' ,
836- '--tables' : 'tables' ,
837- '--columns' : 'columns' ,
838- '--schema' : 'schema' ,
855+ '--dump' : 'dump' ,
839856 '--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' ,
840867 '-D' : 'database' ,
841868 '-T' : 'table' ,
842869 '-C' : 'column' ,
0 commit comments