sqlmap/data/procs/mssqlserver/configure_xp_cmdshell.sql

7 lines
236 B
MySQL
Raw Permalink Normal View History

EXEC master..sp_configure 'show advanced options',1;
RECONFIGURE WITH OVERRIDE;
EXEC master..sp_configure 'xp_cmdshell',%ENABLE%;
RECONFIGURE WITH OVERRIDE;
2016-05-30 02:29:40 +03:00
EXEC master..sp_configure 'show advanced options',0;
RECONFIGURE WITH OVERRIDE