在线修改Serv-U 4.2用户密码

所属分类: 网络编程 / ASP编程 阅读数: 2054
收藏 0 赞 0 分享
以下代码在Serv-U 4.2上测试有效

<%

' |###########################|
' | 网海求生者QQ:54883661 |
' | mail:wuyingke5155@163.com |
' |###########################|

inipath="D:\Program Files\Serv-U\ServUDaemon.ini" '设置ServUDaemon.ini文件路径
user="[USER="&request("user")&"|1]"
pass="Password="&request("pass")
key=request("key")
if key<>"" then
dim os,userlong,passlong,pl,s,ss
Set fso=CreateObject("scripting.FileSystemObject")
set os=fso.opentextfile(inipath,1) '读取ServUDaemon.ini
s=os.readall
os.close

userlong=instr(s,user)+len(user)+2
for i=userlong to userlong+20
passlong=passlong+1
if asc(mid(s,i,1))=13 then
exit for
end if
next

pl=mid(s,userlong,passlong-1)
ss=Replace(s,user&chr(13)&chr(10)&pl,user&chr(13)&chr(10)&pass)
set os=fso.createtextfile(inipath,true) '写入ServUDaemon.ini
os.write ss
os.close
end if
%>
<form method="post">
用户名:<input type="text" name="user"><br>
新密码:<input type="text" name="pass"><br>
<input type="submit" name="key" value="修改"><br>
</form>

更多精彩内容其他人还在看

asp中去除内容HTML标签的三个function函数

asp中去除内容HTML标签的三个function函数
收藏 0 赞 0 分享

chr(9)、chr(10)、chr(13)、chr(32)、chr(34)讲解

chr(9)、chr(10)、chr(13)、chr(32)、chr(34)讲解
收藏 0 赞 0 分享

方便的大家admin及admin888 经过 md5加密后16位和32位代码

方便的大家admin及admin888 经过 md5加密后16位和32位代码
收藏 0 赞 0 分享

可用的ASP无重复数字随机函数, 数组实现, 并应用于随机显示记录集

可用的ASP无重复数字随机函数, 数组实现, 并应用于随机显示记录集
收藏 0 赞 0 分享

asp动态级联菜单代码

asp动态级联菜单代码
收藏 0 赞 0 分享

ASP中经常使用的SQL语句与教程说明

ASP中经常使用的SQL语句与教程说明
收藏 0 赞 0 分享

实例分析之用ASP编程实现网络内容快速查找的代码

实例分析之用ASP编程实现网络内容快速查找的代码
收藏 0 赞 0 分享

服务端 VBScript 与 JScript 几个相同特性的写法与示例

服务端 VBScript 与 JScript 几个相同特性的写法与示例
收藏 0 赞 0 分享

ASP 环境下 VBS 事件应用 示例代码

ASP 环境下 VBS 事件应用 示例代码
收藏 0 赞 0 分享

asp 之上传漏洞终结篇

asp 之上传漏洞终结篇
收藏 0 赞 0 分享
查看更多