代码搜索:FileSystemObject
找到约 1,189 项符合「FileSystemObject」的源代码
代码结果 1,189
www.eeworm.com/read/111199/15517164
asp-
ASP漏洞分析和解决方法(2)
3 code.asp文件会泄漏ASP代码
问题描述:
举个很简单的例子,在微软提供的 ASP1.0 的例程里有一个 .asp 文件,专门用来查看其它 .asp 文件的源代码,该文件为
ASPSamp/Samples/code.asp。如果有人把这个程序上传到服务器,而服务器端没有任何防范措施的话,他就可以很容易地查看他
人的程序。 ...
www.eeworm.com/read/111199/15517167
-
通过asp入侵web server,窃取文件毁坏系统
本文主要叙及有关asp/iis的安全性问题及其相应对策,不提倡网友使用本文提及的
方法进行任何破坏,否则带来的后果自负
通过asp入侵web server,窃取文件毁坏系统,这决非耸人听闻...
iis的安全性问题
1.iis3/pws的漏洞
我实验过,win95+pws上运行ASP程序,只须在浏览器地址栏内多 ...
www.eeworm.com/read/109923/15545763
asp driver.asp
'----------------驱动器可用空间
Function ShowAvailableSpace(drvPath)
On error resume next
Dim fs, d, s
Set fs = CreateObject("Scripting.FileSystemObject
www.eeworm.com/read/108493/15585369
txt example4.txt
ASP Parser by Pablo Software Solutions: Example 4
www.eeworm.com/read/104928/15681146
vbs sol5-4.vbs
Dim objFSO, objFile, nSize
'create an instance of an FSO object
Set objFSO = CreateObject("Scripting.FileSystemObject")
'get a reference to a specified file
Set objFile = objFSO.GetFile("d:\da
www.eeworm.com/read/104928/15681149
vbs readini.vbs
'readini.vbs
Dim dAccess
dAccess = ReadINI("e:\data.ini", "DateLastAccessed")
Function ReadINI(strINIFile, strKey)
Dim objFSO, objTextFile, strLine
Set objFSO = CreateObject("Scripting.Fi
www.eeworm.com/read/104928/15681151
vbs sol5-5.vbs
'set read-only and toggle hidden attribute for a file
Const ReadOnly = 1
Const Hidden = 2
Dim objFSO, objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
'get a reference to a f
www.eeworm.com/read/104928/15681152
vbs sol5-2.vbs
Dim objFSO, objDrive
Set objFSO = CreateObject("Scripting.FileSystemObject")
For Each objDrive In objFSO.Drives
'check if drive is ready,
If objDrive.IsReady Then
Wscript.Echo objDri
www.eeworm.com/read/104928/15681153
vbs sol5-15.vbs
Dim objFSO, objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile "d:\data\report.doc"
Set objFile = objFSO.GetFile("d:\data\payroll.xls")
objFile.Delete