├── .gitattributes ├── .gitignore ├── 1337 v1.0 ├── 1337 v1.0 │ ├── 1337 v1.0.sln │ ├── 1337 v1.0 │ │ ├── 1337 v1.0.vbproj │ │ ├── DM-Empty.ico │ │ ├── Form2.Designer.vb │ │ ├── Form2.resx │ │ ├── Form2.vb │ │ ├── Module1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── Delete.png │ │ │ └── Ok.png │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── 1337 v1.0.vshost.exe.manifest │ │ │ │ ├── 1337 v2.0.vshost.exe.manifest │ │ │ │ └── 1337 v2.0.xml │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── 1337 v1.0.vbproj.FileListAbsolute.txt │ │ │ │ ├── 1337 v1.0.vbproj.GenerateResource.Cache │ │ │ │ ├── 1337 v2.0.xml │ │ │ │ ├── _1337_v2._0.Form1.resources │ │ │ │ ├── _1337_v2._0.Form2.resources │ │ │ │ └── _1337_v2._0.Resources.resources │ │ └── wireless-connection-icon.ico │ └── logo.gif ├── 21ox205.png ├── Ab_blue_matrix.jpg ├── Copacetix-Cool-Background-Five.jpg ├── DM-Empty.ico ├── Form1.Designer.vb ├── Form1.resx └── Form1.vb ├── 72389 Binder ├── 72389 Binder │ ├── 72389 Binder.sln │ ├── 72389 Binder │ │ ├── 72389 Binder.idc │ │ ├── 72389 Binder.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── Untitled-1.png │ │ │ └── Untitled-2.png │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── 72389 Binder.vshost.exe.manifest │ │ │ │ └── 72389 Binder.xml │ │ ├── cable.ico │ │ └── obj │ │ │ └── Debug │ │ │ ├── 72389 Binder.vbproj.FileListAbsolute.txt │ │ │ ├── 72389 Binder.xml │ │ │ ├── GenerateResource.read.1.tlog │ │ │ ├── GenerateResource.write.1.tlog │ │ │ ├── _72389_Binder.Form1.resources │ │ │ └── _72389_Binder.Resources.resources │ ├── Backup │ │ ├── 72389 Binder.sln │ │ └── 72389 Binder │ │ │ ├── 72389 Binder.vbproj │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ ├── Untitled-1.png │ │ │ └── Untitled-2.png │ │ │ └── cable.ico │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif └── 72389 binder stub │ ├── 72389 binder stub.sln │ └── 72389 binder stub │ ├── 72389 binder stub.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── 72389 Downloader ├── 72389 Downloader │ ├── 72389 Downloader.sln │ └── 72389 Downloader │ │ ├── 72389 Downloader.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Resources │ │ ├── Untitled-1.png │ │ └── Untitled-2.png │ │ └── shield.ico └── 72389 downloader stub │ ├── 72389 downloader stub.sln │ └── 72389 downloader stub │ ├── 72389 downloader stub.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── 72389 Email Bomber ├── 72389 Email Bomber.sln └── 72389 Email Bomber │ ├── 72389 Email Bomber.vbproj │ ├── Bomb.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── 72389 Email Bomber.vshost.exe.manifest │ ├── userinfo.Designer.vb │ ├── userinfo.resx │ └── userinfo.vb ├── 72389 FF Pass stealer ├── 72389 FF Pass stealer │ ├── 72389 FF Pass stealer.sln │ └── 72389 FF Pass stealer │ │ ├── 72389 FF Pass stealer.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── app.config │ │ ├── bin │ │ ├── Debug │ │ │ ├── 72389 FF Pass stealer.vshost.exe.config │ │ │ └── 72389 FF Pass stealer.vshost.exe.manifest │ │ └── Release │ │ │ └── 72389 FF Pass stealer.exe.config │ │ ├── firefox2005_icon_ico.ico │ │ └── obj │ │ └── Release │ │ └── 72389 FF Pass stealer.vbproj.FileListAbsolute.txt ├── 72389 FF Pass stub │ ├── 72389 FF Pass stub.sln │ └── 72389 FF Pass stub │ │ ├── 72389 FF Pass stub.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ └── app.manifest └── HWID │ ├── HWID.sln │ └── HWID │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── HWID.vbproj │ ├── Key.ico │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── 72389 command line gmailer ├── 72389 gmailer.sln └── 72389 gmailer │ ├── 72389 gmailer.vbproj │ ├── Module1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── bin │ └── Debug │ └── Emailme.vshost.exe.manifest ├── =8-D src ├── ETG.CPP ├── ETG.HPP ├── LDE32.OBJ ├── aplib.h ├── aplib.lib ├── depack.h ├── disasm.cpp ├── engine.cpp ├── main.cpp ├── main.ico ├── rsrcs.rc └── stub.cpp ├── A+ Binder ├── A+ Binder │ ├── A+ Binder.sln │ └── A+ Binder │ │ ├── A+ Binder.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Resources │ │ └── 1.png │ │ ├── bin │ │ └── Debug │ │ │ └── A+ Binder.vshost.exe.manifest │ │ ├── developer.ico │ │ └── obj │ │ └── Debug │ │ ├── A+ Binder.vbproj.FileListAbsolute.txt │ │ ├── A+ Binder.vbproj.GenerateResource.Cache │ │ └── WindowsApplication1.Form1.resources └── A+ Stub │ ├── A+ Stub.sln │ └── A+ Stub │ ├── A+ Stub.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── form1.Designer.vb │ ├── form1.resx │ └── form1.vb ├── AES Crypter ├── AES Crypter.sln └── AES Crypter │ ├── AES Crypter.vbproj │ ├── Bart.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ ├── Debug │ │ ├── AES Crypter.vshost.exe.manifest │ │ └── AES Crypter.xml │ └── Release │ │ ├── AES Crypter.vshost.exe.manifest │ │ └── AES Crypter.xml │ └── obj │ ├── Debug │ ├── AES Crypter.vbproj.FileListAbsolute.txt │ ├── AES Crypter.vbproj.GenerateResource.Cache │ ├── AES Crypter.xml │ ├── AES_Crypter.Form1.resources │ └── AES_Crypter.Resources.resources │ └── Release │ ├── AES Crypter.vbproj.FileListAbsolute.txt │ ├── AES Crypter.vbproj.GenerateResource.Cache │ └── AES Crypter.xml ├── Alarm Clock ├── Alarm Clock.sln ├── Alarm Clock │ ├── Alarm Clock.vbproj │ ├── Alarm.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── bin │ │ ├── Debug │ │ │ ├── Alarm Clock.vshost.exe.manifest │ │ │ └── Alarm Clock.xml │ │ └── Release │ │ │ ├── Alarm Clock.vshost.exe.manifest │ │ │ └── Alarm Clock.xml │ └── obj │ │ ├── Debug │ │ ├── Alarm Clock.vbproj.FileListAbsolute.txt │ │ ├── Alarm Clock.vbproj.GenerateResource.Cache │ │ ├── Alarm Clock.xml │ │ ├── Alarm_Clock.Form1.resources │ │ ├── Alarm_Clock.Resources.resources │ │ └── build.force │ │ └── Release │ │ ├── Alarm Clock.vbproj.FileListAbsolute.txt │ │ ├── Alarm Clock.vbproj.GenerateResource.Cache │ │ ├── Alarm Clock.xml │ │ ├── Alarm_Clock.Form1.resources │ │ ├── Alarm_Clock.Resources.resources │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Antis ├── Antis.sln ├── Antis │ ├── Antis.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── bin │ │ └── Debug │ │ │ ├── Antis.vshost.exe.manifest │ │ │ └── Antis.xml │ └── obj │ │ └── Debug │ │ ├── Antis.Form1.resources │ │ ├── Antis.Resources.resources │ │ ├── Antis.vbproj.FileListAbsolute.txt │ │ ├── Antis.xml │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── BIODOX Source-code └── BIODOX SC │ ├── CLIENT │ ├── ActiveX │ │ ├── AnimatedGifCtl.ctl │ │ └── AnimatedGifCtl.ctx │ ├── CGradient.cls │ ├── Form1.frm │ ├── Form1.frx │ ├── Form1.log │ ├── ISPanel.ctl │ ├── Language │ │ ├── danish.lng │ │ ├── deutchs.lng │ │ ├── english.lng │ │ ├── french.lng │ │ ├── italiano.lng │ │ ├── polish.lng │ │ ├── spanish.lng │ │ └── türkçe.lng │ ├── Leeme.url │ ├── NEWRES.RES │ ├── Project1.vbp │ ├── Project1.vbw │ ├── buton.ctl │ ├── bytes.RES │ ├── cFileIcon.cls │ ├── cResources.cls │ ├── clsRemoteControl.cls │ ├── deneme.RES │ ├── dildestegi.bas │ ├── frmAlert.frm │ ├── frmAlert.frx │ ├── frmeditor.frm │ ├── frmeditor.frx │ ├── frmfilemanager.frm │ ├── frmfilemanager.frx │ ├── frmfilemanager.log │ ├── frmiconhunter.frm │ ├── frmiconhunter.frx │ ├── frmiconhunter.log │ ├── frmmenu.frm │ ├── frmmenu.frx │ ├── frmminidos.frm │ ├── frmminidos.frx │ ├── frmsanalklavye.frm │ ├── frmsanalklavye.frx │ ├── frmsanalklavye.log │ ├── frmscreen.frm │ ├── frmscreen.frx │ ├── frmsimge.frm │ ├── frmsimge.frx │ ├── iconchanger.bas │ ├── kaynak.bas │ ├── mResource.bas │ ├── mdlCompression.bas │ ├── mdlcdlg.bas │ ├── mdltransfer.bas │ ├── rsrc.RES │ ├── script.bat │ ├── settings.ini │ └── ss.RES │ ├── Password Plugin │ ├── Leeme.url │ ├── Project1.RES │ ├── frm1.frm │ ├── pluginpassword.vbp │ └── pluginpassword.vbw │ └── SERVER │ ├── Leeme.url │ ├── frmMain.frm │ ├── frmMain.frx │ ├── frmscreen.frm │ ├── frmscreen.frx │ ├── mdlFileManager.bas │ ├── mdlFunction.bas │ ├── mdlProcess.bas │ ├── mdlProgram.bas │ ├── mdlRegistry.bas │ ├── mdlService.bas │ ├── mdlWindow.bas │ ├── mdlapiler.bas │ ├── mdlfunmanager.bas │ ├── mdlscreenshot.bas │ ├── mdlwebcam.bas │ ├── prjRATServer.PDM │ ├── prjRATServer.vbp │ ├── prjRATServer.vbw │ ├── res.RES │ └── soketmaster │ ├── CSocketMaster.cls │ ├── Socket.ctl │ ├── Socket.ctx │ ├── SocketMaster.exp │ ├── SocketMaster.lib │ ├── SocketMasterOCX.vbp │ ├── SocketMasterOCX.vbw │ └── modSocketMaster.bas ├── Backgroundworker and progressbar ├── WindowsApplication8.sln └── WindowsApplication8 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── WindowsApplication8.vbproj │ └── bin │ └── Debug │ └── WindowsApplication8.vshost.exe.manifest ├── Batch Virus Gen - Source only └── Batch Virus Gen - Tut - Icy Wind │ ├── Batch Virus Gen - Tut - Icy Wind.sln │ └── Batch Virus Gen - Tut - Icy Wind │ ├── Batch Virus Gen - Tut - Icy Wind.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── Bat.ico │ ├── bin │ ├── Debug │ │ └── Batch Virus Gen - Tut - Icy Wind.xml │ └── Release │ │ └── Batch Virus Gen - Tut - Icy Wind.xml │ └── obj │ ├── Debug │ ├── Batch Virus Gen - Tut - Icy Wind.vbproj.FileListAbsolute.txt │ ├── Batch Virus Gen - Tut - Icy Wind.vbproj.GenerateResource.Cache │ ├── Batch Virus Gen - Tut - Icy Wind.xml │ ├── Batch_Virus_Gen___Tut___Icy_Wind.Form1.resources │ └── Batch_Virus_Gen___Tut___Icy_Wind.Resources.resources │ └── Release │ ├── Batch Virus Gen - Tut - Icy Wind.vbproj.FileListAbsolute.txt │ ├── Batch Virus Gen - Tut - Icy Wind.vbproj.GenerateResource.Cache │ ├── Batch Virus Gen - Tut - Icy Wind.xml │ ├── Batch_Virus_Gen___Tut___Icy_Wind.Form1.resources │ └── Batch_Virus_Gen___Tut___Icy_Wind.Resources.resources ├── Binder Example ├── Binder Example Stub │ ├── Binder Example Stub.sln │ └── Binder Example Stub │ │ ├── Binder Example Stub.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings └── Binder Example │ ├── Binder Example.sln │ └── Binder Example │ ├── Binder Example.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Biohazard Crypter └── Biohazard Crypter │ ├── Crypter │ ├── CRijndael.cls │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── crypt.bas │ ├── crypter.vbp │ └── crypter.vbw │ └── Stub │ ├── CRijndael.cls │ ├── MSSCCPRJ.SCC │ ├── crypt.bas │ ├── inject.bas │ ├── modMain.bas │ ├── stub.vbp │ └── stub.vbw ├── BlazedUp Crypter ├── Backup │ ├── BlazedUp Crypter.sln │ └── BlazedUp Crypter │ │ ├── 1330398937_iron_man.ico │ │ ├── BlazedUp Crypter.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── IconInjector.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Stub.vb │ │ ├── Stub1.vb │ │ ├── Stub2.vb │ │ └── rw.vb ├── BlazedUp Crypter.sln ├── BlazedUp Crypter │ ├── 1330398937_iron_man.ico │ ├── BlazedUp Crypter.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── IconInjector.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Stub.vb │ ├── Stub1.vb │ ├── Stub2.vb │ ├── bin │ │ └── Debug │ │ │ ├── BlazedUp Crypter.vshost.exe.manifest │ │ │ ├── BlazedUp Crypter.xml │ │ │ └── BlazedUp Crypter.zip │ ├── obj │ │ └── Debug │ │ │ ├── BlazedUp Crypter.vbproj.FileListAbsolute.txt │ │ │ ├── BlazedUp Crypter.vbproj.GenerateResource.Cache │ │ │ ├── BlazedUp Crypter.xml │ │ │ ├── BlazedUp_Crypter.Form1.resources │ │ │ └── BlazedUp_Crypter.Resources.resources │ └── rw.vb ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Bomb Them Email Bomber ├── Email Bomber.sln └── Email Bomber │ ├── Bomb.ico │ ├── Email Bomber.idc │ ├── Email Bomber.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_142.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── Resources │ ├── Untitled-2.png │ └── nuclear-bomb.jpg ├── Builders 101 ├── 101 builder stub │ ├── 101 builder stub.sln │ └── stub │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── stub.vbproj └── 101 builder │ ├── 101 builder.sln │ └── 101 builder │ ├── 101 builder.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Butcher Exer ├── 1266848819198.jpeg ├── Client.vbp ├── Cliente │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ ├── Formularios │ │ ├── Form1.frm │ │ └── Form1.frx │ ├── Imágenes │ │ └── banner.gif │ ├── Módulos │ │ ├── ModuleRealign pe header.bas │ │ └── mEOF.bas │ └── Otros │ │ ├── Button.ctl │ │ ├── ctlPrg.ctl │ │ └── ctlPrg.ctx ├── NapokonBrdo.cls ├── Stub │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ ├── Módulos │ │ ├── Stb.bas │ │ └── antis.bas │ └── RunPE │ │ └── FUD2.cls ├── StubX.vbp ├── clsCETVORKA.cls ├── clsKAKORINA.cls ├── clsKURAC.cls ├── clsPIMPEK.cls ├── clsRODJO.cls ├── clsZNASONO.cls └── logo.jpg ├── Carb0n Crypter 1.3 ├── Client │ ├── Forms │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ ├── FrmAbout.frm │ │ ├── FrmAbout.frx │ │ ├── Options.frm │ │ └── Options.frx │ ├── Icons │ │ └── SOLiD.ico │ ├── Images │ │ └── Logo.JPG │ ├── MSSCCPRJ.SCC │ ├── Modules │ │ ├── Module1.bas │ │ ├── Module2.bas │ │ ├── Module3.bas │ │ └── Module4.bas │ ├── Project1.RES │ ├── Project1.vbp │ └── Resources │ │ └── EXE.RES └── Stub │ ├── Forms │ ├── Form1.frm │ └── Form1.frx │ ├── Icons │ ├── SOL.ico │ └── SOLiD.ico │ ├── MSSCCPRJ.SCC │ ├── Modules │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Module5.bas │ ├── Module6.bas │ ├── aa.bas │ └── ff.bas │ └── Stub.vbp ├── Chat Spammer ├── Chat Spammer.sln ├── Chat Spammer │ ├── Chat Spammer.idc │ ├── Chat Spammer.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── bin │ │ └── Debug │ │ │ └── Chat Spammer.vshost.exe.manifest │ └── chat.ico ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Check_Internet ├── Check_Internet.sln ├── Check_Internet │ ├── Check_Internet.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Module1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Resources │ │ ├── Delete.png │ │ └── Ok.png │ ├── bin │ │ └── Debug │ │ │ ├── Check_Internet.vshost.exe.manifest │ │ │ └── Check_Internet.xml │ ├── obj │ │ └── Debug │ │ │ ├── Check_Internet.Form1.resources │ │ │ ├── Check_Internet.Resources.resources │ │ │ ├── Check_Internet.vbproj.FileListAbsolute.txt │ │ │ ├── Check_Internet.vbproj.GenerateResource.Cache │ │ │ ├── Check_Internet.xml │ │ │ ├── GenerateResource.read.1.tlog │ │ │ └── GenerateResource.write.1.tlog │ └── wireless-connection-icon.ico ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Christmas Crypter ├── Class1.cls ├── EOF.bas ├── Form1.frm ├── Form1.frx ├── Injection.bas ├── MSSCCPRJ.SCC ├── Main_Splitter.bas ├── ModuleRealign pe header.bas ├── Other_Options2.bas ├── Project1.vbp ├── Project1.vbw ├── Splitter.bas ├── bild.jpg ├── frmstub.frm ├── mChangeOEP.bas ├── mod_PE.bas ├── mod_icon.bas ├── modclient.bas ├── modstub.bas ├── stub.vbp └── stub.vbw ├── CodingNation Crypter Source ├── CCrypto.cls ├── MSSCCPRJ.SCC ├── Module1.bas ├── Stub │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Stub.RES │ ├── Stub.csi │ ├── Stub.vbp │ ├── Stub.vbw │ ├── mMain.bas │ └── mPEL.bas ├── Test.cfg ├── VB47C3.tmp ├── frmMain.frm ├── frmMain.frx ├── frmMain.log ├── modRC4.bas ├── sam crypt.vbp ├── sam crypt.vbw ├── samcrypt.RES └── samcrypt1.RES ├── CodingNation Crypter └── CodingNation Crypter Source │ ├── CCrypto.cls │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Stub │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Stub.RES │ ├── Stub.csi │ ├── Stub.vbp │ ├── Stub.vbw │ ├── mMain.bas │ └── mPEL.bas │ ├── Test.cfg │ ├── VB47C3.tmp │ ├── frmMain.frm │ ├── frmMain.frx │ ├── modRC4.bas │ ├── sam crypt.vbp │ ├── sam crypt.vbw │ └── samcrypt.RES ├── Computer Information ├── Computer Information v4 Source.zip ├── Computer Information v4 Source │ ├── Computer Information v4.sln │ └── Computer Information v4 │ │ ├── Computer Information v4.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── Computer Information │ │ │ ├── Computer Information v4.exe.config │ │ │ ├── Computer Information v4.vshost.exe.config │ │ │ ├── Computer Information v4.vshost.exe.manifest │ │ │ └── Computer Information v4.xml │ │ ├── globe.ico │ │ └── obj │ │ └── Debug │ │ ├── Computer Information v4.vbproj.FileListAbsolute.txt │ │ ├── Computer Information v4.vbproj.GenerateResource.Cache │ │ ├── Computer Information v4.xml │ │ ├── Computer_Information_v4.Form1.resources │ │ └── Computer_Information_v4.Resources.resources ├── Computer_Information_Source.zip ├── Computer_Information__Source_v2.zip └── Computer_Information_v3_Source.zip ├── Crypter Moon ├── Backup │ ├── MyCrypter.sln │ ├── MyCrypter │ │ ├── 31.ico │ │ ├── 3des.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── MyCrypter.vbproj │ │ └── rc4.vb │ └── winini │ │ ├── 3des.vb │ │ ├── 4cr.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ ├── Settings1.Designer.vb │ │ └── app.manifest │ │ ├── Mymod.vb │ │ ├── ant.vb │ │ ├── rp.vb │ │ └── winini.vbproj ├── MyCrypter.sln ├── MyCrypter │ ├── 31.ico │ ├── 3des.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── MyCrypter.vbproj │ ├── Solar-System-Moon-3D-screensaver.jpg │ ├── bin │ │ └── Debug │ │ │ └── MoonCrypter.vshost.exe.manifest │ ├── obj │ │ └── Debug │ │ │ ├── MoonCrypter.Form1.resources │ │ │ ├── MoonCrypter.Resources.resources │ │ │ ├── MoonCrypter.xml │ │ │ ├── MyCrypter.vbproj.FileListAbsolute.txt │ │ │ └── MyCrypter.vbproj.GenerateResource.Cache │ └── rc4.vb ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── rlz │ ├── ico │ │ ├── 31.ico │ │ ├── access.ico │ │ ├── avi.ico │ │ ├── avi98.ico │ │ ├── bat.ico │ │ ├── blank.ico │ │ ├── bmp.ico │ │ ├── cd.ico │ │ ├── cmd.ico │ │ ├── contact.ico │ │ ├── dll.ico │ │ ├── dllxp.ico │ │ ├── doc2000.ico │ │ ├── doc2003.ico │ │ ├── dos.ico │ │ ├── emule.ico │ │ ├── excel.ico │ │ ├── file.ico │ │ ├── folder.ico │ │ ├── gif.ico │ │ ├── hd.ico │ │ ├── help.ico │ │ ├── html.ico │ │ ├── ie.ico │ │ ├── iexpress.ico │ │ ├── imageready.ico │ │ ├── inixp.ico │ │ ├── java.ico │ │ ├── jpg.ico │ │ ├── jpgxp.ico │ │ ├── mdb2000.ico │ │ ├── mdb2003.ico │ │ ├── mipc.ico │ │ ├── mp3.ico │ │ ├── msdos.ico │ │ ├── msn.ico │ │ ├── msn7.ico │ │ ├── msn8.ico │ │ ├── netmeeting.ico │ │ ├── network.ico │ │ ├── none.ico │ │ ├── notepadxp.ico │ │ ├── outlook.ico │ │ ├── pack.ico │ │ ├── paintxp.ico │ │ ├── pdf.ico │ │ ├── photoshop.ico │ │ ├── playboy.ico │ │ ├── plus.ico │ │ ├── pps.ico │ │ ├── pptxp.ico │ │ ├── psd.ico │ │ ├── quik.ico │ │ ├── rar.ico │ │ ├── rarxf.ico │ │ ├── rayo.ico │ │ ├── recicle.ico │ │ ├── script.ico │ │ ├── setup.ico │ │ ├── setupxp.ico │ │ ├── txt.ico │ │ ├── txtxp.ico │ │ ├── update.ico │ │ ├── vbs.ico │ │ ├── wav.ico │ │ ├── winamp.ico │ │ ├── wmp.ico │ │ ├── wmplayer.ico │ │ ├── word.ico │ │ └── xls2003.ico │ └── res │ │ ├── info.res │ │ └── res.ini └── winini │ ├── 3des.vb │ ├── 4cr.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ ├── Settings1.Designer.vb │ └── app.manifest │ ├── Mymod.vb │ ├── ant.vb │ ├── obj │ └── Debug │ │ ├── winini.Form1.resources │ │ ├── winini.Resources.resources │ │ ├── winini.vbproj.FileListAbsolute.txt │ │ ├── winini.vbproj.GenerateResource.Cache │ │ └── winini.xml │ ├── rp.vb │ └── winini.vbproj ├── Crypter very ├── juntador │ ├── CommandXP.ctl │ ├── CommandXP.ctx │ ├── Dibujo.bmp │ ├── Form1.frm │ ├── Form1.frx │ ├── Form2.frm │ ├── Form2.frx │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Module5.bas │ ├── Module6.bas │ ├── Proyecto1.RES │ ├── Proyecto1.vbp │ ├── Proyecto1.vbw │ └── mChangeIcon.bas ├── stub │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module2d.bas │ ├── Proyecto1.csi │ ├── Proyecto1.vbp │ ├── Proyecto1.vbw │ ├── mMain.bas │ └── mRunMemoryPE.bas ├── stub2 │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Proyecto1.csi │ ├── Proyecto1.vbp │ ├── Proyecto1.vbw │ ├── mMain.bas │ └── mRunMemoryPE.bas └── stub3 │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Proyecto1.csi │ ├── Proyecto1.vbp │ ├── Proyecto1.vbw │ ├── mMain.bas │ └── mRunMemoryPE.bas ├── Crypteur RunTime ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Hacktivisme.sln ├── Hacktivisme.vbproj ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ └── Stub.txt ├── bin │ └── Debug │ │ ├── Hacktivisme.vshost.exe.manifest │ │ └── Hacktivisme.xml └── obj │ └── x86 │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── Hacktivisme.Form1.resources │ ├── Hacktivisme.Resources.resources │ ├── Hacktivisme.vbproj.FileListAbsolute.txt │ └── Hacktivisme.xml ├── Cryptex1 (C#) ├── Cryptex1.sln ├── Cryptex1 │ ├── AboutBox1.cs │ ├── Class0.cs │ ├── Control0.cs │ ├── Control1.cs │ ├── Control10.cs │ ├── Control11.cs │ ├── Control12.cs │ ├── Control13.cs │ ├── Control14.cs │ ├── Control15.cs │ ├── Control16.cs │ ├── Control2.cs │ ├── Control3.cs │ ├── Control4.cs │ ├── Control5.cs │ ├── Control6.cs │ ├── Control7.cs │ ├── Control8.cs │ ├── Control9.cs │ ├── Cryptex1.csproj │ ├── Enum0.cs │ ├── Enum3.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Gclass0.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── AES.txt │ │ ├── AssLoadinv4.txt │ │ ├── Assemblyinf.txt │ │ ├── AssloadNew.txt │ │ ├── Batch.txt │ │ ├── Batch2.txt │ │ ├── BindSource.txt │ │ ├── Cloud.txt │ │ ├── Delay.txt │ │ ├── Dex.txt │ │ ├── Drop.txt │ │ ├── Enc.png │ │ ├── EncPic.txt │ │ ├── HIDEFILE.txt │ │ ├── ISDOTNET.txt │ │ ├── MAINSOURCE.txt │ │ ├── Mainpic.txt │ │ ├── NOTNET.txt │ │ ├── OtherPic.txt │ │ ├── Poly3DES.txt │ │ ├── PolyAes.txt │ │ ├── PolyBaby.txt │ │ ├── PolyDES.txt │ │ ├── PolyDex.txt │ │ ├── PolyRC2.txt │ │ ├── PolyRev.txt │ │ ├── PolyRijn.txt │ │ ├── PolyStairs.txt │ │ ├── PolySym.txt │ │ ├── Polycloud.txt │ │ ├── Prockill.txt │ │ ├── RC2.txt │ │ ├── RC4.txt │ │ ├── RSM.txt │ │ ├── Rijindael.txt │ │ ├── Runpepic.txt │ │ ├── SingleDL.txt │ │ ├── Source2.txt │ │ ├── Stairs.txt │ │ ├── Startup.txt │ │ ├── Symetric.txt │ │ ├── TripleDES.txt │ │ ├── Xor.txt │ │ ├── YES.txt │ │ ├── main.png │ │ ├── other.png │ │ └── runpe.png │ ├── bin │ │ └── Debug │ │ │ └── Cryptex1.vshost.exe.manifest │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── Cryptex1.Form1.resources │ │ ├── Cryptex1.csproj.FileListAbsolute.txt │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog │ │ └── Release │ │ ├── Cryptex1.Form1.resources │ │ ├── Cryptex1.csproj.FileListAbsolute.txt │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog └── Read me.txt ├── Cryptic3source-Crypter ├── Cryptic.dsp ├── Cryptic.dsw ├── Cryptic.opt ├── Cryptic.plg ├── Cryptic.rc ├── Cryptic3source-Crypter.rar ├── Stub │ ├── Release │ │ └── stub.res │ ├── Stub.dsp │ ├── Stub.dsw │ ├── Stub.opt │ ├── Stub.plg │ ├── main.cpp │ ├── resource.h │ └── stub.rc ├── XPThemes.manifest ├── cryptic.bmp ├── exe.ico ├── main.cpp ├── resource.h ├── skull.ico └── www.opensc.ws ├── Cyber Spammer ├── Cyber Spammer.sln └── Cyber Spammer │ ├── Cyber Spammer.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── 1.png │ ├── bin │ └── Debug │ │ └── Cyber Spammer.vshost.exe.manifest │ └── chat.ico ├── DW-Crypter └── DW-Crypter │ ├── Client.vbp │ ├── Client.vbw │ ├── Cliente │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ ├── Formularios │ │ ├── Form1.frm │ │ └── Form1.frx │ ├── Imágenes │ │ └── banner.gif │ ├── Módulos │ │ ├── ModuleRealign pe header.bas │ │ └── mEOF.bas │ └── Otros │ │ ├── Button.ctl │ │ ├── ctlPrg.ctl │ │ └── ctlPrg.ctx │ ├── Stub │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ ├── Módulos │ │ ├── Stb.bas │ │ └── antis.bas │ └── RunPE │ │ └── FUD2.cls │ ├── StubX.vbp │ └── StubX.vbw ├── Dark Downloader ├── DDStub │ ├── DDStub.sln │ └── Dark Downloader Stub │ │ ├── Dark Downloader Stub.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings └── DarkDownloader │ ├── DarkDownloader.sln │ └── DarkDownloader │ ├── DarkDownloader.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── OHMY Nitro Xtreme Lite Icon 38.ico │ └── Resources │ └── deviil.png ├── Deface Page Gen ├── Deface Page Gen.sln ├── Deface Page Gen │ ├── Deface Page Gen.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Resources │ │ ├── Web-page.ico │ │ └── webexport.png │ ├── bin │ │ └── Debug │ │ │ ├── Deface Page Gen.vshost.exe.manifest │ │ │ └── Deface Page Gen.xml │ └── obj │ │ ├── Debug │ │ ├── Deface Page Gen.vbproj.FileListAbsolute.txt │ │ ├── Deface Page Gen.vbproj.GenerateResource.Cache │ │ ├── Deface Page Gen.xml │ │ ├── Deface_Page_Gen.Form1.resources │ │ └── Deface_Page_Gen.Resources.resources │ │ └── Release │ │ ├── Deface Page Gen.vbproj.FileListAbsolute.txt │ │ ├── Deface Page Gen.vbproj.GenerateResource.Cache │ │ ├── Deface Page Gen.xml │ │ ├── Deface_Page_Gen.Form1.resources │ │ ├── Deface_Page_Gen.Form2.resources │ │ ├── Deface_Page_Gen.Resources.resources │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── DivineProtector ├── GUI │ └── GUI │ │ ├── Debug │ │ ├── GUI.exe.metagen │ │ └── GUI.pdb │ │ ├── GUI.sdf │ │ ├── GUI.sln │ │ ├── GUI.suo │ │ ├── GUI │ │ ├── AssemblyInfo.cpp │ │ ├── Debug │ │ │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.obj │ │ │ ├── AssemblyInfo.obj │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── GUI.Build.CppClean.log │ │ │ ├── GUI.Form1.resources │ │ │ ├── GUI.exe.intermediate.manifest │ │ │ ├── GUI.lastbuildstate │ │ │ ├── GUI.log │ │ │ ├── GUI.obj │ │ │ ├── GUI.pch │ │ │ ├── GUI.vcxproj.GenerateResource.Cache │ │ │ ├── GUI.write.1.tlog │ │ │ ├── RSAENH.DLL.bi │ │ │ ├── TZRES.DLL.bi │ │ │ ├── USG.obj │ │ │ ├── aes256.obj │ │ │ ├── app.res │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── metagen.read.1.tlog │ │ │ ├── metagen.write.1.tlog │ │ │ ├── mt.command.1.tlog │ │ │ ├── mt.read.1.tlog │ │ │ ├── mt.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ ├── rc.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ └── vc100.pdb │ │ ├── Form1.h │ │ ├── Form1.resX │ │ ├── GUI.cpp │ │ ├── GUI.vcxproj │ │ ├── GUI.vcxproj.filters │ │ ├── GUI.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── Release │ │ │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.obj │ │ │ ├── AssemblyInfo.obj │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── GUI.Build.CppClean.log │ │ │ ├── GUI.Form1.resources │ │ │ ├── GUI.exe.intermediate.manifest │ │ │ ├── GUI.lastbuildstate │ │ │ ├── GUI.log │ │ │ ├── GUI.obj │ │ │ ├── GUI.pch │ │ │ ├── GUI.vcxproj.GenerateResource.Cache │ │ │ ├── GUI.vcxprojResolveAssemblyReference.cache │ │ │ ├── GUI.write.1.tlog │ │ │ ├── RSAENH.DLL.bi │ │ │ ├── TZRES.DLL.bi │ │ │ ├── aes256.obj │ │ │ ├── app.res │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.1088-cvtres.read.1.tlog │ │ │ ├── link.1088-cvtres.write.1.tlog │ │ │ ├── link.1088.read.1.tlog │ │ │ ├── link.1088.write.1.tlog │ │ │ ├── link.40256-cvtres.read.1.tlog │ │ │ ├── link.40256-cvtres.write.1.tlog │ │ │ ├── link.40256.read.1.tlog │ │ │ ├── link.40256.write.1.tlog │ │ │ ├── link.41568-cvtres.read.1.tlog │ │ │ ├── link.41568-cvtres.write.1.tlog │ │ │ ├── link.41568.read.1.tlog │ │ │ ├── link.41568.write.1.tlog │ │ │ ├── link.41636-cvtres.read.1.tlog │ │ │ ├── link.41636-cvtres.write.1.tlog │ │ │ ├── link.41636.read.1.tlog │ │ │ ├── link.41636.write.1.tlog │ │ │ ├── link.41700-cvtres.read.1.tlog │ │ │ ├── link.41700-cvtres.write.1.tlog │ │ │ ├── link.41700.read.1.tlog │ │ │ ├── link.41700.write.1.tlog │ │ │ ├── link.41732-cvtres.read.1.tlog │ │ │ ├── link.41732-cvtres.write.1.tlog │ │ │ ├── link.41732.read.1.tlog │ │ │ ├── link.41732.write.1.tlog │ │ │ ├── link.42020-cvtres.read.1.tlog │ │ │ ├── link.42020-cvtres.write.1.tlog │ │ │ ├── link.42020.read.1.tlog │ │ │ ├── link.42020.write.1.tlog │ │ │ ├── link.42432-cvtres.read.1.tlog │ │ │ ├── link.42432-cvtres.write.1.tlog │ │ │ ├── link.42432.read.1.tlog │ │ │ ├── link.42432.write.1.tlog │ │ │ ├── link.42656-cvtres.read.1.tlog │ │ │ ├── link.42656-cvtres.write.1.tlog │ │ │ ├── link.42656.read.1.tlog │ │ │ ├── link.42656.write.1.tlog │ │ │ ├── link.42800-cvtres.read.1.tlog │ │ │ ├── link.42800-cvtres.write.1.tlog │ │ │ ├── link.42800.read.1.tlog │ │ │ ├── link.42800.write.1.tlog │ │ │ ├── link.44428-cvtres.read.1.tlog │ │ │ ├── link.44428-cvtres.write.1.tlog │ │ │ ├── link.44428.read.1.tlog │ │ │ ├── link.44428.write.1.tlog │ │ │ ├── link.44596-cvtres.read.1.tlog │ │ │ ├── link.44596-cvtres.write.1.tlog │ │ │ ├── link.44596.read.1.tlog │ │ │ ├── link.44596.write.1.tlog │ │ │ ├── link.4468-cvtres.read.1.tlog │ │ │ ├── link.4468-cvtres.write.1.tlog │ │ │ ├── link.4468.read.1.tlog │ │ │ ├── link.4468.write.1.tlog │ │ │ ├── link.44752-cvtres.read.1.tlog │ │ │ ├── link.44752-cvtres.write.1.tlog │ │ │ ├── link.44752.read.1.tlog │ │ │ ├── link.44752.write.1.tlog │ │ │ ├── link.47312-cvtres.read.1.tlog │ │ │ ├── link.47312-cvtres.write.1.tlog │ │ │ ├── link.47312.read.1.tlog │ │ │ ├── link.47312.write.1.tlog │ │ │ ├── link.49460-cvtres.read.1.tlog │ │ │ ├── link.49460-cvtres.write.1.tlog │ │ │ ├── link.49460.read.1.tlog │ │ │ ├── link.49460.write.1.tlog │ │ │ ├── link.49740-cvtres.read.1.tlog │ │ │ ├── link.49740-cvtres.write.1.tlog │ │ │ ├── link.49740.read.1.tlog │ │ │ ├── link.49740.write.1.tlog │ │ │ ├── link.50636-cvtres.read.1.tlog │ │ │ ├── link.50636-cvtres.write.1.tlog │ │ │ ├── link.50636.read.1.tlog │ │ │ ├── link.50636.write.1.tlog │ │ │ ├── link.51364-cvtres.read.1.tlog │ │ │ ├── link.51364-cvtres.write.1.tlog │ │ │ ├── link.51364.read.1.tlog │ │ │ ├── link.51364.write.1.tlog │ │ │ ├── link.51688-cvtres.read.1.tlog │ │ │ ├── link.51688-cvtres.write.1.tlog │ │ │ ├── link.51688.read.1.tlog │ │ │ ├── link.51688.write.1.tlog │ │ │ ├── link.52284-cvtres.read.1.tlog │ │ │ ├── link.52284-cvtres.write.1.tlog │ │ │ ├── link.52284.read.1.tlog │ │ │ ├── link.52284.write.1.tlog │ │ │ ├── link.52720-cvtres.read.1.tlog │ │ │ ├── link.52720-cvtres.write.1.tlog │ │ │ ├── link.52720.read.1.tlog │ │ │ ├── link.52720.write.1.tlog │ │ │ ├── link.53096-cvtres.read.1.tlog │ │ │ ├── link.53096-cvtres.write.1.tlog │ │ │ ├── link.53096.read.1.tlog │ │ │ ├── link.53096.write.1.tlog │ │ │ ├── link.5524-cvtres.read.1.tlog │ │ │ ├── link.5524-cvtres.write.1.tlog │ │ │ ├── link.5524.read.1.tlog │ │ │ ├── link.5524.write.1.tlog │ │ │ ├── link.5808-cvtres.read.1.tlog │ │ │ ├── link.5808-cvtres.write.1.tlog │ │ │ ├── link.5808.read.1.tlog │ │ │ ├── link.5808.write.1.tlog │ │ │ ├── link.5888-cvtres.read.1.tlog │ │ │ ├── link.5888-cvtres.write.1.tlog │ │ │ ├── link.5888.read.1.tlog │ │ │ ├── link.5888.write.1.tlog │ │ │ ├── link.5964-cvtres.read.1.tlog │ │ │ ├── link.5964-cvtres.write.1.tlog │ │ │ ├── link.5964.read.1.tlog │ │ │ ├── link.5964.write.1.tlog │ │ │ ├── link.6248-cvtres.read.1.tlog │ │ │ ├── link.6248-cvtres.write.1.tlog │ │ │ ├── link.6248.read.1.tlog │ │ │ ├── link.6248.write.1.tlog │ │ │ ├── link.6292-cvtres.read.1.tlog │ │ │ ├── link.6292-cvtres.write.1.tlog │ │ │ ├── link.6292.read.1.tlog │ │ │ ├── link.6292.write.1.tlog │ │ │ ├── link.6336-cvtres.read.1.tlog │ │ │ ├── link.6336-cvtres.write.1.tlog │ │ │ ├── link.6336.read.1.tlog │ │ │ ├── link.6336.write.1.tlog │ │ │ ├── link.6448-cvtres.read.1.tlog │ │ │ ├── link.6448-cvtres.write.1.tlog │ │ │ ├── link.6448.read.1.tlog │ │ │ ├── link.6448.write.1.tlog │ │ │ ├── link.6892-cvtres.read.1.tlog │ │ │ ├── link.6892-cvtres.write.1.tlog │ │ │ ├── link.6892.read.1.tlog │ │ │ ├── link.6892.write.1.tlog │ │ │ ├── link.6912-cvtres.read.1.tlog │ │ │ ├── link.6912-cvtres.write.1.tlog │ │ │ ├── link.6912.read.1.tlog │ │ │ ├── link.6912.write.1.tlog │ │ │ ├── link.6928-cvtres.read.1.tlog │ │ │ ├── link.6928-cvtres.write.1.tlog │ │ │ ├── link.6928.read.1.tlog │ │ │ ├── link.6928.write.1.tlog │ │ │ ├── link.6996-cvtres.read.1.tlog │ │ │ ├── link.6996-cvtres.write.1.tlog │ │ │ ├── link.6996.read.1.tlog │ │ │ ├── link.6996.write.1.tlog │ │ │ ├── link.7608-cvtres.read.1.tlog │ │ │ ├── link.7608-cvtres.write.1.tlog │ │ │ ├── link.7608.read.1.tlog │ │ │ ├── link.7608.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── metagen.read.1.tlog │ │ │ ├── metagen.write.1.tlog │ │ │ ├── mt.command.1.tlog │ │ │ ├── mt.read.1.tlog │ │ │ ├── mt.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ ├── rc.write.1.tlog │ │ │ ├── stdafx.obj │ │ │ └── vc100.pdb │ │ ├── USG.cpp │ │ ├── USG.h │ │ ├── USG.resx │ │ ├── aes256.cpp │ │ ├── aes256.h │ │ ├── app.ico │ │ ├── app.rc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ └── Release │ │ ├── GUI.exe.metagen │ │ ├── GUI.pdb │ │ └── Iconos.zip └── stub.cpp ├── Dr.True Crypter ├── Class1.cls ├── Form1.frm ├── Form1.frx ├── Injection.bas ├── MSSCCPRJ.SCC ├── Main_Splitter.bas ├── ModuleRealign pe header.bas ├── Project1.RES ├── Project1.vbp ├── Project1.vbw ├── drtrucrypt.gif ├── frmstub.frm ├── mChangeOEP.bas ├── mod_icon.bas ├── stub.vbp └── stub.vbw ├── Easy Screen Capture ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── ss.sln └── ss │ ├── ApplicationEvents.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── Resources │ └── darkstone.jpg │ ├── bin │ └── Debug │ │ ├── Easy Screen Capture.vshost.exe.manifest │ │ ├── Easy Screen Capture.xml │ │ └── ss.vshost.exe.manifest │ ├── hunter.ico │ ├── obj │ └── Debug │ │ ├── Easy Screen Capture.xml │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ss.Form1.resources │ │ ├── ss.Resources.resources │ │ ├── ss.vbproj.FileListAbsolute.txt │ │ └── ss.vbproj.GenerateResource.Cache │ └── ss.vbproj ├── Email Sending ├── Email Sending.sln └── Email Sending │ ├── Email Sending.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── bin │ ├── Debug │ │ ├── Email Sending.vshost.exe.manifest │ │ └── Email Sending.xml │ └── Release │ │ └── Email Sending.xml │ └── obj │ ├── Debug │ ├── Email Sending.vbproj.FileListAbsolute.txt │ ├── Email Sending.vbproj.GenerateResource.Cache │ ├── Email Sending.xml │ ├── Email_Sending.Form1.resources │ └── Email_Sending.Resources.resources │ └── Release │ ├── Email Sending.vbproj.FileListAbsolute.txt │ ├── Email Sending.vbproj.GenerateResource.Cache │ ├── Email Sending.xml │ ├── Email_Sending.Form1.resources │ └── Email_Sending.Resources.resources ├── Email smoker ├── Email smoker.sln ├── Email smoker │ ├── 22.ico │ ├── Email smoker.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Resources │ │ ├── Exit1.png │ │ ├── Exit2.png │ │ ├── From.png │ │ ├── Pass.png │ │ ├── Sent.png │ │ ├── Start1.png │ │ ├── Stop1.png │ │ ├── Stop2.png │ │ ├── Title.png │ │ ├── Victim.png │ │ ├── smoke.png │ │ ├── start2.png │ │ └── text.png │ ├── bin │ │ └── Debug │ │ │ ├── Email Smoker.vshost.exe.manifest │ │ │ └── Email Smoker.xml │ └── obj │ │ └── Debug │ │ ├── Email Smoker.xml │ │ ├── Email smoker.vbproj.FileListAbsolute.txt │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ └── WindowsApplication1.Resources.resources ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Enable disable XP firewall ├── Enable disable firewall.sln └── Enable disable firewall │ ├── Enable disable firewall.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── ED Firewall.vshost.exe.manifest │ │ ├── ED Firewall.xml │ │ └── Enable disable firewall.vshost.exe.manifest │ └── obj │ └── Debug │ ├── ED Firewall.xml │ ├── Enable disable firewall.vbproj.FileListAbsolute.txt │ ├── Enable disable firewall.vbproj.GenerateResource.Cache │ ├── Enable_disable_firewall.Form1.resources │ └── Enable_disable_firewall.Resources.resources ├── Encrypt a text File with RC4 ├── Encrypt a text File with RC4.sln └── Encrypt a text File with RC4 │ ├── Encrypt a text File with RC4.idc │ ├── Encrypt a text File with RC4.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── text-file.ico ├── Error Creator ├── Error Creator │ ├── Simple Builder.sln │ ├── Simple Builder │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ └── errico1.png │ │ ├── Simple Builder.vbproj │ │ └── interdit.ico │ └── VisualStudio.postbuild └── simple stub │ ├── simple stub.sln │ └── simple stub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── simple stub.vbproj ├── Evil Crypter v1 └── Crypter v1 │ ├── Crypter │ ├── Class1.cls │ ├── Evil.vbw │ ├── Indetectables crypter.vbw │ ├── Indetectables.frx │ ├── Indetectables.vbw │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Project1.vbp │ ├── Project1.vbw │ ├── evil.frm │ └── evil.frx │ └── Stub │ ├── Class1.cls │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Project1.vbp │ ├── Project1.vbw │ └── RATATAT.vbw ├── FTP Folder Watch ├── start stop device.sln └── start stop device │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── Alert.jpg │ └── top.jpg │ ├── Search2.ico │ ├── start stop device.idc │ └── start stop device.vbproj ├── FTP Revenge ├── WindowsApplication7.sln └── WindowsApplication7 │ ├── Foobar.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── WindowsApplication7.vbproj ├── Fake Error ├── Screen shot.PNG └── Source Code │ ├── Builder │ ├── Builder.sln │ ├── Builder.vbproj │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── frmMainz.Designer.vb │ ├── frmMainz.resx │ └── frmMainz.vb │ └── Stub │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Stub.sln │ ├── Stub.vbproj │ ├── frmMainz.Designer.vb │ ├── frmMainz.resx │ └── frmMainz.vb ├── FileCloner ├── FileCloner.vbproj ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings └── obj │ └── Debug │ ├── FileCloner.Form1.resources │ ├── FileCloner.Resources.resources │ ├── FileCloner.vbproj.FileListAbsolute.txt │ ├── FileCloner.vbproj.GenerateResource.Cache │ └── FileCloner.xml ├── Filler up 2.5 ├── testmail.sln └── testmail │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_143.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── header_bg.jpg │ └── testmail.vbproj ├── FireCrypter ├── Crypter │ ├── CRijndael.cls │ ├── Form1.frm │ ├── Form1.frx │ ├── IconChanger.bas │ ├── PERebuild.bas │ ├── Projekt1.vbp │ ├── Projekt1.vbw │ └── SHA.bas └── Stub │ ├── CRijndael.cls │ ├── Main.bas │ ├── PE.bas │ ├── SHA.bas │ ├── stub.vbp │ └── stub.vbw ├── Flyby Crypter 2 ├── Crypter │ ├── AntiTrDropper.bas │ ├── Crypter.RES │ ├── Form1.frm │ ├── Form1.frx │ ├── Form1.log │ ├── GetEofData.bas │ ├── MSSCCPRJ.SCC │ ├── Projekt1.vbp │ ├── Projekt1.vbw │ ├── Rc4.bas │ ├── VBFF5.tmp │ ├── chameleonButton.ctl │ └── chameleonButton.ctx └── Stub │ ├── Anti.bas │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Projekt1.vbp │ ├── Projekt1.vbw │ ├── Rc4.bas │ ├── Stub.pdb │ ├── USELESSFUNC.bas │ ├── mContext.bas │ ├── mProcess.bas │ ├── mRun.bas │ └── mRunPE.bas ├── FuKrypt_4 ├── Client │ ├── DOCTORKANE-PC.config │ ├── Data │ │ ├── Codejock.Controls.v12.1.1.ocx │ │ ├── classFileDownload.dll │ │ ├── mscomctl.oca │ │ └── mscomctl.ocx │ ├── Formen │ │ ├── frmLogin.frm │ │ ├── frmLogin.frx │ │ ├── frmLogin.log │ │ ├── frmMain.frm │ │ ├── frmMain.frx │ │ └── frmMain.log │ ├── FuKrypt4_Client.vbp │ ├── FuKrypt4_Client.vbw │ ├── Icons │ │ ├── abort.gif │ │ ├── acceppt.gif │ │ ├── doc.gif │ │ ├── floppy.gif │ │ ├── folder.gif │ │ ├── image.gif │ │ ├── info.gif │ │ ├── key.gif │ │ ├── lock.gif │ │ ├── main.ico │ │ ├── options.gif │ │ ├── quest.gif │ │ ├── refresh.gif │ │ ├── television.gif │ │ └── user.gif │ ├── Klassen │ │ ├── clsBlowfish.cls │ │ ├── clsDES.cls │ │ ├── clsMD5.cls │ │ ├── clsRijndael.cls │ │ ├── clsTEA.cls │ │ └── mIconChanger.bas │ ├── Module │ │ ├── mAddSection.bas │ │ ├── mCreateKey.bas │ │ ├── mEOF.bas │ │ ├── mKrimsKrams.bas │ │ ├── mMain.bas │ │ ├── mOpenUrl.bas │ │ ├── mRegFile.bas │ │ └── mXOR.bas │ └── Ressourcen │ │ └── RRR.RES ├── Ladegerät │ ├── BmrhcSKwQ.bas │ ├── IJWFBVnZ.cls │ ├── K1kJpJaG.vbp │ ├── K1kJpJaG.vbw │ ├── clsDES.cls │ ├── clsRijndael.cls │ ├── clsTEA.cls │ ├── g24tz5tzt5.bas │ └── h2947th.bas └── Updater │ ├── Data │ ├── Codejock.Controls.v12.1.1.ocx │ └── classFileDownload.dll │ ├── Formen │ ├── frmMain.frm │ └── frmMain.frx │ ├── FuKrypt4_Updater.vbp │ ├── FuKrypt4_Updater.vbw │ ├── Icons │ └── mainupdate.ico │ ├── Klassen │ ├── cldBlowfish.cls │ └── clsGost.cls │ ├── Module │ ├── mMelt.bas │ └── mOpenUrl.bas │ └── Update_Notes.txt ├── GD Pool Assistant ├── GD Pool Assistant.sln └── GD Pool Assistant │ ├── Billiards.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── GD Pool Assistant.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── logo.png │ ├── app.config │ ├── bin │ └── Debug │ │ ├── GD Pool Assistant.exe.config │ │ ├── GD Pool Assistant.vshost.exe.config │ │ ├── GD Pool Assistant.vshost.exe.manifest │ │ └── GD Pool Assistant.xml │ └── obj │ └── Debug │ ├── GD Pool Assistant.vbproj.FileListAbsolute.txt │ ├── GD Pool Assistant.vbproj.GenerateResource.Cache │ ├── GD Pool Assistant.xml │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Form2.resources │ └── WindowsApplication1.Resources.resources ├── GMail ├── Backup │ ├── FormGmail.Designer.vb │ ├── FormGmail.resx │ ├── FormGmail.vb │ ├── GMail.sln │ ├── GMail.vbproj │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings ├── FormGmail.Designer.vb ├── FormGmail.resx ├── FormGmail.vb ├── GMail.jpg ├── GMail.sln ├── GMail.vbproj ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── bin │ └── Debug │ │ ├── GMail.vshost.exe.manifest │ │ └── GMail.xml └── obj │ └── Debug │ ├── GMail.FormGMail.resources │ ├── GMail.Resources.resources │ ├── GMail.vbproj.FileListAbsolute.txt │ ├── GMail.vbproj.GenerateResource.Cache │ ├── GMail.xml │ ├── GenerateResource.read.1.tlog │ └── GenerateResource.write.1.tlog ├── GioCrypter ├── EOF_Functions.bas ├── GioCrypter.vbp ├── GioCrypter.vbw ├── GioCrypter1.exe.manifest ├── IconChanger.bas ├── IconPE.bas ├── MSSCCPRJ.SCC ├── Source │ ├── MSSCCPRJ.SCC │ ├── Project1.vbp │ ├── Project1.vbw │ ├── Stub.csi │ ├── cPEL.cls │ ├── mMain.bas │ ├── mPEL.bas │ └── modCrypt.bas ├── Untitled-2.ico ├── [FUD] Crypter Binder Keylogger Trojen.url ├── [FUD].txt ├── frmMain.frm ├── frmMain.frx ├── gio.JPG ├── mPE_Realign.bas └── modCrypt.bas ├── Google Engine v1 ├── Google Engine v1.sln └── Google Engine v1 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Google Engine v1.vbproj │ ├── Google.ico │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── Google Engine v1.xml │ └── obj │ └── Debug │ ├── Google Engine v1.vbproj.FileListAbsolute.txt │ ├── Google Engine v1.vbproj.GenerateResource.Cache │ ├── Google Engine v1.xml │ ├── Google_Engine_v1.Form1.resources │ └── Google_Engine_v1.Resources.resources ├── HTTP up and down ├── HTTP up and down.sln └── HTTP up and down │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── HTTP up and down.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── HTTP up and down.vshost.exe.manifest │ │ └── HTTP up and down.xml │ └── obj │ └── Debug │ ├── HTTP up and down.vbproj.FileListAbsolute.txt │ ├── HTTP up and down.vbproj.GenerateResource.Cache │ ├── HTTP up and down.xml │ ├── HTTP_up_and_down.Form1.resources │ └── HTTP_up_and_down.Resources.resources ├── HackHound Crypter V.3 ├── Class1.cls ├── Form1.frm ├── Form1.frx ├── Formhh1.frm ├── Formhh1.frx ├── MSSCCPRJ.SCC ├── Module2.bas ├── Module3.bas ├── Module4.bas ├── Module5.bas ├── Module6.bas ├── ModuleRealign pe header.bas ├── Project1.vbp ├── Project1.vbw ├── hackhound.jpg ├── mChangeOEP.bas ├── mod_icon.bas ├── modclient.bas ├── modstub.bas ├── rancid.ico ├── stub.vbp └── stub.vbw ├── HackHound Crypter V.4 ├── Class1.cls ├── Form1.frm ├── Form1.frx ├── Form1.log ├── Formhh1.frm ├── Formhh1.frx ├── MSSCCPRJ.SCC ├── Module10.bas ├── Module2.bas ├── Module3.bas ├── Module4.bas ├── Module5.bas ├── Module6.bas ├── Module7.bas ├── Module9.bas ├── ModuleRealign pe header.bas ├── Project1.RES ├── Project1.vbp ├── Project1.vbw ├── hackhound.jpg ├── mChangeOEP.bas ├── modCryptTexlt.bas ├── modCryptText.bas ├── mod_icon.bas ├── modclient.bas ├── modstub.bas ├── rancid.ico ├── zutz.vbp └── zutz.vbw ├── Hash Cracker ├── Hash Cracker.sln └── Hash Cracker │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Hash Cracker.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── Hash Cracker.xml │ └── obj │ └── Debug │ ├── Hash Cracker.vbproj.FileListAbsolute.txt │ ├── Hash Cracker.vbproj.GenerateResource.Cache │ ├── Hash Cracker.xml │ ├── Hash_Cracker.Form1.resources │ └── Hash_Cracker.Resources.resources ├── Hotmail Email Bomber ├── Hotmail Email Bomber.sln └── Hotmail Email Bomber │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Hotmail Email Bomber.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── Hotmail Email Bomber.vshost.exe.manifest │ │ └── Hotmail Email Bomber.xml │ ├── email.ico │ └── obj │ └── Debug │ ├── Hotmail Email Bomber.vbproj.FileListAbsolute.txt │ ├── Hotmail Email Bomber.vbproj.GenerateResource.Cache │ ├── Hotmail Email Bomber.xml │ ├── Hotmail_Email_Bomber.Form1.resources │ └── Hotmail_Email_Bomber.Resources.resources ├── Icon Changer + Preview ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── IconInjector.Designer.vb ├── IconInjector.resx ├── IconInjector.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── bin │ └── Debug │ │ ├── IconChanger_Preview.vshost.exe.manifest │ │ ├── IconChanger_Preview.xml │ │ ├── tutoriel-fr_IconChanger.vshost.exe.manifest │ │ └── tutoriel-fr_IconChanger.xml ├── obj │ └── x86 │ │ └── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── IconChanger_Preview.xml │ │ ├── tutoriel-fr_IconChanger.vbproj.FileListAbsolute.txt │ │ ├── tutoriel_fr_IconChanger.Form1.resources │ │ ├── tutoriel_fr_IconChanger.IconInjector.resources │ │ └── tutoriel_fr_IconChanger.Resources.resources ├── tutoriel-fr_IconChanger.sln ├── tutoriel-fr_IconChanger.vbproj ├── win.ico └── winfolder.ico ├── Icon Changer ├── Bart.ico ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Form2.Designer.vb ├── Form2.resx ├── Form2.vb ├── Icon Changer.vbproj ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── DataSources │ │ ├── Form2.datasource │ │ ├── Icon_Changer.My.MySettings.datasource │ │ └── fLaSh.Dissembler.VersionResource.datasource │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ ├── Djack │ ├── GTA │ ├── Joystick │ ├── ball │ ├── court │ ├── dissembler LIB │ ├── earth │ ├── eye │ ├── head │ ├── hearts │ ├── inano │ ├── ishuffle │ ├── jack │ ├── lamborghini │ ├── macblack │ ├── macwhite │ ├── nbalogo │ ├── pumpkin │ ├── rose │ ├── saturn │ ├── scream │ ├── spiderman │ ├── sun │ ├── superman │ └── terrorist └── bin │ └── Debug │ └── Icon Changer.vshost.exe.manifest ├── Incrypter Private Source ├── Crypter │ ├── Class1.cls │ ├── Module1.bas │ ├── Module2.bas │ ├── Projekt1.vbp │ ├── Projekt1.vbw │ ├── frmMain.frm │ ├── frmMain.frx │ ├── frmMain.log │ ├── mClone.bas │ ├── mEOF.bas │ ├── mEncryption.bas │ ├── mEntrypoint.bas │ ├── mExtractIcon.bas │ ├── mFixChecksum.bas │ ├── mIcon.bas │ ├── mRealignPE.bas │ ├── mSection.bas │ └── sad.bas ├── Neue Unique stubbb │ ├── Class1.cls │ ├── Class1.cls.bk │ ├── Class2.cls │ ├── Class2.cls.bk │ ├── fyrfqweue.bas │ ├── hbthsygwf.bas │ ├── kldasjfha34kasdmcn____vkdfjs.vbp │ ├── kldasjfha34kasdmcn____vkdfjs.vbp.bk │ ├── kldasjfha34kasdmcn____vkdfjs.vbw │ ├── mHauptBestandTeil.bas │ ├── mHauptBestandTeil.bas.bk │ ├── mSandI.bas │ ├── mSandI.bas.bk │ ├── obecijqcc.bas │ └── qdgeklsee.bas └── OCX │ ├── COMDLG32.OCX │ └── Codejock.Controls.v12.1.0.ocx ├── Indetectables Crypter ├── Class1.cls ├── Client.vbp ├── Client.vbw ├── Cliente │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ ├── Formularios │ │ ├── Form2.frm │ │ ├── Form2.frx │ │ ├── frmMain.frm │ │ └── frmMain.frx │ ├── Imágenes │ │ ├── banner.gif │ │ ├── co.bmp │ │ └── mx.bmp │ ├── Módulos │ │ ├── ModuleRealign pe header.bas │ │ ├── iSpread.bas │ │ ├── mEOF.bas │ │ └── mPE_Realign.bas │ └── Otros │ │ └── Button.ctl ├── Compilado │ └── Stub.dll ├── FUD2.cls ├── Stub │ ├── Cls │ │ ├── RC4.cls │ │ ├── XOR.cls │ │ ├── clsDES.cls │ │ ├── clsGost.cls │ │ ├── clsRijndael.cls │ │ └── clsTEA.cls │ └── Módulos │ │ ├── Antis.bas │ │ ├── Spread.bas │ │ └── StubX.bas ├── StubX.vbp └── StubX.vbw ├── Indetectables Packer Crypter └── Indetectables Packer v1.0 │ ├── Client.vbp │ ├── Client.vbw │ ├── Cliente │ ├── Cls │ │ ├── RC4.cls │ │ └── XOR.cls │ ├── Imágenes │ │ ├── aboutmode.gif │ │ ├── banner.gif │ │ ├── cryptmode.gif │ │ ├── downmode.gif │ │ ├── downmode.png │ │ └── joinmode.gif │ ├── Módulos │ │ └── mEOF.bas │ ├── Otros │ │ └── Button.ctl │ └── formularios │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ └── frmPass.frm │ ├── Stub Crypter │ ├── Cls │ │ ├── RC4.cls │ │ ├── RunPE.cls │ │ └── XOR.cls │ ├── Módulos │ │ ├── StubX.bas │ │ └── antis.bas │ ├── StubCrypter.vbp │ └── StubCrypter.vbw │ ├── Stub Downloader │ ├── Stub.frm │ ├── StubDownloader.vbp │ └── StubDownloader.vbw │ └── Stub Joiner │ ├── Stub.bas │ ├── StubJoiner.vbp │ └── StubJoiner.vbw ├── Indetectables crypterv1.2b ├── Class1.cls ├── Indetectables crypter.vbp ├── Indetectables crypter.vbw ├── Indetectables.frm ├── Indetectables.frx ├── Indetectables.vbw ├── MSSCCPRJ.SCC ├── Module1.bas └── STUB │ ├── Class1.cls │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── RATATAT.VBP │ └── RATATAT.vbw ├── Injection ├── File Injection │ ├── File Injection.sln │ ├── File Injection │ │ ├── File Injection.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ ├── Settings.settings │ │ │ └── app.manifest │ │ ├── My Resources │ │ │ ├── Button1.png │ │ │ ├── Button2.png │ │ │ ├── Sun.ico │ │ │ └── SuperNova.png │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── SuperNova.vshost.exe.manifest │ │ │ │ └── SuperNova.xml │ │ │ └── Release │ │ │ │ ├── SuperNova.vshost.exe.manifest │ │ │ │ └── SuperNova.xml │ │ └── obj │ │ │ ├── Debug │ │ │ ├── File Injection.vbproj.FileListAbsolute.txt │ │ │ ├── File Injection.vbproj.GenerateResource.Cache │ │ │ ├── File_Injection.Form1.resources │ │ │ ├── File_Injection.Resources.resources │ │ │ └── SuperNova.xml │ │ │ └── Release │ │ │ ├── File Injection.vbproj.FileListAbsolute.txt │ │ │ ├── File Injection.vbproj.GenerateResource.Cache │ │ │ ├── File_Injection.Form1.resources │ │ │ ├── File_Injection.Resources.resources │ │ │ ├── GenerateResource.read.1.tlog │ │ │ ├── GenerateResource.write.1.tlog │ │ │ └── SuperNova.xml │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif └── Stub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── bin │ ├── Debug │ │ └── stub.vshost.exe.manifest │ └── Release │ │ └── stub.xml │ ├── obj │ └── Release │ │ ├── stub.Form1.resources │ │ ├── stub.Resources.resources │ │ ├── stub.vbproj.FileListAbsolute.txt │ │ ├── stub.vbproj.GenerateResource.Cache │ │ └── stub.xml │ ├── stub.sln │ └── stub.vbproj ├── Insanity Crypter v1.9.6 Source Code ├── sourc ee (1).sln └── sourc ee │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── source.txt │ ├── bin │ ├── Debug │ │ ├── CodeDom Crypter.vshost.exe.manifest │ │ ├── CodeDom Crypter.xml │ │ ├── WindowsApplication1.vshost.exe.manifest │ │ └── WindowsApplication1.xml │ └── Release │ │ └── CodeDom Crypter.xml │ ├── iCompiler.vb │ ├── obj │ └── x86 │ │ ├── Debug │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.vbproj.GenerateResource.Cache │ │ ├── CodeDom Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.Form2.resources │ │ ├── WindowsApplication1.Resources.resources │ │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ │ └── WindowsApplication1.xml │ │ └── Release │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ └── WindowsApplication1.Resources.resources │ ├── so00urcece (1).sln │ └── so00urcece.vbproj ├── Keylogger Baisc ├── Keylogger builder │ ├── Keylogger builder.sln │ └── Keylogger builder │ │ ├── Activity-Monitor.ico │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── Form2.Designer.vb │ │ ├── Form2.resx │ │ ├── Form2.vb │ │ ├── Keylogger builder.vbproj │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Keylogger builder.vshost.exe.manifest │ │ │ └── Keylogger builder.xml │ │ └── obj │ │ ├── Debug │ │ ├── Keylogger builder.vbproj.FileListAbsolute.txt │ │ ├── Keylogger builder.vbproj.GenerateResource.Cache │ │ ├── Keylogger builder.xml │ │ ├── Keylogger_builder.Form1.resources │ │ ├── Keylogger_builder.Form2.resources │ │ └── Keylogger_builder.Resources.resources │ │ └── Release │ │ ├── Keylogger builder.vbproj.FileListAbsolute.txt │ │ ├── Keylogger builder.vbproj.GenerateResource.Cache │ │ ├── Keylogger builder.xml │ │ ├── Keylogger_builder.Form1.resources │ │ ├── Keylogger_builder.Form2.resources │ │ └── Keylogger_builder.Resources.resources └── My Keylogger │ ├── My Keylogger.sln │ └── My Keylogger │ ├── Burn.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Keylogger.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Swords.ico │ ├── bin │ └── Debug │ │ ├── My Keylogger.vshost.exe.manifest │ │ ├── My Keylogger.xml │ │ ├── WindowsApplication1.vshost.exe.manifest │ │ ├── WindowsApplication1.xml │ │ └── steam.vshost.exe.manifest │ ├── lock.ico │ └── obj │ ├── Debug │ ├── My Keylogger.vbproj.FileListAbsolute.txt │ ├── My Keylogger.vbproj.GenerateResource.Cache │ ├── My Keylogger.xml │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ ├── WindowsApplication1.vbproj.GenerateResource.Cache │ └── WindowsApplication1.xml │ └── Release │ ├── My Keylogger.vbproj.FileListAbsolute.txt │ ├── My Keylogger.vbproj.GenerateResource.Cache │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ └── steam.xml ├── Kryptos Source ├── KryptosPublicVer │ ├── KryptosPublicVer.sln │ └── KryptosPublicVer │ │ ├── 3DES.vb │ │ ├── AES.vb │ │ ├── Binder.Designer.vb │ │ ├── Binder.resx │ │ ├── Binder.vb │ │ ├── CustomXOR.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── IconInject.vb │ │ ├── KryptosPublicVer.vbproj │ │ ├── MainWindow.Designer.vb │ │ ├── MainWindow.resx │ │ ├── MainWindow.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── MyRandom.vb │ │ ├── PStaris.vb │ │ ├── RC4.vb │ │ ├── Secure.ico │ │ ├── StarChased.vb │ │ ├── Theme.vb │ │ ├── Theme2.vb │ │ ├── Write.vb │ │ ├── app.config │ │ ├── bin │ │ ├── Debug │ │ │ ├── KryptosPublicVer.exe.config │ │ │ ├── KryptosPublicVer.vshost.exe.config │ │ │ ├── KryptosPublicVer.vshost.exe.manifest │ │ │ └── KryptosPublicVer.xml │ │ └── Release │ │ │ ├── KryptosPublicVer.exe.config │ │ │ └── KryptosPublicVer.xml │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── KryptosPublicVer.Binder.resources │ │ ├── KryptosPublicVer.Form1.resources │ │ ├── KryptosPublicVer.MainWindow.resources │ │ ├── KryptosPublicVer.Resources.resources │ │ ├── KryptosPublicVer.vbproj.FileListAbsolute.txt │ │ ├── KryptosPublicVer.xml │ │ ├── ResGen.read.1.tlog │ │ └── ResGen.write.1.tlog │ │ └── Release │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── GenerateResource.write.300.tlog │ │ ├── KryptosPublicVer.Binder.resources │ │ ├── KryptosPublicVer.Form1.resources │ │ ├── KryptosPublicVer.MainWindow.resources │ │ ├── KryptosPublicVer.Resources.resources │ │ ├── KryptosPublicVer.vbproj.FileListAbsolute.txt │ │ ├── KryptosPublicVer.xml │ │ ├── ResGen.read.1.tlog │ │ └── ResGen.write.1.tlog └── Tester │ ├── Tester.sln │ └── Tester │ ├── AES.vb │ ├── ARC4.vb │ ├── Anti.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── OSCheck.vb │ ├── PStairs.vb │ ├── RAR.vb │ ├── Reader.vb │ ├── Tester.vbproj │ ├── TripleDesDecryption.vb │ ├── USBInf3ct.vb │ ├── app.config │ ├── bin │ ├── Debug │ │ ├── Tester.exe.config │ │ ├── Tester.vshost.exe.config │ │ ├── Tester.vshost.exe.manifest │ │ └── Tester.xml │ └── Release │ │ ├── Tester.exe.config │ │ └── Tester.xml │ ├── obj │ └── x86 │ │ ├── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── Tester.BlankForm.resources │ │ ├── Tester.Resources.resources │ │ ├── Tester.vbproj.FileListAbsolute.txt │ │ └── Tester.xml │ │ └── Release │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── Tester.BlankForm.resources │ │ ├── Tester.vbproj.FileListAbsolute.txt │ │ └── Tester.xml │ └── p2p.vb ├── License └── WindowsApplication1 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── License.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── WindowsApplication1.sln │ ├── bin │ ├── Debug │ │ ├── License.vshost.exe.manifest │ │ └── WindowsApplication1.xml │ └── Release │ │ └── License.xml │ └── obj │ ├── Debug │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ ├── WindowsApplication1.vbproj.GenerateResource.Cache │ └── WindowsApplication1.xml │ └── Release │ ├── License.Form1.resources │ ├── License.Resources.resources │ ├── License.vbproj.FileListAbsolute.txt │ ├── License.vbproj.GenerateResource.Cache │ ├── License.xml │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ └── WindowsApplication1.vbproj.GenerateResource.Cache ├── Lock Unlock app ├── Lock Unlock app.sln └── Lock Unlock app │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Lock Unlock app.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── app.config ├── MD5Grabber-SRC └── MD5Grabber │ ├── MD5Grabber.sln │ └── MD5Grabber │ ├── Cmd.ico │ ├── MD5Grabber.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ ├── Debug │ │ ├── DevComponents.DotNetBar2.xml │ │ ├── MD5Grabber.vshost.exe.manifest │ │ └── MD5Grabber.xml │ └── Release │ │ ├── DevComponents.DotNetBar2.xml │ │ └── MD5Grabber.xml │ ├── frmMain.Designer.vb │ ├── frmMain.resx │ ├── frmMain.vb │ └── obj │ ├── Debug │ ├── MD5Grabber.Resources.resources │ ├── MD5Grabber.frmMain.resources │ ├── MD5Grabber.vbproj.FileListAbsolute.txt │ ├── MD5Grabber.vbproj.GenerateResource.Cache │ └── MD5Grabber.xml │ └── Release │ ├── MD5Grabber.Resources.resources │ ├── MD5Grabber.frmMain.resources │ ├── MD5Grabber.vbproj.FileListAbsolute.txt │ ├── MD5Grabber.vbproj.GenerateResource.Cache │ └── MD5Grabber.xml ├── MSN Freezer ├── MSN Freezer.sln ├── MSN Freezer │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── MSN Freezer.vbproj │ ├── MSN.ico │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── bin │ │ ├── Debug │ │ │ ├── MSN Freezer.vshost.exe.manifest │ │ │ └── MSN Freezer.xml │ │ └── Release │ │ │ ├── MSN Freezer.vshost.exe.manifest │ │ │ └── MSN Freezer.xml │ └── obj │ │ ├── Debug │ │ ├── MSN Freezer.vbproj.FileListAbsolute.txt │ │ ├── MSN Freezer.vbproj.GenerateResource.Cache │ │ ├── MSN Freezer.xml │ │ ├── MSN_Freezer.Form1.resources │ │ └── MSN_Freezer.Resources.resources │ │ └── Release │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── MSN Freezer.vbproj.FileListAbsolute.txt │ │ ├── MSN Freezer.vbproj.GenerateResource.Cache │ │ ├── MSN Freezer.xml │ │ ├── MSN_Freezer.Form1.resources │ │ └── MSN_Freezer.Resources.resources ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── MSN Messenger Portable ├── MSN Messenger Portable.sln ├── MSN Messenger Portable │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── MSN Messenger Portable.vbproj │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── bin │ │ ├── Debug │ │ │ ├── MSN Messenger Portable.vshost.exe.manifest │ │ │ └── MSN Messenger Portable.xml │ │ └── Release │ │ │ └── MSN Messenger Portable.xml │ └── obj │ │ ├── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── MSN Messenger Portable.vbproj.FileListAbsolute.txt │ │ ├── MSN Messenger Portable.vbproj.GenerateResource.Cache │ │ ├── MSN Messenger Portable.xml │ │ ├── MSN_Messenger_Portable.Form1.resources │ │ └── MSN_Messenger_Portable.Resources.resources │ │ └── Release │ │ ├── MSN Messenger Portable.vbproj.FileListAbsolute.txt │ │ ├── MSN Messenger Portable.vbproj.GenerateResource.Cache │ │ ├── MSN Messenger Portable.xml │ │ ├── MSN_Messenger_Portable.Form1.resources │ │ └── MSN_Messenger_Portable.Resources.resources ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Mini Email Bomber ├── 123 │ ├── 123.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ └── bin │ │ └── Debug │ │ └── 123.vshost.exe.manifest └── 123.sln ├── Mp3 Search ├── Mp3 Search.sln └── Mp3 Search │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Mp3 Search.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── music_1.jpg │ ├── bin │ └── Debug │ │ └── Mp3 Search.vshost.exe.manifest │ └── headphones.ico ├── Mp3Player ├── Mp3Player.sln └── Mp3Player │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Mp3Player.vbproj │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── Mp3Player.vshost.exe.manifest │ │ └── Mp3Player.xml │ └── obj │ └── Debug │ ├── Mp3Player.Form1.resources │ ├── Mp3Player.Resources.resources │ ├── Mp3Player.vbproj.FileListAbsolute.txt │ ├── Mp3Player.vbproj.GenerateResource.Cache │ └── Mp3Player.xml ├── Msn Style Alert ├── UpgradeLog.XML ├── WindowsApplication4.sln ├── WindowsApplication4 │ ├── Alert.Designer.vb │ ├── Alert.resx │ ├── Alert.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Resources │ │ └── 999835_glowing_gel.jpg │ ├── WindowsApplication4.idc │ ├── WindowsApplication4.vbproj │ ├── bin │ │ └── Debug │ │ │ ├── WindowsApplication4.vshost.exe.manifest │ │ │ └── WindowsApplication4.xml │ └── obj │ │ └── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── WindowsApplication4.Alert.resources │ │ ├── WindowsApplication4.Form1.resources │ │ ├── WindowsApplication4.Resources.resources │ │ ├── WindowsApplication4.vbproj.FileListAbsolute.txt │ │ └── WindowsApplication4.xml └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Multi Crypter └── MultiCrypter v1 │ └── SrC │ ├── MultiCrypterStub.vbp │ ├── MultiCrypterStub.vbw │ ├── MultuCrypterCliente.vbp │ ├── MultuCrypterCliente.vbw │ ├── cAES.cls │ ├── clsRC4.cls │ ├── clsSimpleXOR.cls │ ├── frmStar.frm │ ├── frmStar.frx │ ├── mAlt.bas │ ├── mGlob.bas │ ├── mGlobal.bas │ └── runpe.bas ├── Multi File Binder ├── Multi File Binder │ ├── Multi File Binder.sln │ └── Multi File Binder │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── Multi File Binder.idc │ │ ├── Multi File Binder.vbproj │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── bin │ │ └── Debug │ │ └── Multi File Binder.vshost.exe.manifest └── multi file binder stub │ ├── multi file binder stub.sln │ └── multi file binder stub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── multi file binder stub.vbproj ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── NOTEPAD ├── NOTEPAD.sln └── NOTEPAD │ ├── FRM_Notepad.Designer.vb │ ├── FRM_Notepad.resx │ ├── FRM_Notepad.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── NOTEPAD.vbproj │ ├── Resources │ ├── icontexto-webdev-about-032x032.png │ ├── icontexto-webdev-arrow-down-032x032.png │ ├── icontexto-webdev-arrow-right-032x032.png │ ├── icontexto-webdev-bullet-032x032.png │ ├── icontexto-webdev-bullet-032x0321.png │ ├── icontexto-webdev-cancel-032x032.png │ ├── icontexto-webdev-favorites-032x032.png │ ├── icontexto-webdev-file-032x032.png │ ├── icontexto-webdev-file-032x0321.png │ ├── icontexto-webdev-print-032x032.png │ ├── icontexto-webdev-reload-032x032.png │ ├── icontexto-webdev-remove-032x032.png │ ├── icontexto-webdev-remove-032x0321.png │ ├── icontexto-webdev-rss-feed-032x032.png │ └── icontexto-webdev-site-map-032x032.png │ ├── bin │ └── Debug │ │ └── NOTEPAD.xml │ └── obj │ └── Debug │ ├── NOTEPAD.FRM_Notepad.resources │ ├── NOTEPAD.Resources.resources │ ├── NOTEPAD.vbproj.FileListAbsolute.txt │ ├── NOTEPAD.vbproj.GenerateResource.Cache │ └── NOTEPAD.xml ├── NT2 CRYPTER FULL SOURCE Edit AJaN ├── Client │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── User Controls │ │ ├── Check.ctl │ │ ├── Check.ctx │ │ ├── SCommandButton.ctl │ │ ├── SCommandButton.ctx │ │ ├── chameleonButton.ctl │ │ ├── chameleonButton.ctx │ │ ├── jcFrames.ctl │ │ ├── ucPickBox.ctl │ │ ├── ucPickBox.ctx │ │ └── wxpText.ctl │ ├── V1Banner.psd │ ├── carb0n.ico │ ├── frmAbout.frm │ ├── frmAbout.frx │ ├── frmMain.frm │ ├── frmMain.frx │ ├── prjNTCrypter Edit AJaN.vbp │ ├── prjNTCrypter Edit AJaN.vbw │ ├── prjNTCrypter Edit AJaN1.vbw │ ├── prjNTCrypter.RES │ ├── prjNTCrypter.csi │ └── prjNTCrypter.vbw └── Stub │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Project1.vbp │ └── Project1.vbw ├── NT2 crypter ├── Client │ ├── Group1.vbg │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── User Controls │ │ ├── Check.ctl │ │ ├── Check.ctx │ │ ├── SCommandButton.ctl │ │ ├── SCommandButton.ctx │ │ ├── chameleonButton.ctl │ │ ├── chameleonButton.ctx │ │ ├── jcFrames.ctl │ │ ├── ucPickBox.ctl │ │ ├── ucPickBox.ctx │ │ └── wxpText.ctl │ ├── V1Banner.psd │ ├── carb0n.ico │ ├── frmAbout.frm │ ├── frmAbout.frx │ ├── frmMain.frm │ ├── frmMain.frx │ ├── prjNTCrypter.csi │ ├── prjNTCrypter.vbp │ └── prjNTCrypter.vbw └── Stub │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Project1.vbp │ └── Project1.vbw ├── Nathans Binder ├── Nathan's Binder │ ├── Nathan's Binder.sln │ └── Nathan's Binder │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Nathan's Binder.vbproj │ │ ├── bin │ │ └── Debug │ │ │ └── Nathans Binder.xml │ │ └── obj │ │ └── Debug │ │ ├── Nathan's Binder.vbproj.FileListAbsolute.txt │ │ ├── Nathan's Binder.vbproj.GenerateResource.Cache │ │ ├── Nathans Binder.xml │ │ ├── WindowsApplication1.Form1.resources │ │ └── WindowsApplication1.Resources.resources └── NathansBinderStub │ ├── NathansBinderStub.sln │ └── NathansBinderStub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── NathansBinderStub.vbproj │ ├── R.vb │ ├── bin │ └── Debug │ │ └── NathansBinderStub.xml │ └── obj │ └── Debug │ ├── Nathan_s_Binder_Stub.Blank.resources │ ├── Nathan_s_Binder_Stub.Resources.resources │ ├── NathansBinderStub.vbproj.FileListAbsolute.txt │ ├── NathansBinderStub.vbproj.GenerateResource.Cache │ └── NathansBinderStub.xml ├── New junk code generater ├── New junk code generater.sln └── New junk code generater │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── I kawt wun, maw!.ico │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── New junk code generater.vbproj │ ├── Resources │ ├── MetalCyan_D.png │ └── Metal_L.png │ ├── app.config │ ├── bin │ ├── Debug │ │ ├── Junk Code Generator.exe.config │ │ ├── Junk Code Generator.vshost.exe.config │ │ ├── Junk Code Generator.vshost.exe.manifest │ │ ├── Junk Code Generator.xml │ │ └── New junk code generater.vshost.exe.manifest │ └── Release │ │ ├── Junk Code Generator.exe.config │ │ ├── Junk Code Generator.xml │ │ └── Junk Code Generator.zip │ └── obj │ └── x86 │ ├── Debug │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── Junk Code Generator.xml │ ├── New junk code generater.vbproj.FileListAbsolute.txt │ ├── New_junk_code_generater.Form1.resources │ ├── New_junk_code_generater.Resources.resources │ ├── ResGen.read.1.tlog │ └── ResGen.write.1.tlog │ └── Release │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── GenerateResource.write.65.tlog │ ├── Junk Code Generator.xml │ ├── New junk code generater.vbproj.FileListAbsolute.txt │ ├── New_junk_code_generater.Form1.resources │ └── New_junk_code_generater.Resources.resources ├── Niller Crypter ├── Indetectables.vbp ├── Indetectables.vbw ├── Modulos │ ├── AMethod.bas │ ├── AntiDBG.bas │ ├── ArchivoE.bas │ ├── ByeByeAvira.bas │ ├── EofData.bas │ ├── IconChanger.bas │ ├── Melt.bas │ ├── Module1.bas │ ├── Proceso.bas │ ├── clsBlowfish.cls │ ├── clsCheckBoxT.cls │ ├── clsCryptAPI.cls │ ├── clsDES.cls │ ├── clsGost.cls │ ├── clsRC4.cls │ ├── clsSerpent.cls │ ├── clsSimpleXOR.cls │ ├── clsSkipjack.cls │ ├── clsTEA.cls │ ├── clsTwofish.cls │ ├── iSpread.bas │ ├── modHex.bas │ └── runPEn.bas ├── Niller.frm ├── Niller.frx ├── Opciones.frm ├── Opciones.frx ├── Skin.DLL ├── Stub │ ├── Stub.frm │ ├── Stub.vbp │ ├── Stub.vbw │ ├── Timer.frm │ └── nMain.bas ├── fondo.jpg └── fondo.psd ├── No Virus Thanks Scanner ├── No Virus Thanks Scanner.sln └── No Virus Thanks Scanner │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── No Virus Thanks Scanner.vbproj │ ├── Web-shield.ico │ ├── bin │ └── Debug │ │ ├── NVT Scanner.zip │ │ └── No Virus Thanks Scanner.xml │ └── obj │ ├── Debug │ ├── No Virus Thanks Scanner.vbproj.FileListAbsolute.txt │ ├── No Virus Thanks Scanner.vbproj.GenerateResource.Cache │ ├── No Virus Thanks Scanner.xml │ ├── No_Virus_Thanks_Scanner.Form1.resources │ └── No_Virus_Thanks_Scanner.Resources.resources │ └── Release │ ├── No Virus Thanks Scanner.vbproj.FileListAbsolute.txt │ ├── No Virus Thanks Scanner.vbproj.GenerateResource.Cache │ ├── No Virus Thanks Scanner.xml │ ├── No_Virus_Thanks_Scanner.Form1.resources │ └── No_Virus_Thanks_Scanner.Resources.resources ├── Nuke Bomber v1 ├── Nuke Bomber v1.sln ├── Nuke Bomber v1 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Nuke Bomber v1.vbproj │ ├── Warning-shield-grey.ico │ ├── bin │ │ └── Debug │ │ │ ├── Bomber v1.xml │ │ │ ├── Nuke Bomber v1.vshost.exe.manifest │ │ │ └── Nuke Bomber v1.xml │ └── obj │ │ └── Debug │ │ ├── Bomber v1.xml │ │ ├── Bomber_v1.Resources.resources │ │ ├── Bomber_v1.txtsubject.resources │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── Nuke Bomber v1.vbproj.FileListAbsolute.txt │ │ ├── Nuke Bomber v1.vbproj.GenerateResource.Cache │ │ ├── Nuke Bomber v1.xml │ │ ├── Nuke_Bomber_v1.FrmMain.resources │ │ └── Nuke_Bomber_v1.Resources.resources ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── OhShin Crypter └── OhShin │ ├── Client │ ├── Client.vbp │ ├── Client.vbw │ ├── Forms │ │ ├── TOS.frm │ │ ├── TOS.frx │ │ ├── frmAbout.frm │ │ ├── frmAbout.frx │ │ ├── frmMain.frm │ │ └── frmMain.frx │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Skins │ │ └── Vista.skinproj │ └── Vista.skinproj │ └── Stub │ ├── Classen Module │ └── Class1.cls │ ├── Forms │ ├── qufnxlsg.frm │ └── qufnxlsg.frx │ ├── MSSCCPRJ.SCC │ ├── Module │ ├── Antis.bas │ └── Module1.bas │ ├── Project1.vbp │ └── Project1.vbw ├── Open crypter ├── DLG.bas ├── Form1.frm ├── Form1.frx ├── MSSCCPRJ.SCC ├── Module2.bas ├── Projekt1.exe.MANIFEST ├── Projekt1.vbp ├── Projekt1.vbw ├── Stub │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Projekt1.vbp │ └── Projekt1.vbw └── XP-Butons.ctl ├── PhoenixKeylogger ├── PhoenixKeylogger.sln ├── PhoenixKeylogger │ ├── AboutBox1.Designer.vb │ ├── AboutBox1.resx │ ├── AboutBox1.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Pheonix.ico │ ├── PhoenixKeylogger.vbproj │ ├── bin │ │ ├── Debug │ │ │ └── PhoenixKeylogger.xml │ │ └── Release │ │ │ ├── PhoenixKeylogger.vshost.exe.manifest │ │ │ └── PhoenixKeylogger.xml │ ├── obj │ │ ├── Debug │ │ │ ├── PhoenixKeylogger.AboutBox1.resources │ │ │ ├── PhoenixKeylogger.Form1.resources │ │ │ ├── PhoenixKeylogger.Resources.resources │ │ │ ├── PhoenixKeylogger.vbproj.FileListAbsolute.txt │ │ │ ├── PhoenixKeylogger.vbproj.GenerateResource.Cache │ │ │ └── PhoenixKeylogger.xml │ │ └── Release │ │ │ ├── GenerateResource.read.1.tlog │ │ │ ├── GenerateResource.write.1.tlog │ │ │ ├── PhoenixKeylogger.AboutBox1.resources │ │ │ ├── PhoenixKeylogger.Form1.resources │ │ │ ├── PhoenixKeylogger.Resources.resources │ │ │ ├── PhoenixKeylogger.vbproj.FileListAbsolute.txt │ │ │ ├── PhoenixKeylogger.vbproj.GenerateResource.Cache │ │ │ └── PhoenixKeylogger.xml │ └── orbz_fire.ico ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Ping ├── Ping.sln └── Ping │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_190.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Ping.vbproj │ ├── bin │ ├── Debug(2) │ │ └── Ping.xml │ └── Debug │ │ ├── Ping.vshost.exe.manifest │ │ └── Ping.xml │ └── obj │ └── Debug │ ├── Ping.Form1.resources │ ├── Ping.Resources.resources │ ├── Ping.vbproj.FileListAbsolute.txt │ ├── Ping.vbproj.GenerateResource.Cache │ └── Ping.xml ├── Polifemo Ebrio Crypter ├── Crypter.RES ├── Crypter.vbp ├── Crypter.vbw ├── Form's │ ├── frmMain.frm │ └── frmMain.frx ├── MSSCCPRJ.SCC ├── Modulos │ ├── clsRC4.cls │ ├── mFunctions.bas │ ├── mMain.bas │ ├── mMem0ry.bas │ └── sFunctions.bas ├── Stub.vbp └── Stub.vbw ├── ProCrypter - Stubgen ├── gui │ ├── MSSCCPRJ.SCC │ ├── Project1.RES │ ├── Project1.vbp │ ├── Project1.vbw │ ├── frmMain.frm │ ├── frmMain.frx │ ├── modCrypt.bas │ ├── modFunctions.bas │ └── modMain.bas ├── readme.txt ├── stub │ ├── Form1.frm │ ├── Form1.frx │ ├── MSSCCPRJ.SCC │ ├── Project1.RES │ ├── Project1.vbp │ ├── Project1.vbw │ ├── frmMain.frm │ ├── frmMain.frx │ ├── modCrypt.bas │ ├── modFWB.bas │ ├── modIM.bas │ ├── modMain.bas │ └── modSandbox.bas ├── stubgen │ ├── MSSCCPRJ.SCC │ ├── Stub.RES │ ├── Stubgen.vbp │ ├── Stubgen.vbw │ ├── frmMain.frm │ ├── frmMain.frx │ └── modules │ │ └── modFunctions.bas └── xor │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── Project1.vbp │ └── Project1.vbw ├── Pump It Up ├── Pump It Up.sln └── Pump It Up │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_118.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Pump It Up.vbproj │ ├── Resources │ ├── background.jpg │ └── darkstone.jpg │ ├── bin │ └── Debug │ │ ├── Pump It Up.vshost.exe.manifest │ │ └── Pump It Up.xml │ └── obj │ └── Debug │ ├── Pump It Up.vbproj.FileListAbsolute.txt │ ├── Pump It Up.vbproj.GenerateResource.Cache │ ├── Pump It Up.xml │ ├── Pump_It_Up.Form1.resources │ └── Pump_It_Up.Resources.resources ├── Pumper ├── Pumper.sln └── Pumper │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Pumper.vbproj │ ├── bin │ └── Debug │ │ ├── Pumper.vshost.exe.manifest │ │ └── Pumper.xml │ └── obj │ └── x86 │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── Pumper.Form1.resources │ ├── Pumper.Resources.resources │ ├── Pumper.vbproj.FileListAbsolute.txt │ └── Pumper.xml ├── RC4 Encrypted Text ├── RC4 Encrypted Text.sln └── RC4 Encrypted Text │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── RC4 Encrypted Text.vbproj │ └── bin │ └── Debug │ └── RC4 Encrypted Text.vshost.exe.manifest ├── README.md ├── Revenge Bomber ├── Revenge Bomber.sln └── Revenge Bomber │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Revenge Bomber.idc │ ├── Revenge Bomber.vbproj │ ├── bin │ └── Debug │ │ └── Revenge Bomber.xml │ ├── obj │ └── Debug │ │ ├── Revenge Bomber.vbproj.FileListAbsolute.txt │ │ ├── Revenge Bomber.vbproj.GenerateResource.Cache │ │ ├── Revenge Bomber.xml │ │ ├── WindowsApplication1.Form1.resources │ │ └── WindowsApplication1.Resources.resources │ ├── shutdown icon(1).ico │ └── shutdown icon.ico ├── Rotating lable ├── Rotating lable.sln └── Rotating lable │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Rotating lable.vbproj │ ├── UserControl1.Designer.vb │ └── UserControl1.vb ├── RunTime Crypter skyweb007 └── RunTime Crypter skyweb007 │ ├── Client │ ├── Client.vbp │ ├── Client.vbw │ └── Forms │ │ └── frmMain.frm │ └── Stub │ ├── Module2.bas │ ├── Modules │ ├── RunPE.bas │ └── StubX.bas │ ├── Stub.vbp │ └── Stub.vbw ├── Runtime Crypter Mudkip ├── Crypter │ ├── mainfrm.frm │ ├── mycrypter.vbp │ ├── mycrypter.vbw │ └── rc4mod.bas └── Stub │ ├── mainmod.bas │ ├── rc4mod.bas │ ├── runPE.bas │ ├── stub.vbp │ └── stub.vbw ├── SCREEN SHOT ├── SCREEN SHOT.sln └── SCREEN SHOT │ ├── FRM_ScreenShot.Designer.vb │ ├── FRM_ScreenShot.resx │ ├── FRM_ScreenShot.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── SCREEN SHOT.vbproj │ ├── bin │ └── Debug │ │ ├── SCREEN SHOT.vshost.exe.manifest │ │ └── SCREEN SHOT.xml │ └── obj │ └── Debug │ ├── SCREEN SHOT.vbproj.FileListAbsolute.txt │ ├── SCREEN SHOT.vbproj.GenerateResource.Cache │ ├── SCREEN SHOT.xml │ ├── SCREEN_SHOT.FRM_ScreenShot.resources │ └── SCREEN_SHOT.Resources.resources ├── ScanTime Crypter └── 1 scantime crypter stub │ ├── 1 scantime crypter stub.sln │ ├── 1 scantime crypter stub │ ├── 1 scantime crypter stub.vbproj │ ├── 1 scantime crypter stub_TemporaryKey.pfx │ ├── 1leopard.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Untitled - 1.ico │ └── obj │ │ └── Release │ │ ├── 1 scantime crypter stub.vbproj.FileListAbsolute.txt │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── roulerdespiles.application │ ├── Backup │ ├── 1 scantime crypter stub.sln │ └── 1 scantime crypter stub │ │ ├── 1 scantime crypter stub.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── ScantimeCrypter ├── LightiCrypter.vbp ├── LightiCrypter.vbw ├── Module1.bas ├── clsSimpleXOR.cls ├── frmMain.frm ├── frmMain.frx └── stub │ ├── ModMain.bas │ ├── Module1.bas │ ├── Stub.vbp │ ├── Stub.vbw │ └── clsSimpleXOR.cls ├── Schwarze Sonne crypter ├── 123123123.bas ├── CRijndael.cls ├── CRsdsdfdfsddsfdijndael.cls ├── CallAPIName.bas ├── Crypter.vbp ├── Crypter.vbw ├── Form1.frm ├── Form1.frx ├── Form2.frm ├── MSSCCPRJ.SCC ├── Stub4crypter.vbp ├── Stub4crypter.vbw ├── ThemedButton.ctl ├── ThemedButton.ctx ├── crypt.bas └── dsadfsafsadf.bas ├── Screen Capture ├── Screen Capture.sln └── Screen Capture │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Screen Capture.vbproj │ ├── bin │ └── Debug │ │ ├── Screen Capture.vshost.exe.manifest │ │ ├── Screen Capture.xml │ │ ├── WindowsApplication1.vshost.exe.manifest │ │ └── WindowsApplication1.xml │ └── obj │ └── Debug │ ├── Screen Capture.vbproj.FileListAbsolute.txt │ ├── Screen Capture.vbproj.GenerateResource.Cache │ ├── Screen Capture.xml │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ ├── WindowsApplication1.vbproj.GenerateResource.Cache │ └── WindowsApplication1.xml ├── Search ├── Search.sln └── Search │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_133.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── ask.com.jpg │ ├── darkstone.jpg │ ├── dogpile.gif │ ├── exit_lg.jpg │ ├── images.jpeg │ ├── msn.jpeg │ └── yahoo.jpg │ ├── Search.vbproj │ ├── bin │ └── Debug │ │ └── Search.vshost.exe.manifest │ └── obj │ └── Debug │ ├── Search.Form1.resources │ ├── Search.Resources.resources │ ├── Search.vbproj.FileListAbsolute.txt │ └── Search.vbproj.GenerateResource.Cache ├── Send Text Messages - SMS ├── Backup │ ├── Send Text Messages - SMS.sln │ └── Send Text Messages - SMS │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Send Text Messages - SMS.vbproj │ │ └── sendsms.ICO ├── Send Text Messages - SMS.sln ├── Send Text Messages - SMS │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Send Text Messages - SMS.vbproj │ ├── bin │ │ └── Debug │ │ │ ├── Send Text Messages - SMS.vshost.exe.manifest │ │ │ └── Send Text Messages - SMS.xml │ ├── obj │ │ ├── Debug │ │ │ ├── GenerateResource.read.1.tlog │ │ │ ├── GenerateResource.write.1.tlog │ │ │ ├── Send Text Messages - SMS.vbproj.FileListAbsolute.txt │ │ │ ├── Send Text Messages - SMS.vbproj.GenerateResource.Cache │ │ │ ├── Send Text Messages - SMS.xml │ │ │ ├── Send_Text_Messages___SMS.Form1.resources │ │ │ └── Send_Text_Messages___SMS.Resources.resources │ │ └── Send Text Messages - SMS.vbproj.FileListAbsolute.txt │ └── sendsms.ICO ├── UpgradeLog.XML └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── Server ├── @PSC_ReadMe_554_10.txt ├── AssemblyInfo.vb ├── BSOD.Designer.vb ├── BSOD.resx ├── BSOD.vb ├── Backup │ ├── AssemblyInfo.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── WindowsApplication12.sln │ └── WindowsApplication12.vbproj ├── Chat.Designer.vb ├── Chat.resx ├── Chat.vb ├── Flip.Designer.vb ├── Flip.resx ├── Flip.vb ├── Form1.resx ├── Form1.vb ├── Mac.Designer.vb ├── Mac.resx ├── Mac.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── Resources.Designer.vb │ ├── Resources.resx │ └── app.manifest ├── PerfCenterCpl.ico ├── ScreenCapture.vb ├── Screenflip.vb ├── Screenshot.jpg ├── UBuntu.Designer.vb ├── UBuntu.resx ├── UBuntu.vb ├── UpgradeLog.XML ├── UpgradeLog2.XML ├── WindowsApplication12.sln ├── WindowsApplication12.vbproj ├── WindowsApplication12_TemporaryKey.pfx ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── bin │ ├── Windows Host Manager.application │ ├── Windows Host Manager.exe.manifest │ ├── Windows Host Manager.vshost.application │ ├── Windows Host Manager.vshost.exe.manifest │ ├── Windows Host Manager.xml │ ├── funbags.txt │ └── scrn.bmp ├── filesend.vb ├── keylog.designer.vb ├── keylog.resx ├── keylog.vb ├── msn.vb ├── obj │ └── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── Windows Host Manager.application │ │ ├── Windows Host Manager.exe.manifest │ │ ├── Windows Host Manager.xml │ │ ├── WindowsApplication12.vbproj.FileListAbsolute.txt │ │ ├── WindowsHostManager.BSOD.resources │ │ ├── WindowsHostManager.Chat.resources │ │ ├── WindowsHostManager.Flip.resources │ │ ├── WindowsHostManager.Form1.resources │ │ ├── WindowsHostManager.Mac.resources │ │ ├── WindowsHostManager.Resources.resources │ │ ├── WindowsHostManager.UBuntu.resources │ │ ├── WindowsHostManager.keylog.resources │ │ └── WindowsHostManager.screenfuka.resources ├── resChanger.vb ├── screenfuka.Designer.vb ├── screenfuka.resx └── screenfuka.vb ├── Shadow Crypter ├── Editor │ ├── DENEK.RES │ ├── Language │ │ ├── english.lng │ │ ├── french.lng │ │ └── türkçe.lng │ ├── MdlCompress.bas │ ├── ModulPE.bas │ ├── TEST.RES │ ├── buton.ctl │ ├── cFileIcon.cls │ ├── cResources.cls │ ├── crypter.vbp │ ├── crypter.vbw │ ├── dee.RES │ ├── deneme.RES │ ├── ds.RES │ ├── frm1.frm │ ├── frm1.frx │ ├── frm1.log │ ├── frmabout.frm │ ├── frmabout.frx │ ├── frmiconhunter.frm │ ├── frmiconhunter.frx │ ├── frmiconhunter.log │ ├── iconchanger.bas │ ├── kaynak.bas │ ├── mResource.bas │ ├── mdlcdlg.bas │ ├── mdlversionreader.bas │ ├── new.RES │ ├── newres.RES │ ├── sd.RES │ ├── ss.RES │ ├── ss.txt │ └── stube.RES └── stub │ ├── bmodul.bas │ ├── bmodule2.bas │ ├── frm.frm │ ├── frm.frx │ ├── frm1.frm │ ├── mdlapis.bas │ ├── mdlcrypter.bas │ ├── mdlencyption.bas │ ├── mdlinject.bas │ ├── mdlmain.bas │ ├── mdltypelar.bas │ ├── stub.vbp │ ├── stub.vbw │ └── vbpStub.RES ├── Shutdown Timer ├── Shutdown Timer butten imagine │ ├── 1 Min.png │ ├── 10 Min.png │ ├── 2 Min.png │ ├── 3 Min.png │ ├── 4 Min.png │ ├── 5 Min.png │ ├── 6 Min.png │ ├── 7 Min.png │ ├── 8 Min.png │ ├── 9 Min.png │ ├── About us.png │ ├── Hibernation.png │ ├── Logoff.png │ ├── Restart.png │ ├── Shutdown.png │ ├── cooltext424282148.png │ ├── cooltext424282386.png │ └── cooltext424286012.png ├── Shutdown Timer.sln └── Shutdown Timer │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── 1 Min.png │ ├── 10 Min.png │ ├── 2 Min.png │ ├── 3 Min.png │ ├── 4 Min.png │ ├── 5 Min.png │ ├── 6 Min.png │ ├── 7 Min.png │ ├── 8 Min.png │ ├── 9 Min.png │ ├── Hibernation.png │ ├── Logoff.png │ ├── Restart.png │ ├── Shutdown.png │ ├── cooltext424282148.png │ ├── cooltext424282386.png │ └── cooltext424286012.png │ ├── Shutdown Timer.vbproj │ ├── bin │ └── Debug │ │ ├── Shutdown Timer.vshost.exe.manifest │ │ └── Shutdown Timer.xml │ └── obj │ └── Debug │ ├── Shutdown Timer.vbproj.FileListAbsolute.txt │ ├── Shutdown Timer.vbproj.GenerateResource.Cache │ ├── Shutdown Timer.xml │ ├── Shutdown_Timer.Form1.resources │ └── Shutdown_Timer.Resources.resources ├── Sikandars.Crypter.V6.VB.NET ├── AeonHackThemes.vb ├── EN.vb ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Form2.Designer.vb ├── Form2.resx ├── Form2.vb ├── Gnome-Dialog-Password.ico ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ ├── AESLoader.txt │ ├── AESRev.txt │ ├── ANotePad.txt │ ├── APIs.txt │ ├── Add2StartUp.txt │ ├── Adxdiag.txt │ ├── AntisSub.txt │ ├── Binder.txt │ ├── Downloader.txt │ ├── FolderOpt.txt │ ├── FunctionA.txt │ ├── HalDLL.txt │ ├── IconChanger.vb │ ├── Invoke.txt │ ├── KFunction.txt │ ├── Killers.txt │ ├── Melt.txt │ ├── PolyDec.txt │ ├── PolyRC4Loader.txt │ ├── PolyRC4Rev.txt │ ├── PolyStairsLoader.txt │ ├── PolyStairsRev.txt │ ├── PolyXORLoader.txt │ ├── PolyXORRev.txt │ ├── RC4.txt │ ├── RC4Loader.txt │ ├── Regedit.txt │ ├── ResetStub.txt │ ├── Restart.txt │ ├── RijLoader.txt │ ├── RijndaelRev.txt │ ├── RpE.Vb │ ├── RpE.txt │ ├── StairsLoader.txt │ ├── StairsRev.txt │ ├── Stub.txt │ ├── TDESLoader.txt │ ├── TDESRev.txt │ ├── TaskMSub.txt │ ├── Websites.txt │ ├── XORLoader.txt │ ├── XORRev.txt │ └── msconfig.txt ├── SCV6.0.sln ├── SCV6.0.vbproj ├── components.vb └── obj │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── SCV6.0.vbproj.FileListAbsolute.txt │ ├── SCV6.0.xml │ ├── SCV6._0.Form1.resources │ ├── SCV6._0.Form2.resources │ └── SCV6._0.Resources.resources ├── Simple Ass Binder ├── 1 simple ass binder │ ├── 1 simple ass binder.sln │ └── 1 simple ass binder │ │ ├── 1 simple ass binder.vbproj │ │ ├── 1.ico │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ └── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings └── 1 simple ass stub │ ├── 1 simple ass stub.sln │ └── 1 simple ass stub │ ├── 1 simple ass stub.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Simple Crypter └── Simple Crypter │ ├── Crypter │ ├── Form │ │ └── frmMain.frm │ ├── prjSC.vbp │ └── prjSC.vbw │ └── Stub │ ├── Module │ └── Module1.bas │ ├── prjStub.vbp │ └── prjStub.vbw ├── SkuLLByte Crypt +[SRC][VB] ├── Cliente │ ├── Cls │ │ ├── RC4.cls │ │ └── XOR.cls │ ├── Formularios │ │ ├── Client.vbp │ │ ├── Client.vbw │ │ ├── Form1.frm │ │ ├── Form1.frx │ │ ├── Form2.frm │ │ └── Form2.frx │ ├── Imágenes │ │ ├── banner.bmp │ │ └── colombia.bmp │ ├── Módulos │ │ └── mEOF.bas │ └── Recursos │ │ └── Button.ctl └── Stub │ ├── FUD2.cls │ ├── RC4.cls │ ├── SkuLLStub.bas │ ├── SkuLLStub.vbp │ ├── SkuLLStub.vbw │ └── XOR.cls ├── Source cs 1 ├── Class1.cls ├── Indetectables crypter.vbp ├── Indetectables crypter.vbw ├── Indetectables.frm ├── Indetectables.frx ├── Indetectables.log ├── Indetectables.vbw ├── MSSCCPRJ.SCC ├── Module1.bas └── STUB │ ├── Class1.cls │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module2.bas │ ├── RATATAT.VBP │ └── RATATAT.vbw ├── Source-Code └── WindowsApplication1 │ ├── WindowsApplication1.sln │ └── WindowsApplication1 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── IRunner.txt │ ├── Insider.txt │ ├── RunPE2.txt │ ├── Source.txt │ └── Wait.txt │ ├── Temp.vb │ ├── WindowsApplication1.vbproj │ ├── bin │ └── Debug │ │ ├── CounterCheck.txt │ │ ├── WindowsApplication1.vshost.exe.manifest │ │ └── WindowsApplication1.xml │ └── obj │ └── x86 │ └── Debug │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ └── WindowsApplication1.xml ├── Squezer crypter ├── Packer │ ├── GetEOFdata.bas │ ├── MSSCCPRJ.SCC │ ├── Mmain.bas │ ├── Project1.RES │ ├── Project1.vbp │ ├── Project1.vbw │ └── clsHuffman.cls └── PackerStub │ ├── CABN.bas │ ├── Decompress.bas │ ├── MSSCCPRJ.SCC │ ├── MemExecute.bas │ ├── Mmain.bas │ ├── Stub.vbp │ └── Stub.vbw ├── Suck My Source Code [FUD Tool] └── Suck my Source Code │ ├── Backup │ ├── Suck my Source Code.sln │ └── Suck my Source Code │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── Form2.Designer.vb │ │ ├── Form2.resx │ │ ├── Form2.vb │ │ ├── Form3.Designer.vb │ │ ├── Form3.resx │ │ ├── Form3.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Resources │ │ ├── 1271015202_plus_32.png │ │ ├── SP7UndetectorAboutScreen.png │ │ ├── bin_closed.png │ │ ├── lock.png │ │ └── table_refresh.png │ │ ├── SP7 Icon.ico │ │ └── Suck my Source Code.vbproj │ ├── Suck my Source Code.sln │ ├── Suck my Source Code │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── Form3.Designer.vb │ ├── Form3.resx │ ├── Form3.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Resources │ │ ├── #4.png │ │ ├── #5.png │ │ ├── 1271015202_plus_32.png │ │ ├── SP7UndetectorAboutScreen.png │ │ ├── bin_closed.png │ │ ├── lock.png │ │ └── table_refresh.png │ ├── SP7 Icon.ico │ ├── Suck my Source Code.vbproj │ ├── bin │ │ └── Debug │ │ │ ├── Suck my Source Code.vshost.exe.manifest │ │ │ └── Suck my Source Code.xml │ └── obj │ │ ├── Debug │ │ ├── Suck my Source Code.vbproj.FileListAbsolute.txt │ │ ├── Suck my Source Code.vbproj.GenerateResource.Cache │ │ ├── Suck my Source Code.xml │ │ ├── Suck_my_Source_Code.Form1.resources │ │ ├── Suck_my_Source_Code.Form2.resources │ │ ├── Suck_my_Source_Code.Form3.resources │ │ └── Suck_my_Source_Code.Resources.resources │ │ └── Release │ │ ├── Suck my Source Code.vbproj.FileListAbsolute.txt │ │ ├── Suck my Source Code.vbproj.GenerateResource.Cache │ │ ├── Suck my Source Code.xml │ │ ├── Suck_my_Source_Code.Form1.resources │ │ ├── Suck_my_Source_Code.Form2.resources │ │ ├── Suck_my_Source_Code.Form3.resources │ │ └── Suck_my_Source_Code.Resources.resources │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── TCrypter ├── Form1.frm ├── Form1.frx ├── IconChanger.bas ├── PE.bas ├── Project1.vbp ├── Project1.vbw ├── TrojCrypter.exe.manifest ├── crypt.bas ├── ctkiuyt.bas ├── dialog.bas ├── kilhgfgdf.bas ├── killprocess.bas ├── prouytf.bas ├── regjfd.bas ├── rundsc.bas ├── stub.RES ├── stub.bas ├── stub.vbp └── stub.vbw ├── TNT_CRYPTER └── TNT CRYPTER │ ├── Builder │ ├── 111.jpg │ ├── 14.ico │ ├── 15.ico │ ├── 2008-08-04_204145.jpg │ ├── AES_mod.bas │ ├── Form1.frm │ ├── Form1.frx │ ├── Form2.frx │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module111111.bas │ ├── Module12.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── ModuleRealign pe header.bas │ ├── Project1.RES │ ├── Project1.vbp │ ├── Project1.vbw │ ├── RC4_mod.bas │ ├── XOR_mod.bas │ ├── cRijndael.cls │ ├── header.jpg │ ├── ivo.ico │ ├── kanat.ico │ ├── mod_icon.bas │ ├── mod_pe.bas │ └── resWinXPStyles.res │ └── Stub │ ├── AES_mod.bas │ ├── AES_mod.bas.bk │ ├── Declarations.bas │ ├── Form1.frm │ ├── MSSCCPRJ.SCC │ ├── Module1.bas │ ├── Module1.bas.bk │ ├── Module11111111111.bas │ ├── Module2.bas │ ├── Moduleneue runpe methode.bas │ ├── Project1.RES │ ├── Project1.vbp │ ├── Project1.vbp.bk │ ├── Project1.vbw │ ├── RC4.bas │ ├── RC4.bas.bk │ ├── XOR_mod.bas │ ├── XOR_mod.bas.bk │ ├── cRijndael.cls │ ├── cRijndael.cls.bk │ ├── ikwrqnvug.bas │ ├── ivo.ico │ ├── kanat.ico │ ├── main_mod.bas │ ├── modCDKey.bas │ ├── modCDKey.bas.bk │ ├── modDetExe.bas │ ├── modDetExe.bas.bk │ ├── modSandboxes.bas │ ├── modSandboxes.bas.bk │ ├── modSelfKill.bas │ ├── modVMs.bas │ ├── modVMs.bas.bk │ ├── mod_XOR.bas │ ├── mod_anticodes.bas │ ├── mod_anticodes.bas.bk │ ├── mod_av.bas │ ├── mod_rt.bas │ ├── mod_rt2.bas │ ├── mod_rt3.bas │ ├── mod_rt4.bas │ ├── process_mod.bas │ ├── registrykeys_mod.bas │ └── rt_mod.bas ├── Update system ├── Update system.sln └── Update system │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Update system.vbproj │ ├── bin │ ├── Debug │ │ └── Update system.vshost.exe.manifest │ └── Release │ │ └── Update system.xml │ └── obj │ └── Release │ ├── Update system.vbproj.FileListAbsolute.txt │ ├── Update system.vbproj.GenerateResource.Cache │ ├── Update system.xml │ ├── Update_system.Form1.resources │ └── Update_system.Resources.resources ├── VBdotNET_PortScanner_VS2008 ├── App.config ├── AssemblyInfo.vb ├── PortScanner.sln ├── PortScanner.vbproj ├── clsScanner.vb ├── frmMain.resx └── frmMain.vb ├── Weekend Binder ├── simple Binder 1.0 builder │ ├── simple Binder 1.0 builder.sln │ └── simple Binder 1.0 builder │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── add.ico │ │ └── simple Binder 1.0 builder.vbproj └── simple binder 1.0 stub │ ├── simple binder 1.0 stub.sln │ └── simple binder 1.0 stub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── simple binder 1.0 stub.vbproj ├── White-Crypt ├── Button.ctl ├── Clases │ ├── RC4.cls │ └── XOR.cls ├── Cliente.vbp ├── Cliente.vbw ├── Formularios │ ├── Button.ctl │ ├── CommandXP.ctl │ ├── Form1.frm │ ├── Form1.frx │ ├── Form1.log │ ├── Proyecto1.vbw │ └── frmAbout.frm ├── Imagene │ └── cogollofirma.bmp ├── Modulos │ ├── Module1.bas │ ├── mEOF.bas │ ├── mFunctions.bas │ ├── mRunPe.bas │ ├── mdlAnubis.bas │ ├── mdlJoeBox.bas │ ├── mdlSandBox.bas │ └── mdlVMCobein.bas ├── Stub.vbp ├── Stub.vbw └── StubMOD.rar ├── White-Crypter └── White-Crypt │ └── White-Crypt │ ├── Button.ctl │ ├── Clases │ ├── RC4.cls │ └── XOR.cls │ ├── Cliente.vbp │ ├── Cliente.vbw │ ├── Formularios │ ├── Button.ctl │ ├── CommandXP.ctl │ ├── Form1.frm │ ├── Form1.frx │ ├── Proyecto1.vbw │ └── frmAbout.frm │ ├── Imagene │ └── cogollofirma.bmp │ ├── Modulos │ ├── Module1.bas │ ├── mEOF.bas │ ├── mFunctions.bas │ ├── mRunPe.bas │ ├── mdlAnubis.bas │ ├── mdlJoeBox.bas │ ├── mdlSandBox.bas │ └── mdlVMCobein.bas │ ├── Stub.vbp │ └── Stub.vbw ├── Windows 7 Keygen └── Windows 7 Keygen │ ├── Windows 7 Keygen.sln │ └── Windows 7 Keygen │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Windows 7 Keygen.vbproj │ ├── bin │ ├── Debug │ │ ├── Windows 7 Keygen.vshost.exe.manifest │ │ └── Windows 7 Keygen.xml │ └── Release │ │ └── Windows 7 Keygen.xml │ ├── obj │ ├── Debug │ │ ├── Windows 7 Keygen.vbproj.FileListAbsolute.txt │ │ ├── Windows 7 Keygen.vbproj.GenerateResource.Cache │ │ ├── Windows 7 Keygen.xml │ │ ├── Windows_7_Keygen.Form1.resources │ │ └── Windows_7_Keygen.Resources.resources │ └── Release │ │ ├── Windows 7 Keygen.vbproj.FileListAbsolute.txt │ │ ├── Windows 7 Keygen.vbproj.GenerateResource.Cache │ │ ├── Windows 7 Keygen.xml │ │ ├── Windows_7_Keygen.Form1.resources │ │ └── Windows_7_Keygen.Resources.resources │ └── windows-icon.ICO ├── WindowsApplication3 ├── WindowsApplication3.sln └── WindowsApplication3 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Omegle.ico │ ├── WindowsApplication3.vbproj │ ├── bin │ ├── Debug │ │ ├── WindowsApplication1.vshost.exe.manifest │ │ ├── WindowsApplication1.xml │ │ └── WindowsApplication3.vshost.exe.manifest │ └── Release │ │ └── WindowsApplication1.xml │ └── obj │ ├── Debug │ ├── Omegle Spreader.xml │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ ├── WindowsApplication1.vbproj.GenerateResource.Cache │ ├── WindowsApplication1.xml │ ├── WindowsApplication3.vbproj.FileListAbsolute.txt │ └── WindowsApplication3.vbproj.GenerateResource.Cache │ └── Release │ ├── Omegle Spreader.xml │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ ├── WindowsApplication1.vbproj.GenerateResource.Cache │ ├── WindowsApplication1.xml │ ├── WindowsApplication3.vbproj.FileListAbsolute.txt │ └── WindowsApplication3.vbproj.GenerateResource.Cache ├── WoW account hacker └── WoW account hacker │ ├── WoW account hacker.sln │ └── WoW account hacker │ ├── About.Designer.vb │ ├── About.resx │ ├── About.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── SKULL1.ICO │ └── world of warcraft.png │ ├── SKULL1.ICO │ ├── WoW account hacker.vbproj │ ├── bin │ ├── Debug │ │ ├── WoW account hacker.application │ │ ├── WoW account hacker.exe.manifest │ │ ├── WoW account hacker.xml │ │ └── app.publish │ │ │ ├── Application Files │ │ │ └── WoW account hacker_1_0_0_0 │ │ │ │ └── WoW account hacker.exe.manifest │ │ │ └── WoW account hacker.application │ └── Release │ │ ├── WoW account hacker.application │ │ ├── WoW account hacker.exe.manifest │ │ └── WoW account hacker.xml │ └── obj │ ├── Debug │ ├── WoW account hacker.application │ ├── WoW account hacker.exe.manifest │ ├── WoW account hacker.vbproj.FileListAbsolute.txt │ ├── WoW account hacker.vbproj.GenerateResource.Cache │ ├── WoW account hacker.xml │ ├── WoW_account_hacker.AboutForm.resources │ ├── WoW_account_hacker.Form1.resources │ └── WoW_account_hacker.Resources.resources │ └── Release │ ├── WoW account hacker.application │ ├── WoW account hacker.exe.manifest │ ├── WoW account hacker.vbproj.FileListAbsolute.txt │ ├── WoW account hacker.vbproj.GenerateResource.Cache │ ├── WoW account hacker.xml │ ├── WoW_account_hacker.AboutForm.resources │ ├── WoW_account_hacker.Form1.resources │ └── WoW_account_hacker.Resources.resources ├── [C#] Cryptex └── Cryptex1 │ ├── Cryptex1.sln │ └── Cryptex1 │ ├── AboutBox1.cs │ ├── Class0.cs │ ├── Control0.cs │ ├── Control1.cs │ ├── Control10.cs │ ├── Control11.cs │ ├── Control12.cs │ ├── Control13.cs │ ├── Control14.cs │ ├── Control15.cs │ ├── Control16.cs │ ├── Control2.cs │ ├── Control3.cs │ ├── Control4.cs │ ├── Control5.cs │ ├── Control6.cs │ ├── Control7.cs │ ├── Control8.cs │ ├── Control9.cs │ ├── Cryptex1.csproj │ ├── Enum0.cs │ ├── Enum3.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Gclass0.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── AES.txt │ ├── AssLoadinv4.txt │ ├── Assemblyinf.txt │ ├── AssloadNew.txt │ ├── Batch.txt │ ├── Batch2.txt │ ├── BindSource.txt │ ├── Cloud.txt │ ├── Delay.txt │ ├── Dex.txt │ ├── Drop.txt │ ├── Enc.png │ ├── EncPic.txt │ ├── HIDEFILE.txt │ ├── ISDOTNET.txt │ ├── MAINSOURCE.txt │ ├── Mainpic.txt │ ├── NOTNET.txt │ ├── OtherPic.txt │ ├── Poly3DES.txt │ ├── PolyAes.txt │ ├── PolyBaby.txt │ ├── PolyDES.txt │ ├── PolyDex.txt │ ├── PolyRC2.txt │ ├── PolyRev.txt │ ├── PolyRijn.txt │ ├── PolyStairs.txt │ ├── PolySym.txt │ ├── Polycloud.txt │ ├── Prockill.txt │ ├── RC2.txt │ ├── RC4.txt │ ├── RSM.txt │ ├── Rijindael.txt │ ├── Runpepic.txt │ ├── SingleDL.txt │ ├── Source2.txt │ ├── Stairs.txt │ ├── Startup.txt │ ├── Symetric.txt │ ├── TripleDES.txt │ ├── Xor.txt │ ├── YES.txt │ ├── main.png │ ├── other.png │ └── runpe.png │ ├── bin │ ├── Debug │ │ ├── Cryptex1.vshost.exe.manifest │ │ ├── Set1.txt │ │ ├── Set2.txt │ │ ├── anSnN96fwC5.resources │ │ └── anSnN96fwC5abc.resources │ └── Release │ │ ├── aQ2kQe77dSH.resources │ │ ├── aQ2kQe77dSHabc.resources │ │ ├── aT155gYGUtI.resources │ │ └── aT155gYGUtIabc.resources │ └── obj │ └── x86 │ ├── Debug │ ├── Cryptex1.Form1.resources │ ├── Cryptex1.csproj.FileListAbsolute.txt │ └── Cryptex1.csproj.GenerateResource.Cache │ └── Release │ ├── Cryptex1.Form1.resources │ ├── Cryptex1.csproj.FileListAbsolute.txt │ ├── Cryptex1.csproj.GenerateResource.Cache │ ├── GenerateResource.read.1.tlog │ └── GenerateResource.write.1.tlog ├── [C#] Sikandar Crypter v7 Source └── Sikandar Crypter Full Source Leak 2012 decompiled │ └── Sikandar │ ├── Form1 (main) │ ├── Form1.txt │ ├── Form1.vb │ ├── Resources │ │ ├── $this.BackgroundImage.jpg │ │ ├── PictureBox13.Image.jpg │ │ ├── PictureBox17.Image.jpg │ │ ├── PictureBox18.Image.jpg │ │ ├── PictureBox2.Image.gif │ │ ├── PictureBox3.Image.jpg │ │ ├── PictureBox4.Image.jpg │ │ ├── PictureBox5.Image.jpg │ │ ├── PictureBox6.Image.jpg │ │ ├── PictureBox7.Image.jpg │ │ └── PictureBox8.Image.jpg │ └── What as what.txt │ ├── Form3 (email) │ ├── Form3.txt │ ├── Form3.vb │ └── What as what.txt │ ├── Icon.ico │ └── Resources │ ├── Antis.cs │ ├── Antis.txt │ ├── Antis_Reset.txt │ ├── Binder_Replacement.txt │ ├── Binder_Replacement_Reset.txt │ ├── CSharp_AES.txt │ ├── CSharp_RC4.txt │ ├── CSharp_STAIRS.txt │ ├── CSharp_XOR.txt │ ├── CallThread.txt │ ├── Downloader.txt │ ├── EN_AES.txt │ ├── EN_PRC4.txt │ ├── EN_PSTAIRS.txt │ ├── EN_PXOR.txt │ ├── EN_RC4.txt │ ├── EN_STAIRS.txt │ ├── EN_STR.txt │ ├── EN_STR_R.txt │ ├── EN_TDES.txt │ ├── EN_XOR.txt │ ├── Folder_Options.txt │ ├── Inflator_Stub.txt │ ├── Inj_Writer.txt │ ├── Invoke.txt │ ├── Invoke_Replace.txt │ ├── KFunction.txt │ ├── Melt.txt │ ├── ProtectProcess.txt │ ├── Reset.txt │ ├── Reverse.txt │ ├── RunPE.txt │ ├── Start.txt │ ├── StartUp.txt │ ├── StartUp_Load.txt │ ├── StartUp_Load_Pers.txt │ ├── StartupW_oPers.txt │ ├── Stub.txt │ ├── TM.txt │ ├── WriteFile.txt │ ├── avi.ico │ ├── dll.ico │ ├── doc.ico │ ├── html │ ├── jpg.ico │ ├── mp3.ico │ ├── pdf.ico │ ├── png_gif.ico │ ├── rar.ico │ └── txt.ico ├── [C#] The RATs Crew Crypter ├── ETheme.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GUI.cs ├── GroupB0x.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer (LAPTOP's conflicted copy 2012-02-29).cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer (LAPTOP's conflicted copy 2012-02-29).cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── AESDecrypt.txt │ ├── AssemblyChanger.txt │ ├── CloudDecrypt.txt │ ├── CompressionDecompress.txt │ ├── DESDecrypt.txt │ ├── DefaultBrowser.txt │ ├── DexDecrypt.txt │ ├── Dropper.txt │ ├── Dropper2.txt │ ├── InstallFile.txt │ ├── PolyAESDecrypt.txt │ ├── PolyBabyDecrypt.txt │ ├── PolyCloudDecrypt.txt │ ├── PolyDESDecrypt.txt │ ├── PolyDexDecrypt.txt │ ├── PolyRC2Decrypt.txt │ ├── PolyRevDecrypt.txt │ ├── PolyStairsDecrypt.txt │ ├── PolySymentricDecrypt.txt │ ├── PolyTripleDES.txt │ ├── RC2Decrypt.txt │ ├── RC4EncryptDecrypt.txt │ ├── RijndaelDecrypt.txt │ ├── Source.txt │ ├── StairsDecrypt.txt │ ├── Startup.txt │ ├── SymentricDecrypt.txt │ ├── TripleDESDecrypt.txt │ ├── VBC.txt │ ├── XOREncryptDecrypt.txt │ └── ratscrewlogo.png ├── The RATs Crew Crypter.csproj ├── bin │ └── Debug │ │ └── The RATs Crew Crypter.vshost.exe.manifest └── obj │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── The RATs Crew Crypter.csproj.FileListAbsolute (LAPTOP's conflicted copy 2012-02-29).txt │ ├── The RATs Crew Crypter.csproj.FileListAbsolute.txt │ ├── The RATs Crew Crypter.csproj.GenerateResource.Cache │ ├── The_RATs_Crew_Crypter.frmTRC_Crypter (LAPTOP's conflicted copy 2012-02-29).resources │ └── The_RATs_Crew_Crypter.frmTRC_Crypter.resources ├── [C#] ThreatConceal Source └── ThreatConceal Source │ ├── Assembly_Changer.cs │ ├── BButton.cs │ ├── BTheme.cs │ ├── Binder.cs │ ├── ButtonPane.cs │ ├── Changelog.cs │ ├── Cyber_Z_CrypteR.cs │ ├── CyperxCheckbox.cs │ ├── CyperxComboBox.cs │ ├── CyperxProgressbar.cs │ ├── CyperxSeperator.cs │ ├── CyperxTextbox.cs │ ├── CypherxButton.cs │ ├── CypherxButtonV2.cs │ ├── CypherxGroupBox.cs │ ├── CypherxLabel.cs │ ├── CypherxTheme.cs │ ├── Draw.cs │ ├── Extension_Spoofer.cs │ ├── File_Compare.cs │ ├── FutureButton.cs │ ├── FutureButtonCrypt.cs │ ├── FutureButtonExit.cs │ ├── FutureButtonMinimize.cs │ ├── FutureProgressBar.cs │ ├── FutureSeperator.cs │ ├── FutureTheme.cs │ ├── GButton.cs │ ├── GTheme.cs │ ├── Generate.cs │ ├── GroupBox.cs │ ├── IconChanger.cs │ ├── InternalXmlHelper.cs │ ├── Licence_Agreement.cs │ ├── License.cs │ ├── Main.cs │ ├── MainClass.cs │ ├── Main__CRz.cs │ ├── MyApplication.cs │ ├── MyComputer.cs │ ├── MyProject.cs │ ├── MySettings.cs │ ├── MySettingsProperty.cs │ ├── NButton.cs │ ├── NTheme.cs │ ├── Obfuscator.cs │ ├── PolyCrypt.cs │ ├── PolyStair.cs │ ├── Popup.cs │ ├── Pumper.cs │ ├── RButton.cs │ ├── RButtonGreen.cs │ ├── RButtonRed.cs │ ├── RTheme.cs │ ├── Randomnumber.cs │ ├── ReCaptcha.cs │ ├── Realign.cs │ ├── ResourceWriter.cs │ ├── Resources.cs │ ├── Rotator.cs │ ├── SButton.cs │ ├── STheme.cs │ ├── Seperator.cs │ ├── Theme.cs │ ├── ThemeContainerControl.cs │ ├── ThemeControl.cs │ ├── This_Main.cs │ ├── USG.cs │ ├── U_S_G.cs │ ├── Unlimited_Binder.cs │ ├── Work_Progress.cs │ ├── iCompiler.cs │ ├── iCompilerExe.cs │ ├── iCompilerLoader.cs │ └── ÊÊÊÈ.cs ├── [VB.Net] + [C#] Crystal Crypter v2 ├── CodeDom Crypter.sln ├── CodeDom Crypter.vbproj ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Form2.Designer.vb ├── Form2.resx ├── Form2.vb ├── IconChanger.vb ├── Info.txt ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ ├── Eazfuscator.NET CEIP.exe.config │ ├── Eazfuscator.NET.Ceip.dll.config │ └── source.txt ├── app.config ├── bin │ ├── Debug │ │ ├── CodeDom Crypter.vshost.exe.config │ │ ├── CodeDom Crypter.vshost.exe.manifest │ │ ├── CodeDom Crypter.xml │ │ ├── Crystal Crypter.exe.config │ │ ├── Crystal Crypter.vshost.exe.config │ │ ├── Crystal Crypter.vshost.exe.manifest │ │ ├── Crystal Crypter.xml │ │ └── V-touch.skf │ └── Release │ │ ├── CodeDom Crypter.exe.config │ │ └── CodeDom Crypter.xml ├── jk.vb ├── myrandom.vb ├── obj │ └── x86 │ │ ├── Debug │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.vbproj.GenerateResource.Cache │ │ ├── Crystal Crypter.xml │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.read.4.tlog │ │ ├── GenerateResource-ResGen.read.6.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.read.405.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.Form2.resources │ │ └── WindowsApplication1.Resources.resources │ │ └── Release │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.xml │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.read.4.tlog │ │ ├── GenerateResource-ResGen.read.6.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ └── WindowsApplication1.Resources.resources └── randompool.vb ├── [VB.Net] Boom Crypter Source ├── Boom Crypter │ ├── Boom Crypter.sln │ └── Boom Crypter │ │ ├── 1308752753_bomb-explosive-icon.ico │ │ ├── Boom Crypter.vbproj │ │ ├── Class1.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── Icon.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Resources │ │ └── done.jpg │ │ ├── Write.vb │ │ ├── app.config │ │ ├── bin │ │ ├── Debug │ │ │ ├── Boom Crypter.exe.config │ │ │ ├── Boom Crypter.vshost.exe.config │ │ │ ├── Boom Crypter.vshost.exe.manifest │ │ │ └── Boom Crypter.xml │ │ └── Release │ │ │ ├── Boom Crypter.exe.config │ │ │ ├── Boom Crypter.xml │ │ │ └── DTA32.HF │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── Boom Crypter.vbproj.FileListAbsolute.txt │ │ ├── Boom Crypter.xml │ │ ├── Boom_Crypter.Form1.resources │ │ ├── Boom_Crypter.Resources.resources │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.read.4.tlog │ │ ├── GenerateResource-ResGen.read.6.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog │ │ └── Release │ │ ├── Boom Crypter.vbproj.FileListAbsolute.txt │ │ ├── Boom Crypter.xml │ │ ├── Boom_Crypter.Form1.resources │ │ ├── Boom_Crypter.Resources.resources │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.read.4.tlog │ │ ├── GenerateResource-ResGen.read.6.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog └── Boom1 │ ├── Boom1.sln │ └── Boom1 │ ├── 1308752753_bomb-explosive-icon.ico │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Gogoli.vbproj │ ├── HJDuiwefihjd.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Read.vb │ ├── app.config │ ├── bin │ ├── Debug │ │ ├── Boom1.vshost.exe.manifest │ │ ├── Gogoli.vshost.exe.config │ │ ├── Gogoli.vshost.exe.manifest │ │ ├── This_is_made_by_Ghostenigma.exe.config │ │ ├── This_is_made_by_Ghostenigma.vshost.exe.config │ │ ├── This_is_made_by_Ghostenigma.vshost.exe.manifest │ │ └── This_is_made_by_Ghostenigma.xml │ └── Release │ │ ├── Gogoli.exe.config │ │ ├── Gogoli.xml │ │ ├── This_is_made_by_Ghostenigma.exe.config │ │ └── This_is_made_by_Ghostenigma.xml │ └── obj │ └── x86 │ ├── Debug │ ├── Boom1.vbproj.FileListAbsolute.txt │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── This_is_made_by_Ghostenigma.Form1.resources │ ├── This_is_made_by_Ghostenigma.Resources.resources │ └── This_is_made_by_Ghostenigma.xml │ └── Release │ ├── Boom1.vbproj.FileListAbsolute.txt │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── Gogoli.Form1.resources │ ├── Gogoli.Resources.resources │ ├── Gogoli.vbproj.FileListAbsolute.txt │ ├── Gogoli.xml │ ├── This_is_made_by_Ghostenigma.Form1.resources │ ├── This_is_made_by_Ghostenigma.Resources.resources │ └── This_is_made_by_Ghostenigma.xml ├── [VB.Net] CodeDom Crypter └── CodeDom Crypter │ ├── CodeDom Crypter.sln │ └── CodeDom Crypter │ ├── CodeDom Crypter.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── source.txt │ ├── bin │ └── Debug │ │ ├── CodeDom Crypter.vshost.exe.manifest │ │ └── CodeDom Crypter.xml │ ├── iCompiler.vb │ └── obj │ └── x86 │ └── Debug │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ ├── CodeDom Crypter.xml │ ├── ResGen.read.1.tlog │ ├── ResGen.write.1.tlog │ ├── WindowsApplication1.Form1.resources │ └── WindowsApplication1.Resources.resources ├── [VB.Net] Encryption Methods ├── 3DES+MD5.vb ├── 3DES.vb ├── AES.vb ├── BLOWFISH.vb ├── PolyRC4.vb ├── PolyStairs.vb ├── RC2.vb ├── RC4.vb ├── Rijndael.vb ├── Stairs.vb └── XOR.vb ├── [VB.Net] ForcedHacking 2.0 ├── ForcedHacking │ ├── Cryptation.url │ └── ForcedHacking │ │ ├── AeonHackThemes.vb │ │ ├── EoF.vb │ │ ├── ForceHacking.sln │ │ ├── ForceHacking.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── HostEdit.Designer.vb │ │ ├── HostEdit.resx │ │ ├── HostEdit.vb │ │ ├── JunkCoder.vb │ │ ├── ManagementClass.vb │ │ ├── Miharbi Icon Changer.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ └── app.manifest │ │ ├── Portable .Net IDE.exe_I7f00_0000.ico │ │ ├── Resources │ │ └── Force.txt │ │ ├── UpgradeLog.XML │ │ ├── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ │ ├── bin │ │ ├── Debug │ │ │ ├── DeadAuth.xml │ │ │ ├── Polymorphic Crypter.vshost.exe.manifest │ │ │ └── Polymorphic Crypter.xml │ │ └── Release │ │ │ ├── Cloud.ico │ │ │ ├── Merge │ │ │ ├── Devv.Core.Utils.xml │ │ │ └── ILMerge-GUI.exe.config │ │ │ ├── Polymorphic Crypter.xml │ │ │ ├── Random NET File and NATIVE File │ │ │ └── Random NET File and NATIVE File.rar │ │ │ └── Release.rar │ │ ├── iCompiler.vb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.vbproj.GenerateResource.Cache │ │ ├── Enigma.vbproj.FileListAbsolute.txt │ │ ├── Enigma.xml │ │ ├── ForceHacking.vbproj.FileListAbsolute.txt │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── Polymorphic Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.HostEdit.resources │ │ ├── WindowsApplication1.Resources.resources │ │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ │ └── WindowsApplication1.xml │ │ └── Release │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.xml │ │ ├── Enigma.vbproj.FileListAbsolute.txt │ │ ├── ForceHacking.vbproj.FileListAbsolute.txt │ │ ├── Polymorphic Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.HostEdit.resources │ │ └── WindowsApplication1.Resources.resources ├── MyCrypter │ ├── MyCrypter.sln │ ├── MyCrypter │ │ ├── 31.ico │ │ ├── 3des.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── MyCrypter.vbproj │ │ ├── Solar-System-Moon-3D-screensaver.jpg │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── MoonCrypter.Form1.resources │ │ │ │ ├── MoonCrypter.Resources.resources │ │ │ │ ├── MoonCrypter.xml │ │ │ │ ├── MyCrypter.vbproj.FileListAbsolute.txt │ │ │ │ └── MyCrypter.vbproj.GenerateResource.Cache │ │ └── rc4.vb │ ├── rlz │ │ ├── ico │ │ │ ├── 31.ico │ │ │ ├── access.ico │ │ │ ├── avi.ico │ │ │ ├── avi98.ico │ │ │ ├── bat.ico │ │ │ ├── blank.ico │ │ │ ├── bmp.ico │ │ │ ├── cd.ico │ │ │ ├── cmd.ico │ │ │ ├── contact.ico │ │ │ ├── dll.ico │ │ │ ├── dllxp.ico │ │ │ ├── doc2000.ico │ │ │ ├── doc2003.ico │ │ │ ├── dos.ico │ │ │ ├── emule.ico │ │ │ ├── excel.ico │ │ │ ├── file.ico │ │ │ ├── folder.ico │ │ │ ├── gif.ico │ │ │ ├── hd.ico │ │ │ ├── help.ico │ │ │ ├── html.ico │ │ │ ├── ie.ico │ │ │ ├── iexpress.ico │ │ │ ├── imageready.ico │ │ │ ├── inixp.ico │ │ │ ├── java.ico │ │ │ ├── jpg.ico │ │ │ ├── jpgxp.ico │ │ │ ├── mdb2000.ico │ │ │ ├── mdb2003.ico │ │ │ ├── mipc.ico │ │ │ ├── mp3.ico │ │ │ ├── msdos.ico │ │ │ ├── msn.ico │ │ │ ├── msn7.ico │ │ │ ├── msn8.ico │ │ │ ├── netmeeting.ico │ │ │ ├── network.ico │ │ │ ├── none.ico │ │ │ ├── notepadxp.ico │ │ │ ├── outlook.ico │ │ │ ├── pack.ico │ │ │ ├── paintxp.ico │ │ │ ├── pdf.ico │ │ │ ├── photoshop.ico │ │ │ ├── playboy.ico │ │ │ ├── plus.ico │ │ │ ├── pps.ico │ │ │ ├── pptxp.ico │ │ │ ├── psd.ico │ │ │ ├── quik.ico │ │ │ ├── rar.ico │ │ │ ├── rarxf.ico │ │ │ ├── rayo.ico │ │ │ ├── recicle.ico │ │ │ ├── script.ico │ │ │ ├── setup.ico │ │ │ ├── setupxp.ico │ │ │ ├── txt.ico │ │ │ ├── txtxp.ico │ │ │ ├── update.ico │ │ │ ├── vbs.ico │ │ │ ├── wav.ico │ │ │ ├── winamp.ico │ │ │ ├── wmp.ico │ │ │ ├── wmplayer.ico │ │ │ ├── word.ico │ │ │ └── xls2003.ico │ │ └── res │ │ │ ├── info.res │ │ │ └── res.ini │ └── winini │ │ ├── 3des.vb │ │ ├── 4cr.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ ├── Settings1.Designer.vb │ │ └── app.manifest │ │ ├── Mymod.vb │ │ ├── ant.vb │ │ ├── obj │ │ └── Debug │ │ │ ├── winini.Form1.resources │ │ │ ├── winini.Resources.resources │ │ │ ├── winini.vbproj.FileListAbsolute.txt │ │ │ ├── winini.vbproj.GenerateResource.Cache │ │ │ └── winini.xml │ │ ├── rp.vb │ │ └── winini.vbproj ├── README.txt └── White Theme.txt ├── [VB.Net] ForcedHacking Crypter Source └── ForcedHacking │ ├── ForcedHacking.rar │ ├── ForcedHacking │ ├── AeonHackThemes.vb │ ├── EoF.vb │ ├── ForceHacking.sln │ ├── ForceHacking.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── HostEdit.Designer.vb │ ├── HostEdit.resx │ ├── HostEdit.vb │ ├── JunkCoder.vb │ ├── ManagementClass.vb │ ├── Miharbi Icon Changer.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ └── app.manifest │ ├── Portable .Net IDE.exe_I7f00_0000.ico │ ├── Resources │ │ └── Force.txt │ ├── UpgradeLog.XML │ ├── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ ├── bin │ │ ├── Debug │ │ │ ├── Polymorphic Crypter.vshost.exe.manifest │ │ │ └── Polymorphic Crypter.xml │ │ └── Release │ │ │ ├── Cloud.ico │ │ │ ├── DeadAuth.xml │ │ │ ├── Merge │ │ │ ├── Devv.Core.Utils.xml │ │ │ └── ILMerge-GUI.exe.config │ │ │ ├── Polymorphic Crypter.xml │ │ │ └── Release.rar │ ├── iCompiler.vb │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.vbproj.GenerateResource.Cache │ │ ├── Enigma.vbproj.FileListAbsolute.txt │ │ ├── Enigma.xml │ │ ├── ForceHacking.vbproj.FileListAbsolute.txt │ │ ├── ForceHacking.vbproj.GenerateResource.Cache │ │ ├── GenerateResource-ResGen.read.1.tlog │ │ ├── GenerateResource-ResGen.write.1.tlog │ │ ├── Polymorphic Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.HostEdit.resources │ │ ├── WindowsApplication1.Resources.resources │ │ ├── WindowsApplication1.vbproj.FileListAbsolute.txt │ │ └── WindowsApplication1.xml │ │ └── Release │ │ ├── CodeDom Crypter.vbproj.FileListAbsolute.txt │ │ ├── CodeDom Crypter.xml │ │ ├── Enigma.vbproj.FileListAbsolute.txt │ │ ├── ForceHacking.vbproj.FileListAbsolute.txt │ │ ├── Polymorphic Crypter.xml │ │ ├── ResGen.read.1.tlog │ │ ├── ResGen.write.1.tlog │ │ ├── WindowsApplication1.Form1.resources │ │ ├── WindowsApplication1.HostEdit.resources │ │ └── WindowsApplication1.Resources.resources │ └── ForcedHacking1 │ └── ForcedHacking │ ├── AeonHackThemes.vb │ └── bin │ ├── Debug │ ├── Polymorphic Crypter.vshost.exe.manifest │ └── Polymorphic Crypter.xml │ └── Release │ ├── Cloud.ico │ ├── DeadAuth.xml │ ├── Merge │ ├── Devv.Core.Utils.xml │ └── ILMerge-GUI.exe.config │ └── Polymorphic Crypter.xml ├── bin └── Debug │ └── HTTPflooder.xml ├── brute forcer (Needs Work) ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── brute forcer.sln └── brute forcer │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── brute forcer.vshost.exe.manifest │ │ └── brute forcer.xml │ ├── brute forcer.vbproj │ └── obj │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── WindowsApplication1.Form1.resources │ ├── WindowsApplication1.Resources.resources │ ├── brute forcer.vbproj.FileListAbsolute.txt │ └── brute forcer.xml ├── carb0n crypter 1.6 ├── Client │ ├── 101.RES │ ├── EXE.RES │ ├── Form1.frm │ ├── Form1.frx │ ├── Form2.frm │ ├── Form2.frx │ ├── Form3.frm │ ├── Form3.frx │ ├── Form4.frx │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Project1.vbp │ ├── Project1.vbw │ ├── UsrSkin.ctl │ ├── UsrSkin.ctx │ ├── chameleonButton.ctl │ ├── logo.JPG │ ├── mGUI.bas │ ├── rancid.ico │ └── skin2 │ │ ├── CloseButton.bmp │ │ ├── MaxButton.bmp │ │ ├── MinButton.bmp │ │ ├── RestoreButton.bmp │ │ ├── cd.bmp │ │ ├── cs.bmp │ │ ├── dreapta.bmp │ │ ├── jd.bmp │ │ ├── jos.bmp │ │ ├── js.bmp │ │ ├── stanga.bmp │ │ └── upp.bmp └── Stub │ ├── Form1.frm │ ├── Form1.frx │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Module5.bas │ ├── Module6.bas │ ├── Project1.vbp │ └── Project1.vbw ├── carb0n crypter 1.7 [fix] ├── Client │ ├── 101.RES │ ├── Form1.frm │ ├── Form1.frx │ ├── Form2.frm │ ├── Form2.frx │ ├── Form3.frm │ ├── Form3.frx │ ├── Form4.frx │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Project1.vbp │ ├── Project1.vbw │ ├── UsrSkin.ctl │ ├── UsrSkin.ctx │ ├── chameleonButton.ctl │ ├── logo.JPG │ ├── mGUI.bas │ ├── rancid.ico │ └── skin2 │ │ ├── CloseButton.bmp │ │ ├── MaxButton.bmp │ │ ├── MinButton.bmp │ │ ├── RestoreButton.bmp │ │ ├── cd.bmp │ │ ├── cs.bmp │ │ ├── dreapta.bmp │ │ ├── jd.bmp │ │ ├── jos.bmp │ │ ├── js.bmp │ │ ├── stanga.bmp │ │ └── upp.bmp └── Stub │ ├── Form1.frm │ ├── Form1.frx │ ├── Module1.bas │ ├── Module2.bas │ ├── Module3.bas │ ├── Module4.bas │ ├── Module5.bas │ ├── Module6.bas │ ├── Project1.vbp │ └── Project1.vbw ├── client ├── @PSC_ReadMe_554_10.txt ├── AssemblyInfo.vb ├── Backup │ ├── AssemblyInfo.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── WindowsApplication12.sln │ └── WindowsApplication12.vbproj ├── Batch.Designer.vb ├── Batch.resx ├── Batch.vb ├── Form1.resx ├── Form1.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── Resources.Designer.vb │ └── Resources.resx ├── Screenshot.jpg ├── UpgradeLog.XML ├── UpgradeLog2.XML ├── WindowsApplication12.sln ├── WindowsApplication12.vbproj ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── bin │ ├── Client.vshost.exe.manifest │ ├── Client.xml │ ├── WindowsApplication12.vshost.exe.manifest │ ├── log.txt │ ├── scrn.bmp │ └── test.bat ├── chat.Designer.vb ├── chat.resx ├── chat.vb ├── debug.Designer.vb ├── debug.resx ├── debug.vb ├── obj │ └── Debug │ │ ├── Client.Batch.resources │ │ ├── Client.Form1.resources │ │ ├── Client.Resources.resources │ │ ├── Client.chat.resources │ │ ├── Client.debug.resources │ │ ├── Client.offlineKeylog.resources │ │ ├── Client.rem_control.resources │ │ ├── Client.xml │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── WindowsApplication12.vbproj.FileListAbsolute.txt ├── offlineKeylog.Designer.vb ├── offlineKeylog.resx ├── offlineKeylog.vb ├── rem_control.Designer.vb ├── rem_control.resx └── rem_control.vb ├── crypter exemple und3ath .net ├── Crypt.sln └── Crypt │ ├── Crypt.csproj │ ├── Cryptoclass.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── Dex.txt │ ├── Rc4.txt │ ├── Rijndael.txt │ ├── Source.txt │ └── key-kgpg-icone-5557.ico │ ├── app.config │ ├── bin │ └── Debug │ │ ├── Crypt.exe.config │ │ ├── Crypt.vshost.exe.config │ │ └── Crypt.vshost.exe.manifest │ └── obj │ └── x86 │ └── Debug │ ├── Crypt.Form1.resources │ ├── Crypt.Properties.Resources.resources │ ├── Crypt.csproj.FileListAbsolute.txt │ ├── GenerateResource-ResGen.read.1.tlog │ ├── GenerateResource-ResGen.write.1.tlog │ ├── GenerateResource.read.1.tlog │ └── GenerateResource.write.1.tlog ├── d0pe_crypter ├── BL.ico ├── Class1.cls ├── EOF.bas ├── Form1.frm ├── Form2.frm ├── MSSCCPRJ.SCC ├── Module1.bas ├── Module2.bas ├── Module3.bas ├── Stub.vbw ├── VB4A.tmp ├── clsBlowFish.cls ├── clsCryptAPI.cls ├── clsDES.cls ├── clsGost.cls ├── clsRC4.cls ├── clsSkipJack.cls ├── clsTEA.cls ├── clsTwoFish.cls ├── crypter.frm ├── crypter.frx ├── crypter.vbp ├── crypter.vbw ├── custom.vbp ├── custom.vbw ├── custom1.vbp ├── custom1.vbw ├── custom2.vbp ├── custom2.vbw ├── custom3.vbp ├── custom4.vbp ├── custom4.vbw ├── custom5.vbp ├── custom5.vbw ├── edited.bas ├── frmEncOptions.frm ├── frmEncOptions.frx ├── mein.bas ├── modCryptstuff.bas ├── modCryptstuff1.bas ├── modIcon.bas ├── rat.gif ├── run.bas └── test.bas ├── dropping a Resource ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── dropping a Resource.sln └── dropping a Resource │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── dropping a Resource.vshost.exe.manifest │ └── dropping a Resource.vbproj ├── embeded sound ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── embeded sound.sln └── embeded sound │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── Resources │ └── Sound.wav │ ├── Sound.wav │ ├── bin │ └── Debug │ │ └── embeded sound.vshost.exe.manifest │ ├── embeded sound.idc │ ├── embeded sound.vbproj │ └── obj │ └── Debug │ └── embeded sound.vbproj.FileListAbsolute.txt ├── googleit ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── googleit.sln └── googleit │ ├── ApplicationEvents.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Icon_1.ICO │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest │ ├── Resources │ ├── 3.jpg │ └── images.jpeg │ ├── bin │ └── Debug │ │ ├── Google It.vshost.exe.manifest │ │ └── Google It.xml │ ├── googleit.vbproj │ └── obj │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── Google It.xml │ ├── Google_It.Form1.resources │ ├── Google_It.Resources.resources │ └── googleit.vbproj.FileListAbsolute.txt ├── iDDoSeR ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── iDDoSeR.sln └── iDDoSeR │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── Background.jpg │ ├── Close.jpg │ └── Min.jpg │ ├── bin │ └── Debug │ │ ├── iDDoSeR.vshost.exe.manifest │ │ └── iDDoSeR.xml │ ├── iDDoSeR.vbproj │ └── obj │ └── Debug │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── iDDoSeR.Form1.resources │ ├── iDDoSeR.Resources.resources │ ├── iDDoSeR.vbproj.FileListAbsolute.txt │ ├── iDDoSeR.vbproj.GenerateResource.Cache │ └── iDDoSeR.xml ├── iRtehLeet File Grabber ├── BrowseTest.sln └── BrowseTest │ ├── BrowseTest.vbproj │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── obj │ ├── Debug │ ├── BrowseTest.Form1.resources │ ├── BrowseTest.Resources.resources │ ├── BrowseTest.vbproj.FileListAbsolute.txt │ ├── BrowseTest.vbproj.GenerateResource.Cache │ └── BrowseTest.xml │ └── Release │ ├── BrowseTest.vbproj.FileListAbsolute.txt │ ├── BrowseTest.vbproj.GenerateResource.Cache │ ├── iRtL.Form1.resources │ ├── iRtL.Resources.resources │ └── iRtehLeet's File Grabber.xml ├── iWelcome ├── VisualStudio.postbuild ├── iWelcome.sln └── iWelcome │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── iWelcome.vbproj ├── label banner ├── label banner.sln └── label banner │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── label banner.vshost.exe.manifest │ └── label banner.vbproj ├── load file into memory ├── load file into memory.sln └── load file into memory │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── load file into memory.vshost.exe.manifest │ └── load file into memory.vbproj ├── obj └── Debug │ ├── HTTPflooder.Form1.resources │ ├── HTTPflooder.Resources.resources │ ├── HTTPflooder.vbproj.FileListAbsolute.txt │ ├── HTTPflooder.vbproj.GenerateResource.Cache │ └── HTTPflooder.xml ├── otFUD0 ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── Form2.Designer.vb ├── Form2.resx ├── Form2.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── RandomStrings.vb ├── Resources │ ├── agt_virus.ico │ ├── otff.gif │ ├── upx.1 │ ├── upx.bmp │ └── upx.doc ├── app.config ├── bin │ ├── Debug │ │ ├── oTFUD.exe.config │ │ ├── oTFUD.vshost.exe.config │ │ ├── oTFUD.vshost.exe.manifest │ │ └── oTFUD.xml │ └── Release │ │ ├── oTFUD.exe.config │ │ └── oTFUD.xml ├── obj │ ├── Debug │ │ ├── oTFUD.xml │ │ ├── otFUD.Form1.resources │ │ ├── otFUD.Form2.resources │ │ ├── otFUD.Resources.resources │ │ ├── otFUD.vbproj.FileListAbsolute.txt │ │ └── otFUD.vbproj.GenerateResource.Cache │ └── Release │ │ ├── oTFUD.xml │ │ ├── otFUD.Form1.resources │ │ ├── otFUD.Form2.resources │ │ ├── otFUD.Resources.resources │ │ ├── otFUD.vbproj.FileListAbsolute.txt │ │ └── otFUD.vbproj.GenerateResource.Cache ├── otFUD.sln └── otFUD.vbproj ├── prjcOne Crypter ├── Controls │ ├── COMDLG32.rar │ └── Codejock.Controls.v12.1.1.rar ├── Form1.frm ├── Form1.frx ├── Module │ ├── extr_icon.bas │ ├── icon.bas │ ├── iconchanger.bas │ ├── mCloneInfo.bas │ └── modGETEOF.bas ├── Project1.vbp ├── Project1.vbw ├── img │ ├── Untitled 1.pfi │ ├── coder.jpg │ ├── coder.pfi │ └── logo.jpg └── prjConeCarrier │ ├── Form1.frm │ ├── MDIForm1.frm │ ├── Module │ ├── Z.bas │ ├── ZzZ.bas │ ├── az.bas │ └── verNamstr.bas │ ├── Project1.RES │ ├── Project1.vbp │ └── Project1.vbw ├── rc4 ├── rc4.sln └── rc4 │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── Form3.Designer.vb │ ├── Form3.resx │ ├── Form3.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── Help.txt │ └── RC4.txt │ └── rc4.vbproj ├── redix crypter ├── Crypter.vbp ├── Crypter.vbw ├── Stub │ ├── Stub.vbp │ ├── Stub.vbw │ ├── modAntiVM.bas │ ├── modFuncs.bas │ ├── modInject.bas │ ├── modMain.bas │ └── modRC4.bas ├── XPLook.res ├── frmFileInfo.frm ├── frmMain.frm ├── frmMain.frx ├── modCommDlg.bas ├── modFileVersion.bas ├── modIcon.bas ├── modMain.bas ├── modOEP.bas ├── modPE.bas ├── modRC4.bas └── modREPE.bas ├── release ├── ico │ ├── access.ico │ ├── avi.ico │ ├── avi98.ico │ ├── bat.ico │ ├── blank.ico │ ├── bmp.ico │ ├── cd.ico │ ├── cmd.ico │ ├── contact.ico │ ├── dll.ico │ ├── dllxp.ico │ ├── doc2000.ico │ ├── doc2003.ico │ ├── dos.ico │ ├── emule.ico │ ├── excel.ico │ ├── file.ico │ ├── folder.ico │ ├── gif.ico │ ├── hd.ico │ ├── help.ico │ ├── html.ico │ ├── ie.ico │ ├── iexpress.ico │ ├── imageready.ico │ ├── inixp.ico │ ├── java.ico │ ├── jpg.ico │ ├── jpgxp.ico │ ├── mdb2000.ico │ ├── mdb2003.ico │ ├── mipc.ico │ ├── mp3.ico │ ├── msdos.ico │ ├── msn.ico │ ├── msn7.ico │ ├── msn8.ico │ ├── netmeeting.ico │ ├── network.ico │ ├── none.ico │ ├── notepadxp.ico │ ├── outlook.ico │ ├── pack.ico │ ├── paintxp.ico │ ├── pdf.ico │ ├── photoshop.ico │ ├── playboy.ico │ ├── plus.ico │ ├── pps.ico │ ├── pptxp.ico │ ├── psd.ico │ ├── quik.ico │ ├── rar.ico │ ├── rarxf.ico │ ├── rayo.ico │ ├── recicle.ico │ ├── script.ico │ ├── setup.ico │ ├── setupxp.ico │ ├── txt.ico │ ├── txtxp.ico │ ├── update.ico │ ├── vbs.ico │ ├── wav.ico │ ├── winamp.ico │ ├── wmp.ico │ ├── wmplayer.ico │ ├── word.ico │ └── xls2003.ico └── res │ ├── info.res │ └── res.ini ├── save settings ├── save settings.sln └── save settings │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── save settings.vbproj ├── stub ├── UpgradeLog.XML ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif ├── stub.sln └── stub │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ ├── Debug │ │ ├── stub.vshost.exe.manifest │ │ └── stub.xml │ └── Release │ │ ├── stub.vshost.exe.manifest │ │ └── stub.xml │ ├── obj │ ├── Debug │ │ ├── stub.Form1.resources │ │ ├── stub.Resources.resources │ │ ├── stub.vbproj.FileListAbsolute.txt │ │ ├── stub.vbproj.GenerateResource.Cache │ │ └── stub.xml │ └── Release │ │ ├── stub.Form1.resources │ │ ├── stub.Resources.resources │ │ ├── stub.vbproj.FileListAbsolute.txt │ │ ├── stub.vbproj.GenerateResource.Cache │ │ └── stub.xml │ └── stub.vbproj ├── triple des ├── triple des.sln └── triple des │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── triple des.vshost.exe.manifest │ ├── cTripleDES .vb │ └── triple des.vbproj ├── udp flood ├── udp flood.sln └── udp flood │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ └── Untitled-2.png │ ├── bin │ └── Debug │ │ ├── udp flood.vshost.exe.manifest │ │ └── udp flood.xml │ ├── obj │ └── Debug │ │ ├── WindowsApplication1.Resources.resources │ │ ├── WindowsApplication1.form1.resources │ │ ├── udp flood.vbproj.FileListAbsolute.txt │ │ ├── udp flood.vbproj.GenerateResource.Cache │ │ └── udp flood.xml │ └── udp flood.vbproj ├── web browser with proxy ├── web browser with proxy.sln └── web browser with proxy │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── bin │ └── Debug │ │ └── web browser with proxy.vshost.exe.manifest │ └── web browser with proxy.vbproj ├── web browser ├── Stop.png ├── back_icon.png ├── buttons-go-icon.png ├── home.png ├── icon-arrow-new-24.gif ├── icon_refresh_captcha.png ├── icons │ ├── arrow_left.png │ ├── arrow_refresh.png │ ├── arrow_right.png │ ├── bullet_go.png │ ├── house.png │ ├── stop.png │ ├── tab.png │ ├── tab_add.png │ └── tab_delete.png ├── web browser.sln └── web browser │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── Form4.Designer.vb │ ├── Form4.resx │ ├── Form4.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Resources │ ├── arrow_left.png │ ├── arrow_refresh.png │ ├── arrow_right.png │ ├── back_icon.png │ ├── bullet_go.png │ ├── buttons-go-icon.png │ ├── home.png │ ├── iHack.png │ ├── icon-arrow-new-24.gif │ ├── icon_refresh_captcha.png │ ├── stop.png │ ├── stop1.png │ ├── tab.png │ ├── tab_add.png │ └── tab_delete.png │ ├── Settings.vb │ ├── app.config │ ├── bin │ ├── Debug │ │ ├── Web Browser.vshost.exe.config │ │ ├── iHack™ Web Browser.exe.config │ │ ├── iHack™ Web Browser.vshost.exe.config │ │ ├── iHack™ Web Browser.vshost.exe.manifest │ │ ├── iHack™ Web Browser.xml │ │ └── web browser.vshost.exe.manifest │ └── Release │ │ ├── iHack™ Web Browser.exe.config │ │ └── iHack™ Web Browser.xml │ ├── obj │ ├── Debug │ │ ├── Web Browser.vbproj.FileListAbsolute.txt │ │ ├── Web Browser.vbproj.GenerateResource.Cache │ │ ├── Web_Browser.Form1.resources │ │ ├── Web_Browser.Form2.resources │ │ ├── Web_Browser.Form4.resources │ │ ├── Web_Browser.Resources.resources │ │ └── iHack™ Web Browser.xml │ └── Release │ │ ├── Web Browser.vbproj.FileListAbsolute.txt │ │ ├── Web Browser.vbproj.GenerateResource.Cache │ │ ├── Web_Browser.Form1.resources │ │ ├── Web_Browser.Form2.resources │ │ ├── Web_Browser.Form4.resources │ │ ├── Web_Browser.Resources.resources │ │ └── iHack™ Web Browser.xml │ ├── people online.ico │ ├── web browser.idc │ └── web browser.vbproj ├── xor encryption ├── xor encryption.sln └── xor encryption │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Form1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── xor encryption.vbproj └── xpinfo ├── xpinfo.sln └── xpinfo ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── bin └── Debug │ └── xpinfo.vshost.exe.manifest └── xpinfo.vbproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/.gitignore -------------------------------------------------------------------------------- /1337 v1.0/1337 v1.0/1337 v1.0.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/1337 v1.0/1337 v1.0.sln -------------------------------------------------------------------------------- /1337 v1.0/1337 v1.0/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/1337 v1.0/logo.gif -------------------------------------------------------------------------------- /1337 v1.0/21ox205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/21ox205.png -------------------------------------------------------------------------------- /1337 v1.0/Ab_blue_matrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/Ab_blue_matrix.jpg -------------------------------------------------------------------------------- /1337 v1.0/DM-Empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/DM-Empty.ico -------------------------------------------------------------------------------- /1337 v1.0/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/Form1.Designer.vb -------------------------------------------------------------------------------- /1337 v1.0/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/Form1.resx -------------------------------------------------------------------------------- /1337 v1.0/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/1337 v1.0/Form1.vb -------------------------------------------------------------------------------- /=8-D src/ETG.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/ETG.CPP -------------------------------------------------------------------------------- /=8-D src/ETG.HPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/ETG.HPP -------------------------------------------------------------------------------- /=8-D src/LDE32.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/LDE32.OBJ -------------------------------------------------------------------------------- /=8-D src/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/aplib.h -------------------------------------------------------------------------------- /=8-D src/aplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/aplib.lib -------------------------------------------------------------------------------- /=8-D src/depack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/depack.h -------------------------------------------------------------------------------- /=8-D src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/disasm.cpp -------------------------------------------------------------------------------- /=8-D src/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/engine.cpp -------------------------------------------------------------------------------- /=8-D src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/main.cpp -------------------------------------------------------------------------------- /=8-D src/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/main.ico -------------------------------------------------------------------------------- /=8-D src/rsrcs.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "main.ico" -------------------------------------------------------------------------------- /=8-D src/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/=8-D src/stub.cpp -------------------------------------------------------------------------------- /A+ Binder/A+ Binder/A+ Binder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/A+ Binder/A+ Binder/A+ Binder.sln -------------------------------------------------------------------------------- /A+ Binder/A+ Stub/A+ Stub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/A+ Binder/A+ Stub/A+ Stub.sln -------------------------------------------------------------------------------- /AES Crypter/AES Crypter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/AES Crypter/AES Crypter.sln -------------------------------------------------------------------------------- /AES Crypter/AES Crypter/Bart.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/AES Crypter/AES Crypter/Bart.ico -------------------------------------------------------------------------------- /AES Crypter/AES Crypter/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/AES Crypter/AES Crypter/Form1.vb -------------------------------------------------------------------------------- /Alarm Clock/Alarm Clock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Alarm Clock.sln -------------------------------------------------------------------------------- /Alarm Clock/Alarm Clock/Alarm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Alarm Clock/Alarm.ico -------------------------------------------------------------------------------- /Alarm Clock/Alarm Clock/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Alarm Clock/Form1.vb -------------------------------------------------------------------------------- /Alarm Clock/Alarm Clock/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alarm Clock/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Form1.Designer.vb -------------------------------------------------------------------------------- /Alarm Clock/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Form1.resx -------------------------------------------------------------------------------- /Alarm Clock/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/Form1.vb -------------------------------------------------------------------------------- /Alarm Clock/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Alarm Clock/UpgradeLog.XML -------------------------------------------------------------------------------- /Antis/Antis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis.sln -------------------------------------------------------------------------------- /Antis/Antis/Antis.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/Antis.vbproj -------------------------------------------------------------------------------- /Antis/Antis/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/Form1.Designer.vb -------------------------------------------------------------------------------- /Antis/Antis/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/Form1.resx -------------------------------------------------------------------------------- /Antis/Antis/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/Form1.vb -------------------------------------------------------------------------------- /Antis/Antis/bin/Debug/Antis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/bin/Debug/Antis.xml -------------------------------------------------------------------------------- /Antis/Antis/obj/Debug/Antis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/Antis/obj/Debug/Antis.xml -------------------------------------------------------------------------------- /Antis/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Antis/UpgradeLog.XML -------------------------------------------------------------------------------- /BIODOX Source-code/BIODOX SC/CLIENT/ActiveX/AnimatedGifCtl.ctx: -------------------------------------------------------------------------------- 1 |  2 | PropPage1 -------------------------------------------------------------------------------- /BIODOX Source-code/BIODOX SC/CLIENT/mdltransfer.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "mdltransfer" 2 | 3 | -------------------------------------------------------------------------------- /BlazedUp Crypter/Backup/BlazedUp Crypter/Stub.vb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BlazedUp Crypter/Backup/BlazedUp Crypter/Stub1.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlazedUp Crypter/Backup/BlazedUp Crypter/Stub2.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlazedUp Crypter/BlazedUp Crypter/Stub.vb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BlazedUp Crypter/BlazedUp Crypter/Stub1.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlazedUp Crypter/BlazedUp Crypter/Stub2.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlazedUp Crypter/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/BlazedUp Crypter/UpgradeLog.XML -------------------------------------------------------------------------------- /Butcher Exer/1266848819198.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/1266848819198.jpeg -------------------------------------------------------------------------------- /Butcher Exer/Client.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Client.vbp -------------------------------------------------------------------------------- /Butcher Exer/Cliente/Cls/RC4.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Cliente/Cls/RC4.cls -------------------------------------------------------------------------------- /Butcher Exer/Cliente/Cls/XOR.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Cliente/Cls/XOR.cls -------------------------------------------------------------------------------- /Butcher Exer/NapokonBrdo.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/NapokonBrdo.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Cls/RC4.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Cls/RC4.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Cls/XOR.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Cls/XOR.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Cls/clsDES.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Cls/clsDES.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Cls/clsGost.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Cls/clsGost.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Cls/clsTEA.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Cls/clsTEA.cls -------------------------------------------------------------------------------- /Butcher Exer/Stub/Módulos/Stb.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/Módulos/Stb.bas -------------------------------------------------------------------------------- /Butcher Exer/Stub/RunPE/FUD2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/Stub/RunPE/FUD2.cls -------------------------------------------------------------------------------- /Butcher Exer/StubX.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/StubX.vbp -------------------------------------------------------------------------------- /Butcher Exer/clsCETVORKA.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsCETVORKA.cls -------------------------------------------------------------------------------- /Butcher Exer/clsKAKORINA.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsKAKORINA.cls -------------------------------------------------------------------------------- /Butcher Exer/clsKURAC.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsKURAC.cls -------------------------------------------------------------------------------- /Butcher Exer/clsPIMPEK.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsPIMPEK.cls -------------------------------------------------------------------------------- /Butcher Exer/clsRODJO.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsRODJO.cls -------------------------------------------------------------------------------- /Butcher Exer/clsZNASONO.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/clsZNASONO.cls -------------------------------------------------------------------------------- /Butcher Exer/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Butcher Exer/logo.jpg -------------------------------------------------------------------------------- /Carb0n Crypter 1.3/Stub/Modules/aa.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "aa" 2 | -------------------------------------------------------------------------------- /Carb0n Crypter 1.3/Stub/Stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Carb0n Crypter 1.3/Stub/Stub.vbp -------------------------------------------------------------------------------- /Chat Spammer/Chat Spammer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Chat Spammer/Chat Spammer.sln -------------------------------------------------------------------------------- /Chat Spammer/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Chat Spammer/UpgradeLog.XML -------------------------------------------------------------------------------- /Check_Internet/Check_Internet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Check_Internet/Check_Internet.sln -------------------------------------------------------------------------------- /Check_Internet/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Check_Internet/UpgradeLog.XML -------------------------------------------------------------------------------- /Christmas Crypter/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Class1.cls -------------------------------------------------------------------------------- /Christmas Crypter/EOF.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/EOF.bas -------------------------------------------------------------------------------- /Christmas Crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Form1.frm -------------------------------------------------------------------------------- /Christmas Crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Form1.frx -------------------------------------------------------------------------------- /Christmas Crypter/Injection.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Injection.bas -------------------------------------------------------------------------------- /Christmas Crypter/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Christmas Crypter/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Project1.vbp -------------------------------------------------------------------------------- /Christmas Crypter/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/Project1.vbw -------------------------------------------------------------------------------- /Christmas Crypter/Splitter.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Splitter" 2 | 3 | -------------------------------------------------------------------------------- /Christmas Crypter/bild.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/bild.jpg -------------------------------------------------------------------------------- /Christmas Crypter/frmstub.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/frmstub.frm -------------------------------------------------------------------------------- /Christmas Crypter/mChangeOEP.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/mChangeOEP.bas -------------------------------------------------------------------------------- /Christmas Crypter/mod_PE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/mod_PE.bas -------------------------------------------------------------------------------- /Christmas Crypter/mod_icon.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/mod_icon.bas -------------------------------------------------------------------------------- /Christmas Crypter/modclient.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/modclient.bas -------------------------------------------------------------------------------- /Christmas Crypter/modstub.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/modstub.bas -------------------------------------------------------------------------------- /Christmas Crypter/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/stub.vbp -------------------------------------------------------------------------------- /Christmas Crypter/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Christmas Crypter/stub.vbw -------------------------------------------------------------------------------- /CodingNation Crypter Source/Stub/Module2.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Module1" 2 | -------------------------------------------------------------------------------- /CodingNation Crypter/CodingNation Crypter Source/Stub/Module2.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Module1" 2 | -------------------------------------------------------------------------------- /Crypter Moon/Backup/MyCrypter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/Backup/MyCrypter.sln -------------------------------------------------------------------------------- /Crypter Moon/Backup/winini/4cr.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/Backup/winini/4cr.vb -------------------------------------------------------------------------------- /Crypter Moon/Backup/winini/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crypter Moon/Backup/winini/ant.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/Backup/winini/ant.vb -------------------------------------------------------------------------------- /Crypter Moon/Backup/winini/rp.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/Backup/winini/rp.vb -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter.sln -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter/31.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter/31.ico -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter/3des.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter/3des.vb -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter/Form1.resx -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter/Form1.vb -------------------------------------------------------------------------------- /Crypter Moon/MyCrypter/rc4.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/MyCrypter/rc4.vb -------------------------------------------------------------------------------- /Crypter Moon/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/UpgradeLog.XML -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/31.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/31.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/access.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/access.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/avi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/avi.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/avi98.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/avi98.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/bat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/bat.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/blank.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/blank.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/bmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/bmp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/cd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/cd.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/cmd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/cmd.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/contact.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/contact.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/dll.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/dllxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/dllxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/doc2000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/doc2000.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/doc2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/doc2003.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/dos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/dos.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/emule.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/emule.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/excel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/excel.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/file.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/folder.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/gif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/gif.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/hd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/hd.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/help.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/html.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/ie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/ie.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/iexpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/iexpress.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/inixp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/inixp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/java.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/java.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/jpg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/jpg.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/jpgxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/jpgxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/mdb2000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/mdb2000.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/mdb2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/mdb2003.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/mipc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/mipc.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/mp3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/mp3.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/msdos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/msdos.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/msn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/msn.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/msn7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/msn7.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/msn8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/msn8.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/network.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/none.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/none.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/outlook.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/outlook.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/pack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/pack.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/paintxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/paintxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/pdf.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/playboy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/playboy.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/plus.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/pps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/pps.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/pptxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/pptxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/psd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/psd.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/quik.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/quik.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/rar.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/rarxf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/rarxf.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/rayo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/rayo.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/recicle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/recicle.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/script.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/script.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/setup.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/setupxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/setupxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/txt.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/txtxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/txtxp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/update.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/vbs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/vbs.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/wav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/wav.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/winamp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/winamp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/wmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/wmp.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/wmplayer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/wmplayer.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/word.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/ico/xls2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/ico/xls2003.ico -------------------------------------------------------------------------------- /Crypter Moon/rlz/res/info.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/res/info.res -------------------------------------------------------------------------------- /Crypter Moon/rlz/res/res.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/rlz/res/res.ini -------------------------------------------------------------------------------- /Crypter Moon/winini/3des.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/3des.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/4cr.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/4cr.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/Form1.resx -------------------------------------------------------------------------------- /Crypter Moon/winini/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/Form1.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crypter Moon/winini/Mymod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/Mymod.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/ant.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/ant.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/rp.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/rp.vb -------------------------------------------------------------------------------- /Crypter Moon/winini/winini.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter Moon/winini/winini.vbproj -------------------------------------------------------------------------------- /Crypter very/juntador/Dibujo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Dibujo.bmp -------------------------------------------------------------------------------- /Crypter very/juntador/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Form1.frm -------------------------------------------------------------------------------- /Crypter very/juntador/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Form1.frx -------------------------------------------------------------------------------- /Crypter very/juntador/Form2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Form2.frm -------------------------------------------------------------------------------- /Crypter very/juntador/Form2.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Form2.frx -------------------------------------------------------------------------------- /Crypter very/juntador/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module1.bas -------------------------------------------------------------------------------- /Crypter very/juntador/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module2.bas -------------------------------------------------------------------------------- /Crypter very/juntador/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module3.bas -------------------------------------------------------------------------------- /Crypter very/juntador/Module4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module4.bas -------------------------------------------------------------------------------- /Crypter very/juntador/Module5.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module5.bas -------------------------------------------------------------------------------- /Crypter very/juntador/Module6.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/juntador/Module6.bas -------------------------------------------------------------------------------- /Crypter very/stub/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Form1.frm -------------------------------------------------------------------------------- /Crypter very/stub/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Crypter very/stub/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Module1.bas -------------------------------------------------------------------------------- /Crypter very/stub/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Module2.bas -------------------------------------------------------------------------------- /Crypter very/stub/Module2d.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Module2d.bas -------------------------------------------------------------------------------- /Crypter very/stub/Proyecto1.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Proyecto1.csi -------------------------------------------------------------------------------- /Crypter very/stub/Proyecto1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Proyecto1.vbp -------------------------------------------------------------------------------- /Crypter very/stub/Proyecto1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/Proyecto1.vbw -------------------------------------------------------------------------------- /Crypter very/stub/mMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub/mMain.bas -------------------------------------------------------------------------------- /Crypter very/stub2/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Form1.frm -------------------------------------------------------------------------------- /Crypter very/stub2/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Crypter very/stub2/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Module1.bas -------------------------------------------------------------------------------- /Crypter very/stub2/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Module2.bas -------------------------------------------------------------------------------- /Crypter very/stub2/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Module3.bas -------------------------------------------------------------------------------- /Crypter very/stub2/Proyecto1.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Proyecto1.csi -------------------------------------------------------------------------------- /Crypter very/stub2/Proyecto1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Proyecto1.vbp -------------------------------------------------------------------------------- /Crypter very/stub2/Proyecto1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/Proyecto1.vbw -------------------------------------------------------------------------------- /Crypter very/stub2/mMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub2/mMain.bas -------------------------------------------------------------------------------- /Crypter very/stub3/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Form1.frm -------------------------------------------------------------------------------- /Crypter very/stub3/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Crypter very/stub3/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Module1.bas -------------------------------------------------------------------------------- /Crypter very/stub3/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Module2.bas -------------------------------------------------------------------------------- /Crypter very/stub3/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Module3.bas -------------------------------------------------------------------------------- /Crypter very/stub3/Proyecto1.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Proyecto1.csi -------------------------------------------------------------------------------- /Crypter very/stub3/Proyecto1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Proyecto1.vbp -------------------------------------------------------------------------------- /Crypter very/stub3/Proyecto1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/Proyecto1.vbw -------------------------------------------------------------------------------- /Crypter very/stub3/mMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypter very/stub3/mMain.bas -------------------------------------------------------------------------------- /Crypteur RunTime/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypteur RunTime/Form1.resx -------------------------------------------------------------------------------- /Crypteur RunTime/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypteur RunTime/Form1.vb -------------------------------------------------------------------------------- /Crypteur RunTime/Hacktivisme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Crypteur RunTime/Hacktivisme.sln -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1.sln -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Class0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Class0.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Enum0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Enum0.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Enum3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Enum3.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Form1.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Form1.resx -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Gclass0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Gclass0.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptex1 (C#)/Cryptex1/Program.cs -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Resources/Batch.txt: -------------------------------------------------------------------------------- 1 | ri.WriteLine("[COMMANDBATCH]"); -------------------------------------------------------------------------------- /Cryptex1 (C#)/Cryptex1/Resources/Delay.txt: -------------------------------------------------------------------------------- 1 | Thread.Sleep([SLEEPVALUE]); -------------------------------------------------------------------------------- /Cryptex1 (C#)/Read me.txt: -------------------------------------------------------------------------------- 1 | hacked by ekin0x -------------------------------------------------------------------------------- /Cryptic3source-Crypter/Cryptic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptic3source-Crypter/Cryptic.rc -------------------------------------------------------------------------------- /Cryptic3source-Crypter/exe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptic3source-Crypter/exe.ico -------------------------------------------------------------------------------- /Cryptic3source-Crypter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptic3source-Crypter/main.cpp -------------------------------------------------------------------------------- /Cryptic3source-Crypter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptic3source-Crypter/resource.h -------------------------------------------------------------------------------- /Cryptic3source-Crypter/skull.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cryptic3source-Crypter/skull.ico -------------------------------------------------------------------------------- /Cyber Spammer/Cyber Spammer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Cyber Spammer/Cyber Spammer.sln -------------------------------------------------------------------------------- /DW-Crypter/DW-Crypter/Client.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DW-Crypter/DW-Crypter/Client.vbp -------------------------------------------------------------------------------- /DW-Crypter/DW-Crypter/Client.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DW-Crypter/DW-Crypter/Client.vbw -------------------------------------------------------------------------------- /DW-Crypter/DW-Crypter/StubX.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DW-Crypter/DW-Crypter/StubX.vbp -------------------------------------------------------------------------------- /DW-Crypter/DW-Crypter/StubX.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DW-Crypter/DW-Crypter/StubX.vbw -------------------------------------------------------------------------------- /Dark Downloader/DDStub/DDStub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dark Downloader/DDStub/DDStub.sln -------------------------------------------------------------------------------- /Deface Page Gen/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Deface Page Gen/UpgradeLog.XML -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DivineProtector/GUI/GUI/GUI.sdf -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DivineProtector/GUI/GUI/GUI.sln -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DivineProtector/GUI/GUI/GUI.suo -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Debug/GUI.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Debug/RSAENH.DLL.bi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Debug/TZRES.DLL.bi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Release/GUI.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Release/RSAENH.DLL.bi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/Release/TZRES.DLL.bi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DivineProtector/GUI/GUI/GUI/USG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DivineProtector/GUI/GUI/GUI/USG.h -------------------------------------------------------------------------------- /DivineProtector/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/DivineProtector/stub.cpp -------------------------------------------------------------------------------- /Dr.True Crypter/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Class1.cls -------------------------------------------------------------------------------- /Dr.True Crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Form1.frm -------------------------------------------------------------------------------- /Dr.True Crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Form1.frx -------------------------------------------------------------------------------- /Dr.True Crypter/Injection.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Injection.bas -------------------------------------------------------------------------------- /Dr.True Crypter/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Dr.True Crypter/Main_Splitter.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Main_Splitter.bas -------------------------------------------------------------------------------- /Dr.True Crypter/Project1.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Project1.RES -------------------------------------------------------------------------------- /Dr.True Crypter/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Project1.vbp -------------------------------------------------------------------------------- /Dr.True Crypter/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/Project1.vbw -------------------------------------------------------------------------------- /Dr.True Crypter/drtrucrypt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/drtrucrypt.gif -------------------------------------------------------------------------------- /Dr.True Crypter/frmstub.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/frmstub.frm -------------------------------------------------------------------------------- /Dr.True Crypter/mChangeOEP.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/mChangeOEP.bas -------------------------------------------------------------------------------- /Dr.True Crypter/mod_icon.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/mod_icon.bas -------------------------------------------------------------------------------- /Dr.True Crypter/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/stub.vbp -------------------------------------------------------------------------------- /Dr.True Crypter/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Dr.True Crypter/stub.vbw -------------------------------------------------------------------------------- /Easy Screen Capture/ss.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Easy Screen Capture/ss.sln -------------------------------------------------------------------------------- /Easy Screen Capture/ss/ApplicationEvents.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Easy Screen Capture/ss/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Easy Screen Capture/ss/Form1.resx -------------------------------------------------------------------------------- /Easy Screen Capture/ss/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Easy Screen Capture/ss/Form1.vb -------------------------------------------------------------------------------- /Easy Screen Capture/ss/hunter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Easy Screen Capture/ss/hunter.ico -------------------------------------------------------------------------------- /Easy Screen Capture/ss/ss.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Easy Screen Capture/ss/ss.vbproj -------------------------------------------------------------------------------- /Email Sending/Email Sending.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Email Sending/Email Sending.sln -------------------------------------------------------------------------------- /Email smoker/Email smoker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Email smoker/Email smoker.sln -------------------------------------------------------------------------------- /Email smoker/Email smoker/22.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Email smoker/Email smoker/22.ico -------------------------------------------------------------------------------- /Email smoker/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Email smoker/UpgradeLog.XML -------------------------------------------------------------------------------- /Error Creator/Error Creator/VisualStudio.postbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fake Error/Screen shot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Fake Error/Screen shot.PNG -------------------------------------------------------------------------------- /FileCloner/FileCloner.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FileCloner/FileCloner.vbproj -------------------------------------------------------------------------------- /FileCloner/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FileCloner/Form1.Designer.vb -------------------------------------------------------------------------------- /FileCloner/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FileCloner/Form1.resx -------------------------------------------------------------------------------- /FileCloner/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FileCloner/Form1.vb -------------------------------------------------------------------------------- /Filler up 2.5/testmail.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Filler up 2.5/testmail.sln -------------------------------------------------------------------------------- /Filler up 2.5/testmail/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Filler up 2.5/testmail/Form1.resx -------------------------------------------------------------------------------- /Filler up 2.5/testmail/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Filler up 2.5/testmail/Form1.vb -------------------------------------------------------------------------------- /FireCrypter/Crypter/CRijndael.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/CRijndael.cls -------------------------------------------------------------------------------- /FireCrypter/Crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/Form1.frm -------------------------------------------------------------------------------- /FireCrypter/Crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/Form1.frx -------------------------------------------------------------------------------- /FireCrypter/Crypter/PERebuild.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/PERebuild.bas -------------------------------------------------------------------------------- /FireCrypter/Crypter/Projekt1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/Projekt1.vbp -------------------------------------------------------------------------------- /FireCrypter/Crypter/Projekt1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/Projekt1.vbw -------------------------------------------------------------------------------- /FireCrypter/Crypter/SHA.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Crypter/SHA.bas -------------------------------------------------------------------------------- /FireCrypter/Stub/CRijndael.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/CRijndael.cls -------------------------------------------------------------------------------- /FireCrypter/Stub/Main.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/Main.bas -------------------------------------------------------------------------------- /FireCrypter/Stub/PE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/PE.bas -------------------------------------------------------------------------------- /FireCrypter/Stub/SHA.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/SHA.bas -------------------------------------------------------------------------------- /FireCrypter/Stub/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/stub.vbp -------------------------------------------------------------------------------- /FireCrypter/Stub/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FireCrypter/Stub/stub.vbw -------------------------------------------------------------------------------- /Flyby Crypter 2/Crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Crypter/Form1.frm -------------------------------------------------------------------------------- /Flyby Crypter 2/Crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Crypter/Form1.frx -------------------------------------------------------------------------------- /Flyby Crypter 2/Crypter/Form1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Crypter/Form1.log -------------------------------------------------------------------------------- /Flyby Crypter 2/Crypter/Rc4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Crypter/Rc4.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Crypter/VBFF5.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Crypter/VBFF5.tmp -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Anti.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Anti.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Module1.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Projekt1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Projekt1.vbp -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Projekt1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Projekt1.vbw -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Rc4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Rc4.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/Stub.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/Stub.pdb -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/mContext.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/mContext.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/mProcess.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/mProcess.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/mRun.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/mRun.bas -------------------------------------------------------------------------------- /Flyby Crypter 2/Stub/mRunPE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Flyby Crypter 2/Stub/mRunPE.bas -------------------------------------------------------------------------------- /FuKrypt_4/Client/DOCTORKANE-PC.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/abort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/abort.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/doc.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/floppy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/floppy.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/folder.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/image.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/info.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/key.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/lock.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/main.ico -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/quest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/quest.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Icons/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Icons/user.gif -------------------------------------------------------------------------------- /FuKrypt_4/Client/Module/mEOF.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Module/mEOF.bas -------------------------------------------------------------------------------- /FuKrypt_4/Client/Module/mMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Module/mMain.bas -------------------------------------------------------------------------------- /FuKrypt_4/Client/Module/mXOR.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Client/Module/mXOR.bas -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/BmrhcSKwQ.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/BmrhcSKwQ.bas -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/IJWFBVnZ.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/IJWFBVnZ.cls -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/K1kJpJaG.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/K1kJpJaG.vbp -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/K1kJpJaG.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/K1kJpJaG.vbw -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/clsDES.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/clsDES.cls -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/clsTEA.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/clsTEA.cls -------------------------------------------------------------------------------- /FuKrypt_4/Ladegerät/h2947th.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/FuKrypt_4/Ladegerät/h2947th.bas -------------------------------------------------------------------------------- /GMail/Backup/FormGmail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/Backup/FormGmail.resx -------------------------------------------------------------------------------- /GMail/Backup/FormGmail.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/Backup/FormGmail.vb -------------------------------------------------------------------------------- /GMail/Backup/GMail.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/Backup/GMail.sln -------------------------------------------------------------------------------- /GMail/Backup/GMail.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/Backup/GMail.vbproj -------------------------------------------------------------------------------- /GMail/FormGmail.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/FormGmail.Designer.vb -------------------------------------------------------------------------------- /GMail/FormGmail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/FormGmail.resx -------------------------------------------------------------------------------- /GMail/FormGmail.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/FormGmail.vb -------------------------------------------------------------------------------- /GMail/GMail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/GMail.jpg -------------------------------------------------------------------------------- /GMail/GMail.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/GMail.sln -------------------------------------------------------------------------------- /GMail/GMail.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/GMail.vbproj -------------------------------------------------------------------------------- /GMail/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /GMail/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/My Project/Resources.resx -------------------------------------------------------------------------------- /GMail/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/UpgradeLog.XML -------------------------------------------------------------------------------- /GMail/bin/Debug/GMail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/bin/Debug/GMail.xml -------------------------------------------------------------------------------- /GMail/obj/Debug/GMail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GMail/obj/Debug/GMail.xml -------------------------------------------------------------------------------- /GioCrypter/EOF_Functions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/EOF_Functions.bas -------------------------------------------------------------------------------- /GioCrypter/GioCrypter.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/GioCrypter.vbp -------------------------------------------------------------------------------- /GioCrypter/GioCrypter.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/GioCrypter.vbw -------------------------------------------------------------------------------- /GioCrypter/IconChanger.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/IconChanger.bas -------------------------------------------------------------------------------- /GioCrypter/IconPE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/IconPE.bas -------------------------------------------------------------------------------- /GioCrypter/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /GioCrypter/Source/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /GioCrypter/Source/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/Project1.vbp -------------------------------------------------------------------------------- /GioCrypter/Source/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/Project1.vbw -------------------------------------------------------------------------------- /GioCrypter/Source/Stub.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/Stub.csi -------------------------------------------------------------------------------- /GioCrypter/Source/cPEL.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/cPEL.cls -------------------------------------------------------------------------------- /GioCrypter/Source/mMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/mMain.bas -------------------------------------------------------------------------------- /GioCrypter/Source/mPEL.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/mPEL.bas -------------------------------------------------------------------------------- /GioCrypter/Source/modCrypt.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Source/modCrypt.bas -------------------------------------------------------------------------------- /GioCrypter/Untitled-2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/Untitled-2.ico -------------------------------------------------------------------------------- /GioCrypter/[FUD].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/[FUD].txt -------------------------------------------------------------------------------- /GioCrypter/frmMain.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/frmMain.frm -------------------------------------------------------------------------------- /GioCrypter/frmMain.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/frmMain.frx -------------------------------------------------------------------------------- /GioCrypter/gio.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/gio.JPG -------------------------------------------------------------------------------- /GioCrypter/mPE_Realign.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/mPE_Realign.bas -------------------------------------------------------------------------------- /GioCrypter/modCrypt.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/GioCrypter/modCrypt.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Class1.cls -------------------------------------------------------------------------------- /HackHound Crypter V.3/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Form1.frm -------------------------------------------------------------------------------- /HackHound Crypter V.3/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Form1.frx -------------------------------------------------------------------------------- /HackHound Crypter V.3/Formhh1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Formhh1.frm -------------------------------------------------------------------------------- /HackHound Crypter V.3/Formhh1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Formhh1.frx -------------------------------------------------------------------------------- /HackHound Crypter V.3/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Module2.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Module3.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/Module4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Module4.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/Module5.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Module5.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/Module6.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/Module6.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/modstub.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/modstub.bas -------------------------------------------------------------------------------- /HackHound Crypter V.3/rancid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/rancid.ico -------------------------------------------------------------------------------- /HackHound Crypter V.3/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/stub.vbp -------------------------------------------------------------------------------- /HackHound Crypter V.3/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.3/stub.vbw -------------------------------------------------------------------------------- /HackHound Crypter V.4/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Class1.cls -------------------------------------------------------------------------------- /HackHound Crypter V.4/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Form1.frm -------------------------------------------------------------------------------- /HackHound Crypter V.4/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Form1.frx -------------------------------------------------------------------------------- /HackHound Crypter V.4/Form1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Form1.log -------------------------------------------------------------------------------- /HackHound Crypter V.4/Formhh1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Formhh1.frm -------------------------------------------------------------------------------- /HackHound Crypter V.4/Formhh1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Formhh1.frx -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module2.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module3.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module4.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module5.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module5.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module6.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module6.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module7.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module7.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/Module9.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/Module9.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/modstub.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/modstub.bas -------------------------------------------------------------------------------- /HackHound Crypter V.4/rancid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/rancid.ico -------------------------------------------------------------------------------- /HackHound Crypter V.4/zutz.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/zutz.vbp -------------------------------------------------------------------------------- /HackHound Crypter V.4/zutz.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/HackHound Crypter V.4/zutz.vbw -------------------------------------------------------------------------------- /Hash Cracker/Hash Cracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Hash Cracker/Hash Cracker.sln -------------------------------------------------------------------------------- /Icon Changer + Preview/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer + Preview/Form1.resx -------------------------------------------------------------------------------- /Icon Changer + Preview/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer + Preview/Form1.vb -------------------------------------------------------------------------------- /Icon Changer + Preview/win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer + Preview/win.ico -------------------------------------------------------------------------------- /Icon Changer/Bart.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Bart.ico -------------------------------------------------------------------------------- /Icon Changer/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form1.Designer.vb -------------------------------------------------------------------------------- /Icon Changer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form1.resx -------------------------------------------------------------------------------- /Icon Changer/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form1.vb -------------------------------------------------------------------------------- /Icon Changer/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form2.Designer.vb -------------------------------------------------------------------------------- /Icon Changer/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form2.resx -------------------------------------------------------------------------------- /Icon Changer/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Form2.vb -------------------------------------------------------------------------------- /Icon Changer/Icon Changer.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Icon Changer.vbproj -------------------------------------------------------------------------------- /Icon Changer/Resources/Djack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/Djack -------------------------------------------------------------------------------- /Icon Changer/Resources/GTA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/GTA -------------------------------------------------------------------------------- /Icon Changer/Resources/Joystick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/Joystick -------------------------------------------------------------------------------- /Icon Changer/Resources/ball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/ball -------------------------------------------------------------------------------- /Icon Changer/Resources/court: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/court -------------------------------------------------------------------------------- /Icon Changer/Resources/earth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/earth -------------------------------------------------------------------------------- /Icon Changer/Resources/eye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/eye -------------------------------------------------------------------------------- /Icon Changer/Resources/head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/head -------------------------------------------------------------------------------- /Icon Changer/Resources/hearts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/hearts -------------------------------------------------------------------------------- /Icon Changer/Resources/inano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/inano -------------------------------------------------------------------------------- /Icon Changer/Resources/ishuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/ishuffle -------------------------------------------------------------------------------- /Icon Changer/Resources/jack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/jack -------------------------------------------------------------------------------- /Icon Changer/Resources/macblack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/macblack -------------------------------------------------------------------------------- /Icon Changer/Resources/macwhite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/macwhite -------------------------------------------------------------------------------- /Icon Changer/Resources/nbalogo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/nbalogo -------------------------------------------------------------------------------- /Icon Changer/Resources/pumpkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/pumpkin -------------------------------------------------------------------------------- /Icon Changer/Resources/rose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/rose -------------------------------------------------------------------------------- /Icon Changer/Resources/saturn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/saturn -------------------------------------------------------------------------------- /Icon Changer/Resources/scream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/scream -------------------------------------------------------------------------------- /Icon Changer/Resources/spiderman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/spiderman -------------------------------------------------------------------------------- /Icon Changer/Resources/sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/sun -------------------------------------------------------------------------------- /Icon Changer/Resources/superman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/superman -------------------------------------------------------------------------------- /Icon Changer/Resources/terrorist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Icon Changer/Resources/terrorist -------------------------------------------------------------------------------- /Incrypter Private Source/Crypter/mClone.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "mClone" 2 | -------------------------------------------------------------------------------- /Incrypter Private Source/Crypter/sad.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "sad" 2 | 3 | -------------------------------------------------------------------------------- /Incrypter Private Source/Neue Unique stubbb/fyrfqweue.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "j75Sdj3as3" 2 | -------------------------------------------------------------------------------- /Indetectables Crypter/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/Class1.cls -------------------------------------------------------------------------------- /Indetectables Crypter/Client.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/Client.vbp -------------------------------------------------------------------------------- /Indetectables Crypter/Client.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/Client.vbw -------------------------------------------------------------------------------- /Indetectables Crypter/FUD2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/FUD2.cls -------------------------------------------------------------------------------- /Indetectables Crypter/StubX.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/StubX.vbp -------------------------------------------------------------------------------- /Indetectables Crypter/StubX.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Indetectables Crypter/StubX.vbw -------------------------------------------------------------------------------- /Injection/Stub/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Injection/Stub/Form1.resx -------------------------------------------------------------------------------- /Injection/Stub/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Injection/Stub/Form1.vb -------------------------------------------------------------------------------- /Injection/Stub/stub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Injection/Stub/stub.sln -------------------------------------------------------------------------------- /Injection/Stub/stub.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Injection/Stub/stub.vbproj -------------------------------------------------------------------------------- /MSN Freezer/MSN Freezer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/MSN Freezer/MSN Freezer.sln -------------------------------------------------------------------------------- /MSN Freezer/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/MSN Freezer/UpgradeLog.XML -------------------------------------------------------------------------------- /Mini Email Bomber/123.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mini Email Bomber/123.sln -------------------------------------------------------------------------------- /Mini Email Bomber/123/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mini Email Bomber/123/Form1.vb -------------------------------------------------------------------------------- /Mp3 Search/Mp3 Search.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mp3 Search/Mp3 Search.sln -------------------------------------------------------------------------------- /Mp3 Search/Mp3 Search/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mp3 Search/Mp3 Search/Form1.vb -------------------------------------------------------------------------------- /Mp3Player/Mp3Player.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mp3Player/Mp3Player.sln -------------------------------------------------------------------------------- /Mp3Player/Mp3Player/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mp3Player/Mp3Player/Form1.resx -------------------------------------------------------------------------------- /Mp3Player/Mp3Player/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Mp3Player/Mp3Player/Form1.vb -------------------------------------------------------------------------------- /Msn Style Alert/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Msn Style Alert/UpgradeLog.XML -------------------------------------------------------------------------------- /My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/My Project/Application.myapp -------------------------------------------------------------------------------- /My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/My Project/Resources.resx -------------------------------------------------------------------------------- /My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/My Project/Settings.settings -------------------------------------------------------------------------------- /NOTEPAD/NOTEPAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NOTEPAD/NOTEPAD.sln -------------------------------------------------------------------------------- /NOTEPAD/NOTEPAD/FRM_Notepad.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NOTEPAD/NOTEPAD/FRM_Notepad.vb -------------------------------------------------------------------------------- /NOTEPAD/NOTEPAD/NOTEPAD.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NOTEPAD/NOTEPAD/NOTEPAD.vbproj -------------------------------------------------------------------------------- /NT2 crypter/Client/Group1.vbg: -------------------------------------------------------------------------------- 1 | VBGROUP 5.0 2 | StartupProject=prjNTCrypter.vbp 3 | -------------------------------------------------------------------------------- /NT2 crypter/Client/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/Module1.bas -------------------------------------------------------------------------------- /NT2 crypter/Client/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/Module2.bas -------------------------------------------------------------------------------- /NT2 crypter/Client/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/Module3.bas -------------------------------------------------------------------------------- /NT2 crypter/Client/carb0n.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/carb0n.ico -------------------------------------------------------------------------------- /NT2 crypter/Client/frmMain.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/frmMain.frm -------------------------------------------------------------------------------- /NT2 crypter/Client/frmMain.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Client/frmMain.frx -------------------------------------------------------------------------------- /NT2 crypter/Stub/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Stub/Module2.bas -------------------------------------------------------------------------------- /NT2 crypter/Stub/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Stub/Module3.bas -------------------------------------------------------------------------------- /NT2 crypter/Stub/Module4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Stub/Module4.bas -------------------------------------------------------------------------------- /NT2 crypter/Stub/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Stub/Project1.vbp -------------------------------------------------------------------------------- /NT2 crypter/Stub/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/NT2 crypter/Stub/Project1.vbw -------------------------------------------------------------------------------- /Niller Crypter/Modulos/ByeByeAvira.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "ByeByeAvira" 2 | -------------------------------------------------------------------------------- /Niller Crypter/Niller.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Niller.frm -------------------------------------------------------------------------------- /Niller Crypter/Niller.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Niller.frx -------------------------------------------------------------------------------- /Niller Crypter/Opciones.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Opciones.frm -------------------------------------------------------------------------------- /Niller Crypter/Opciones.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Opciones.frx -------------------------------------------------------------------------------- /Niller Crypter/Skin.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Skin.DLL -------------------------------------------------------------------------------- /Niller Crypter/Stub/Stub.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Stub/Stub.frm -------------------------------------------------------------------------------- /Niller Crypter/Stub/Stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Stub/Stub.vbp -------------------------------------------------------------------------------- /Niller Crypter/Stub/Stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Stub/Stub.vbw -------------------------------------------------------------------------------- /Niller Crypter/Stub/Timer.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Stub/Timer.frm -------------------------------------------------------------------------------- /Niller Crypter/Stub/nMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/Stub/nMain.bas -------------------------------------------------------------------------------- /Niller Crypter/fondo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/fondo.jpg -------------------------------------------------------------------------------- /Niller Crypter/fondo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Niller Crypter/fondo.psd -------------------------------------------------------------------------------- /Nuke Bomber v1/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Nuke Bomber v1/UpgradeLog.XML -------------------------------------------------------------------------------- /OhShin Crypter/OhShin/Stub/Module/Antis.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Antis" 2 | -------------------------------------------------------------------------------- /Open crypter/DLG.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/DLG.bas -------------------------------------------------------------------------------- /Open crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Form1.frm -------------------------------------------------------------------------------- /Open crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Form1.frx -------------------------------------------------------------------------------- /Open crypter/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Open crypter/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Module2.bas -------------------------------------------------------------------------------- /Open crypter/Projekt1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Projekt1.vbp -------------------------------------------------------------------------------- /Open crypter/Projekt1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Projekt1.vbw -------------------------------------------------------------------------------- /Open crypter/Stub/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Module1.bas -------------------------------------------------------------------------------- /Open crypter/Stub/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Module2.bas -------------------------------------------------------------------------------- /Open crypter/Stub/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Module3.bas -------------------------------------------------------------------------------- /Open crypter/Stub/Module4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Module4.bas -------------------------------------------------------------------------------- /Open crypter/Stub/Projekt1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Projekt1.vbp -------------------------------------------------------------------------------- /Open crypter/Stub/Projekt1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/Stub/Projekt1.vbw -------------------------------------------------------------------------------- /Open crypter/XP-Butons.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Open crypter/XP-Butons.ctl -------------------------------------------------------------------------------- /Ping/Ping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping.sln -------------------------------------------------------------------------------- /Ping/Ping/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/Form1.Designer.vb -------------------------------------------------------------------------------- /Ping/Ping/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/Form1.resx -------------------------------------------------------------------------------- /Ping/Ping/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/Form1.vb -------------------------------------------------------------------------------- /Ping/Ping/Icon_190.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/Icon_190.ICO -------------------------------------------------------------------------------- /Ping/Ping/Ping.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/Ping.vbproj -------------------------------------------------------------------------------- /Ping/Ping/bin/Debug/Ping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/bin/Debug/Ping.xml -------------------------------------------------------------------------------- /Ping/Ping/obj/Debug/Ping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Ping/Ping/obj/Debug/Ping.xml -------------------------------------------------------------------------------- /Pump It Up/Pump It Up.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pump It Up/Pump It Up.sln -------------------------------------------------------------------------------- /Pump It Up/Pump It Up/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pump It Up/Pump It Up/Form1.vb -------------------------------------------------------------------------------- /Pumper/Pumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pumper/Pumper.sln -------------------------------------------------------------------------------- /Pumper/Pumper/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pumper/Pumper/Form1.resx -------------------------------------------------------------------------------- /Pumper/Pumper/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pumper/Pumper/Form1.vb -------------------------------------------------------------------------------- /Pumper/Pumper/Pumper.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Pumper/Pumper/Pumper.vbproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/README.md -------------------------------------------------------------------------------- /SCREEN SHOT/SCREEN SHOT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/SCREEN SHOT/SCREEN SHOT.sln -------------------------------------------------------------------------------- /ScantimeCrypter/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/ScantimeCrypter/Module1.bas -------------------------------------------------------------------------------- /ScantimeCrypter/frmMain.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/ScantimeCrypter/frmMain.frm -------------------------------------------------------------------------------- /ScantimeCrypter/frmMain.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/ScantimeCrypter/frmMain.frx -------------------------------------------------------------------------------- /ScantimeCrypter/stub/Stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/ScantimeCrypter/stub/Stub.vbp -------------------------------------------------------------------------------- /ScantimeCrypter/stub/Stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/ScantimeCrypter/stub/Stub.vbw -------------------------------------------------------------------------------- /Search/Search.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Search/Search.sln -------------------------------------------------------------------------------- /Search/Search/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Search/Search/Form1.resx -------------------------------------------------------------------------------- /Search/Search/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Search/Search/Form1.vb -------------------------------------------------------------------------------- /Search/Search/Icon_133.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Search/Search/Icon_133.ICO -------------------------------------------------------------------------------- /Search/Search/Search.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Search/Search/Search.vbproj -------------------------------------------------------------------------------- /Server/@PSC_ReadMe_554_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/@PSC_ReadMe_554_10.txt -------------------------------------------------------------------------------- /Server/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/AssemblyInfo.vb -------------------------------------------------------------------------------- /Server/BSOD.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/BSOD.Designer.vb -------------------------------------------------------------------------------- /Server/BSOD.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/BSOD.resx -------------------------------------------------------------------------------- /Server/BSOD.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/BSOD.vb -------------------------------------------------------------------------------- /Server/Backup/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Backup/AssemblyInfo.vb -------------------------------------------------------------------------------- /Server/Backup/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Backup/Form1.resx -------------------------------------------------------------------------------- /Server/Backup/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Backup/Form1.vb -------------------------------------------------------------------------------- /Server/Chat.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Chat.Designer.vb -------------------------------------------------------------------------------- /Server/Chat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Chat.resx -------------------------------------------------------------------------------- /Server/Chat.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Chat.vb -------------------------------------------------------------------------------- /Server/Flip.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Flip.Designer.vb -------------------------------------------------------------------------------- /Server/Flip.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Flip.resx -------------------------------------------------------------------------------- /Server/Flip.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Flip.vb -------------------------------------------------------------------------------- /Server/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Form1.resx -------------------------------------------------------------------------------- /Server/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Form1.vb -------------------------------------------------------------------------------- /Server/Mac.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Mac.Designer.vb -------------------------------------------------------------------------------- /Server/Mac.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Mac.resx -------------------------------------------------------------------------------- /Server/Mac.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Mac.vb -------------------------------------------------------------------------------- /Server/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/My Project/app.manifest -------------------------------------------------------------------------------- /Server/PerfCenterCpl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/PerfCenterCpl.ico -------------------------------------------------------------------------------- /Server/ScreenCapture.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/ScreenCapture.vb -------------------------------------------------------------------------------- /Server/Screenflip.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Screenflip.vb -------------------------------------------------------------------------------- /Server/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/Screenshot.jpg -------------------------------------------------------------------------------- /Server/UBuntu.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/UBuntu.Designer.vb -------------------------------------------------------------------------------- /Server/UBuntu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/UBuntu.resx -------------------------------------------------------------------------------- /Server/UBuntu.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/UBuntu.vb -------------------------------------------------------------------------------- /Server/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/UpgradeLog.XML -------------------------------------------------------------------------------- /Server/UpgradeLog2.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/UpgradeLog2.XML -------------------------------------------------------------------------------- /Server/bin/funbags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/bin/funbags.txt -------------------------------------------------------------------------------- /Server/bin/scrn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/bin/scrn.bmp -------------------------------------------------------------------------------- /Server/filesend.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/filesend.vb -------------------------------------------------------------------------------- /Server/keylog.designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/keylog.designer.vb -------------------------------------------------------------------------------- /Server/keylog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/keylog.resx -------------------------------------------------------------------------------- /Server/keylog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/keylog.vb -------------------------------------------------------------------------------- /Server/msn.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/msn.vb -------------------------------------------------------------------------------- /Server/resChanger.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/resChanger.vb -------------------------------------------------------------------------------- /Server/screenfuka.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/screenfuka.Designer.vb -------------------------------------------------------------------------------- /Server/screenfuka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/screenfuka.resx -------------------------------------------------------------------------------- /Server/screenfuka.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Server/screenfuka.vb -------------------------------------------------------------------------------- /Shadow Crypter/Editor/TEST.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/TEST.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/dee.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/dee.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/ds.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/ds.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/frm1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/frm1.frm -------------------------------------------------------------------------------- /Shadow Crypter/Editor/frm1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/frm1.frx -------------------------------------------------------------------------------- /Shadow Crypter/Editor/frm1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/frm1.log -------------------------------------------------------------------------------- /Shadow Crypter/Editor/new.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/new.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/sd.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/sd.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/ss.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/ss.RES -------------------------------------------------------------------------------- /Shadow Crypter/Editor/ss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/Editor/ss.txt -------------------------------------------------------------------------------- /Shadow Crypter/stub/bmodul.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/bmodul.bas -------------------------------------------------------------------------------- /Shadow Crypter/stub/frm.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/frm.frm -------------------------------------------------------------------------------- /Shadow Crypter/stub/frm.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/frm.frx -------------------------------------------------------------------------------- /Shadow Crypter/stub/frm1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/frm1.frm -------------------------------------------------------------------------------- /Shadow Crypter/stub/mdltypelar.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "mdltypelar" 2 | -------------------------------------------------------------------------------- /Shadow Crypter/stub/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/stub.vbp -------------------------------------------------------------------------------- /Shadow Crypter/stub/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Shadow Crypter/stub/stub.vbw -------------------------------------------------------------------------------- /Simple Crypter/Simple Crypter/Stub/prjStub.vbw: -------------------------------------------------------------------------------- 1 | Module1 = 44, 56, 982, 589, Z 2 | -------------------------------------------------------------------------------- /Source cs 1/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Class1.cls -------------------------------------------------------------------------------- /Source cs 1/Indetectables.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Indetectables.frm -------------------------------------------------------------------------------- /Source cs 1/Indetectables.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Indetectables.frx -------------------------------------------------------------------------------- /Source cs 1/Indetectables.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Indetectables.log -------------------------------------------------------------------------------- /Source cs 1/Indetectables.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Indetectables.vbw -------------------------------------------------------------------------------- /Source cs 1/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Source cs 1/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/Module1.bas -------------------------------------------------------------------------------- /Source cs 1/STUB/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/Class1.cls -------------------------------------------------------------------------------- /Source cs 1/STUB/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /Source cs 1/STUB/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/Module1.bas -------------------------------------------------------------------------------- /Source cs 1/STUB/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/Module2.bas -------------------------------------------------------------------------------- /Source cs 1/STUB/RATATAT.VBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/RATATAT.VBP -------------------------------------------------------------------------------- /Source cs 1/STUB/RATATAT.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/Source cs 1/STUB/RATATAT.vbw -------------------------------------------------------------------------------- /Source-Code/WindowsApplication1/WindowsApplication1/Resources/RunPE2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source-Code/WindowsApplication1/WindowsApplication1/Resources/Wait.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source-Code/WindowsApplication1/WindowsApplication1/Temp.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TCrypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/Form1.frm -------------------------------------------------------------------------------- /TCrypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/Form1.frx -------------------------------------------------------------------------------- /TCrypter/IconChanger.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/IconChanger.bas -------------------------------------------------------------------------------- /TCrypter/PE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/PE.bas -------------------------------------------------------------------------------- /TCrypter/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/Project1.vbp -------------------------------------------------------------------------------- /TCrypter/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/Project1.vbw -------------------------------------------------------------------------------- /TCrypter/crypt.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/crypt.bas -------------------------------------------------------------------------------- /TCrypter/ctkiuyt.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/ctkiuyt.bas -------------------------------------------------------------------------------- /TCrypter/dialog.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/dialog.bas -------------------------------------------------------------------------------- /TCrypter/kilhgfgdf.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/kilhgfgdf.bas -------------------------------------------------------------------------------- /TCrypter/killprocess.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/killprocess.bas -------------------------------------------------------------------------------- /TCrypter/prouytf.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/prouytf.bas -------------------------------------------------------------------------------- /TCrypter/regjfd.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/regjfd.bas -------------------------------------------------------------------------------- /TCrypter/rundsc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/rundsc.bas -------------------------------------------------------------------------------- /TCrypter/stub.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/stub.RES -------------------------------------------------------------------------------- /TCrypter/stub.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/stub.bas -------------------------------------------------------------------------------- /TCrypter/stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/stub.vbp -------------------------------------------------------------------------------- /TCrypter/stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/TCrypter/stub.vbw -------------------------------------------------------------------------------- /White-Crypt/Button.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Button.ctl -------------------------------------------------------------------------------- /White-Crypt/Clases/RC4.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Clases/RC4.cls -------------------------------------------------------------------------------- /White-Crypt/Clases/XOR.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Clases/XOR.cls -------------------------------------------------------------------------------- /White-Crypt/Cliente.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Cliente.vbp -------------------------------------------------------------------------------- /White-Crypt/Cliente.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Cliente.vbw -------------------------------------------------------------------------------- /White-Crypt/Modulos/mEOF.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Modulos/mEOF.bas -------------------------------------------------------------------------------- /White-Crypt/Modulos/mFunctions.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "mFunctions" 2 | -------------------------------------------------------------------------------- /White-Crypt/Modulos/mRunPe.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Modulos/mRunPe.bas -------------------------------------------------------------------------------- /White-Crypt/Stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Stub.vbp -------------------------------------------------------------------------------- /White-Crypt/Stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/Stub.vbw -------------------------------------------------------------------------------- /White-Crypt/StubMOD.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/White-Crypt/StubMOD.rar -------------------------------------------------------------------------------- /White-Crypter/White-Crypt/White-Crypt/Modulos/mFunctions.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "mFunctions" 2 | -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/Resources/Batch.txt: -------------------------------------------------------------------------------- 1 | ri.WriteLine("[COMMANDBATCH]"); -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/Resources/Delay.txt: -------------------------------------------------------------------------------- 1 | Thread.Sleep([SLEEPVALUE]); -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/bin/Debug/anSnN96fwC5.resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/bin/Debug/anSnN96fwC5abc.resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/bin/Release/aQ2kQe77dSH.resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[C#] Cryptex/Cryptex1/Cryptex1/bin/Release/aQ2kQe77dSHabc.resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[VB.Net] Boom Crypter Source/Boom Crypter/Boom Crypter/Class1.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[VB.Net] ForcedHacking 2.0/MyCrypter/winini/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[VB.Net] ForcedHacking 2.0/README.txt: -------------------------------------------------------------------------------- 1 | Coded by t0fx from http://www.malwares-in.net -------------------------------------------------------------------------------- /bin/Debug/HTTPflooder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/bin/Debug/HTTPflooder.xml -------------------------------------------------------------------------------- /carb0n crypter 1.6/Stub/Module1.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Module1" 2 | -------------------------------------------------------------------------------- /carb0n crypter 1.7 [fix]/Stub/Module1.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "Module1" 2 | -------------------------------------------------------------------------------- /client/@PSC_ReadMe_554_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/@PSC_ReadMe_554_10.txt -------------------------------------------------------------------------------- /client/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/AssemblyInfo.vb -------------------------------------------------------------------------------- /client/Backup/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Backup/AssemblyInfo.vb -------------------------------------------------------------------------------- /client/Backup/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Backup/Form1.resx -------------------------------------------------------------------------------- /client/Backup/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Backup/Form1.vb -------------------------------------------------------------------------------- /client/Batch.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Batch.Designer.vb -------------------------------------------------------------------------------- /client/Batch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Batch.resx -------------------------------------------------------------------------------- /client/Batch.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Batch.vb -------------------------------------------------------------------------------- /client/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Form1.resx -------------------------------------------------------------------------------- /client/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Form1.vb -------------------------------------------------------------------------------- /client/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/Screenshot.jpg -------------------------------------------------------------------------------- /client/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/UpgradeLog.XML -------------------------------------------------------------------------------- /client/UpgradeLog2.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/UpgradeLog2.XML -------------------------------------------------------------------------------- /client/bin/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/bin/Client.xml -------------------------------------------------------------------------------- /client/bin/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/bin/log.txt -------------------------------------------------------------------------------- /client/bin/scrn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/bin/scrn.bmp -------------------------------------------------------------------------------- /client/bin/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/bin/test.bat -------------------------------------------------------------------------------- /client/chat.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/chat.Designer.vb -------------------------------------------------------------------------------- /client/chat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/chat.resx -------------------------------------------------------------------------------- /client/chat.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/chat.vb -------------------------------------------------------------------------------- /client/debug.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/debug.Designer.vb -------------------------------------------------------------------------------- /client/debug.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/debug.resx -------------------------------------------------------------------------------- /client/debug.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/debug.vb -------------------------------------------------------------------------------- /client/obj/Debug/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/obj/Debug/Client.xml -------------------------------------------------------------------------------- /client/offlineKeylog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/offlineKeylog.resx -------------------------------------------------------------------------------- /client/offlineKeylog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/offlineKeylog.vb -------------------------------------------------------------------------------- /client/rem_control.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/rem_control.Designer.vb -------------------------------------------------------------------------------- /client/rem_control.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/rem_control.resx -------------------------------------------------------------------------------- /client/rem_control.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/client/rem_control.vb -------------------------------------------------------------------------------- /d0pe_crypter/BL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/BL.ico -------------------------------------------------------------------------------- /d0pe_crypter/Class1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Class1.cls -------------------------------------------------------------------------------- /d0pe_crypter/EOF.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/EOF.bas -------------------------------------------------------------------------------- /d0pe_crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Form1.frm -------------------------------------------------------------------------------- /d0pe_crypter/Form2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Form2.frm -------------------------------------------------------------------------------- /d0pe_crypter/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /d0pe_crypter/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Module1.bas -------------------------------------------------------------------------------- /d0pe_crypter/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Module2.bas -------------------------------------------------------------------------------- /d0pe_crypter/Module3.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Module3.bas -------------------------------------------------------------------------------- /d0pe_crypter/Stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/Stub.vbw -------------------------------------------------------------------------------- /d0pe_crypter/VB4A.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/VB4A.tmp -------------------------------------------------------------------------------- /d0pe_crypter/clsBlowFish.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsBlowFish.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsCryptAPI.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsCryptAPI.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsDES.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsDES.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsGost.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsGost.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsRC4.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsRC4.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsSkipJack.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsSkipJack.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsTEA.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsTEA.cls -------------------------------------------------------------------------------- /d0pe_crypter/clsTwoFish.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/clsTwoFish.cls -------------------------------------------------------------------------------- /d0pe_crypter/crypter.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/crypter.frm -------------------------------------------------------------------------------- /d0pe_crypter/crypter.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/crypter.frx -------------------------------------------------------------------------------- /d0pe_crypter/crypter.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/crypter.vbp -------------------------------------------------------------------------------- /d0pe_crypter/crypter.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/crypter.vbw -------------------------------------------------------------------------------- /d0pe_crypter/custom.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom.vbw -------------------------------------------------------------------------------- /d0pe_crypter/custom1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom1.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom1.vbw -------------------------------------------------------------------------------- /d0pe_crypter/custom2.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom2.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom2.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom2.vbw -------------------------------------------------------------------------------- /d0pe_crypter/custom3.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom3.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom4.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom4.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom4.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom4.vbw -------------------------------------------------------------------------------- /d0pe_crypter/custom5.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom5.vbp -------------------------------------------------------------------------------- /d0pe_crypter/custom5.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/custom5.vbw -------------------------------------------------------------------------------- /d0pe_crypter/edited.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/edited.bas -------------------------------------------------------------------------------- /d0pe_crypter/frmEncOptions.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/frmEncOptions.frm -------------------------------------------------------------------------------- /d0pe_crypter/frmEncOptions.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/frmEncOptions.frx -------------------------------------------------------------------------------- /d0pe_crypter/mein.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/mein.bas -------------------------------------------------------------------------------- /d0pe_crypter/modCryptstuff.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/modCryptstuff.bas -------------------------------------------------------------------------------- /d0pe_crypter/modIcon.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/modIcon.bas -------------------------------------------------------------------------------- /d0pe_crypter/rat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/rat.gif -------------------------------------------------------------------------------- /d0pe_crypter/run.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/run.bas -------------------------------------------------------------------------------- /d0pe_crypter/test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/d0pe_crypter/test.bas -------------------------------------------------------------------------------- /embeded sound/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/embeded sound/UpgradeLog.XML -------------------------------------------------------------------------------- /googleit/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/googleit/UpgradeLog.XML -------------------------------------------------------------------------------- /googleit/googleit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/googleit/googleit.sln -------------------------------------------------------------------------------- /googleit/googleit/ApplicationEvents.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googleit/googleit/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/googleit/googleit/Form1.resx -------------------------------------------------------------------------------- /googleit/googleit/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/googleit/googleit/Form1.vb -------------------------------------------------------------------------------- /googleit/googleit/Icon_1.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/googleit/googleit/Icon_1.ICO -------------------------------------------------------------------------------- /iDDoSeR/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iDDoSeR/UpgradeLog.XML -------------------------------------------------------------------------------- /iDDoSeR/iDDoSeR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iDDoSeR/iDDoSeR.sln -------------------------------------------------------------------------------- /iDDoSeR/iDDoSeR/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iDDoSeR/iDDoSeR/Form1.resx -------------------------------------------------------------------------------- /iDDoSeR/iDDoSeR/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iDDoSeR/iDDoSeR/Form1.vb -------------------------------------------------------------------------------- /iDDoSeR/iDDoSeR/iDDoSeR.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iDDoSeR/iDDoSeR/iDDoSeR.vbproj -------------------------------------------------------------------------------- /iWelcome/VisualStudio.postbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iWelcome/iWelcome.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iWelcome/iWelcome.sln -------------------------------------------------------------------------------- /iWelcome/iWelcome/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iWelcome/iWelcome/Form1.resx -------------------------------------------------------------------------------- /iWelcome/iWelcome/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/iWelcome/iWelcome/Form1.vb -------------------------------------------------------------------------------- /label banner/label banner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/label banner/label banner.sln -------------------------------------------------------------------------------- /obj/Debug/HTTPflooder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/obj/Debug/HTTPflooder.xml -------------------------------------------------------------------------------- /otFUD0/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form1.Designer.vb -------------------------------------------------------------------------------- /otFUD0/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form1.resx -------------------------------------------------------------------------------- /otFUD0/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form1.vb -------------------------------------------------------------------------------- /otFUD0/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form2.Designer.vb -------------------------------------------------------------------------------- /otFUD0/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form2.resx -------------------------------------------------------------------------------- /otFUD0/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Form2.vb -------------------------------------------------------------------------------- /otFUD0/RandomStrings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/RandomStrings.vb -------------------------------------------------------------------------------- /otFUD0/Resources/agt_virus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Resources/agt_virus.ico -------------------------------------------------------------------------------- /otFUD0/Resources/otff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Resources/otff.gif -------------------------------------------------------------------------------- /otFUD0/Resources/upx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Resources/upx.1 -------------------------------------------------------------------------------- /otFUD0/Resources/upx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Resources/upx.bmp -------------------------------------------------------------------------------- /otFUD0/Resources/upx.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/Resources/upx.doc -------------------------------------------------------------------------------- /otFUD0/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/app.config -------------------------------------------------------------------------------- /otFUD0/bin/Debug/oTFUD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/bin/Debug/oTFUD.xml -------------------------------------------------------------------------------- /otFUD0/bin/Release/oTFUD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/bin/Release/oTFUD.xml -------------------------------------------------------------------------------- /otFUD0/obj/Debug/oTFUD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/obj/Debug/oTFUD.xml -------------------------------------------------------------------------------- /otFUD0/obj/Release/oTFUD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/obj/Release/oTFUD.xml -------------------------------------------------------------------------------- /otFUD0/otFUD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/otFUD.sln -------------------------------------------------------------------------------- /otFUD0/otFUD.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/otFUD0/otFUD.vbproj -------------------------------------------------------------------------------- /prjcOne Crypter/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/Form1.frm -------------------------------------------------------------------------------- /prjcOne Crypter/Form1.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/Form1.frx -------------------------------------------------------------------------------- /prjcOne Crypter/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/Project1.vbp -------------------------------------------------------------------------------- /prjcOne Crypter/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/Project1.vbw -------------------------------------------------------------------------------- /prjcOne Crypter/img/coder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/img/coder.jpg -------------------------------------------------------------------------------- /prjcOne Crypter/img/coder.pfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/img/coder.pfi -------------------------------------------------------------------------------- /prjcOne Crypter/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/prjcOne Crypter/img/logo.jpg -------------------------------------------------------------------------------- /rc4/rc4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4.sln -------------------------------------------------------------------------------- /rc4/rc4/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form1.Designer.vb -------------------------------------------------------------------------------- /rc4/rc4/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form1.resx -------------------------------------------------------------------------------- /rc4/rc4/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form1.vb -------------------------------------------------------------------------------- /rc4/rc4/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form2.Designer.vb -------------------------------------------------------------------------------- /rc4/rc4/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form2.resx -------------------------------------------------------------------------------- /rc4/rc4/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form2.vb -------------------------------------------------------------------------------- /rc4/rc4/Form3.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form3.Designer.vb -------------------------------------------------------------------------------- /rc4/rc4/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form3.resx -------------------------------------------------------------------------------- /rc4/rc4/Form3.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Form3.vb -------------------------------------------------------------------------------- /rc4/rc4/Resources/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Resources/Help.txt -------------------------------------------------------------------------------- /rc4/rc4/Resources/RC4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/Resources/RC4.txt -------------------------------------------------------------------------------- /rc4/rc4/rc4.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/rc4/rc4/rc4.vbproj -------------------------------------------------------------------------------- /redix crypter/Crypter.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Crypter.vbp -------------------------------------------------------------------------------- /redix crypter/Crypter.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Crypter.vbw -------------------------------------------------------------------------------- /redix crypter/Stub/Stub.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Stub/Stub.vbp -------------------------------------------------------------------------------- /redix crypter/Stub/Stub.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Stub/Stub.vbw -------------------------------------------------------------------------------- /redix crypter/Stub/modFuncs.bas: -------------------------------------------------------------------------------- 1 | Attribute VB_Name = "modFuncs" 2 | 3 | 4 | -------------------------------------------------------------------------------- /redix crypter/Stub/modMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Stub/modMain.bas -------------------------------------------------------------------------------- /redix crypter/Stub/modRC4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/Stub/modRC4.bas -------------------------------------------------------------------------------- /redix crypter/XPLook.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/XPLook.res -------------------------------------------------------------------------------- /redix crypter/frmFileInfo.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/frmFileInfo.frm -------------------------------------------------------------------------------- /redix crypter/frmMain.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/frmMain.frm -------------------------------------------------------------------------------- /redix crypter/frmMain.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/frmMain.frx -------------------------------------------------------------------------------- /redix crypter/modCommDlg.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modCommDlg.bas -------------------------------------------------------------------------------- /redix crypter/modIcon.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modIcon.bas -------------------------------------------------------------------------------- /redix crypter/modMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modMain.bas -------------------------------------------------------------------------------- /redix crypter/modOEP.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modOEP.bas -------------------------------------------------------------------------------- /redix crypter/modPE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modPE.bas -------------------------------------------------------------------------------- /redix crypter/modRC4.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modRC4.bas -------------------------------------------------------------------------------- /redix crypter/modREPE.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/redix crypter/modREPE.bas -------------------------------------------------------------------------------- /release/ico/access.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/access.ico -------------------------------------------------------------------------------- /release/ico/avi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/avi.ico -------------------------------------------------------------------------------- /release/ico/avi98.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/avi98.ico -------------------------------------------------------------------------------- /release/ico/bat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/bat.ico -------------------------------------------------------------------------------- /release/ico/blank.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/blank.ico -------------------------------------------------------------------------------- /release/ico/bmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/bmp.ico -------------------------------------------------------------------------------- /release/ico/cd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/cd.ico -------------------------------------------------------------------------------- /release/ico/cmd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/cmd.ico -------------------------------------------------------------------------------- /release/ico/contact.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/contact.ico -------------------------------------------------------------------------------- /release/ico/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/dll.ico -------------------------------------------------------------------------------- /release/ico/dllxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/dllxp.ico -------------------------------------------------------------------------------- /release/ico/doc2000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/doc2000.ico -------------------------------------------------------------------------------- /release/ico/doc2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/doc2003.ico -------------------------------------------------------------------------------- /release/ico/dos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/dos.ico -------------------------------------------------------------------------------- /release/ico/emule.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/emule.ico -------------------------------------------------------------------------------- /release/ico/excel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/excel.ico -------------------------------------------------------------------------------- /release/ico/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/file.ico -------------------------------------------------------------------------------- /release/ico/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/folder.ico -------------------------------------------------------------------------------- /release/ico/gif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/gif.ico -------------------------------------------------------------------------------- /release/ico/hd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/hd.ico -------------------------------------------------------------------------------- /release/ico/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/help.ico -------------------------------------------------------------------------------- /release/ico/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/html.ico -------------------------------------------------------------------------------- /release/ico/ie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/ie.ico -------------------------------------------------------------------------------- /release/ico/iexpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/iexpress.ico -------------------------------------------------------------------------------- /release/ico/imageready.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/imageready.ico -------------------------------------------------------------------------------- /release/ico/inixp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/inixp.ico -------------------------------------------------------------------------------- /release/ico/java.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/java.ico -------------------------------------------------------------------------------- /release/ico/jpg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/jpg.ico -------------------------------------------------------------------------------- /release/ico/jpgxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/jpgxp.ico -------------------------------------------------------------------------------- /release/ico/mdb2000.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/mdb2000.ico -------------------------------------------------------------------------------- /release/ico/mdb2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/mdb2003.ico -------------------------------------------------------------------------------- /release/ico/mipc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/mipc.ico -------------------------------------------------------------------------------- /release/ico/mp3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/mp3.ico -------------------------------------------------------------------------------- /release/ico/msdos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/msdos.ico -------------------------------------------------------------------------------- /release/ico/msn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/msn.ico -------------------------------------------------------------------------------- /release/ico/msn7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/msn7.ico -------------------------------------------------------------------------------- /release/ico/msn8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/msn8.ico -------------------------------------------------------------------------------- /release/ico/netmeeting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/netmeeting.ico -------------------------------------------------------------------------------- /release/ico/network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/network.ico -------------------------------------------------------------------------------- /release/ico/none.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/none.ico -------------------------------------------------------------------------------- /release/ico/notepadxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/notepadxp.ico -------------------------------------------------------------------------------- /release/ico/outlook.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/outlook.ico -------------------------------------------------------------------------------- /release/ico/pack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/pack.ico -------------------------------------------------------------------------------- /release/ico/paintxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/paintxp.ico -------------------------------------------------------------------------------- /release/ico/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/pdf.ico -------------------------------------------------------------------------------- /release/ico/photoshop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/photoshop.ico -------------------------------------------------------------------------------- /release/ico/playboy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/playboy.ico -------------------------------------------------------------------------------- /release/ico/plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/plus.ico -------------------------------------------------------------------------------- /release/ico/pps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/pps.ico -------------------------------------------------------------------------------- /release/ico/pptxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/pptxp.ico -------------------------------------------------------------------------------- /release/ico/psd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/psd.ico -------------------------------------------------------------------------------- /release/ico/quik.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/quik.ico -------------------------------------------------------------------------------- /release/ico/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/rar.ico -------------------------------------------------------------------------------- /release/ico/rarxf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/rarxf.ico -------------------------------------------------------------------------------- /release/ico/rayo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/rayo.ico -------------------------------------------------------------------------------- /release/ico/recicle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/recicle.ico -------------------------------------------------------------------------------- /release/ico/script.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/script.ico -------------------------------------------------------------------------------- /release/ico/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/setup.ico -------------------------------------------------------------------------------- /release/ico/setupxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/setupxp.ico -------------------------------------------------------------------------------- /release/ico/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/txt.ico -------------------------------------------------------------------------------- /release/ico/txtxp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/txtxp.ico -------------------------------------------------------------------------------- /release/ico/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/update.ico -------------------------------------------------------------------------------- /release/ico/vbs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/vbs.ico -------------------------------------------------------------------------------- /release/ico/wav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/wav.ico -------------------------------------------------------------------------------- /release/ico/winamp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/winamp.ico -------------------------------------------------------------------------------- /release/ico/wmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/wmp.ico -------------------------------------------------------------------------------- /release/ico/wmplayer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/wmplayer.ico -------------------------------------------------------------------------------- /release/ico/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/word.ico -------------------------------------------------------------------------------- /release/ico/xls2003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/ico/xls2003.ico -------------------------------------------------------------------------------- /release/res/info.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/res/info.res -------------------------------------------------------------------------------- /release/res/res.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/release/res/res.ini -------------------------------------------------------------------------------- /stub/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/UpgradeLog.XML -------------------------------------------------------------------------------- /stub/stub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub.sln -------------------------------------------------------------------------------- /stub/stub/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/Form1.Designer.vb -------------------------------------------------------------------------------- /stub/stub/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/Form1.resx -------------------------------------------------------------------------------- /stub/stub/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/Form1.vb -------------------------------------------------------------------------------- /stub/stub/bin/Debug/stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/bin/Debug/stub.xml -------------------------------------------------------------------------------- /stub/stub/bin/Release/stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/bin/Release/stub.xml -------------------------------------------------------------------------------- /stub/stub/obj/Debug/stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/obj/Debug/stub.xml -------------------------------------------------------------------------------- /stub/stub/obj/Release/stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/obj/Release/stub.xml -------------------------------------------------------------------------------- /stub/stub/stub.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/stub/stub/stub.vbproj -------------------------------------------------------------------------------- /triple des/triple des.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/triple des/triple des.sln -------------------------------------------------------------------------------- /triple des/triple des/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/triple des/triple des/Form1.vb -------------------------------------------------------------------------------- /udp flood/udp flood.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/udp flood/udp flood.sln -------------------------------------------------------------------------------- /udp flood/udp flood/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/udp flood/udp flood/Form1.resx -------------------------------------------------------------------------------- /udp flood/udp flood/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/udp flood/udp flood/Form1.vb -------------------------------------------------------------------------------- /web browser/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/Stop.png -------------------------------------------------------------------------------- /web browser/back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/back_icon.png -------------------------------------------------------------------------------- /web browser/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/home.png -------------------------------------------------------------------------------- /web browser/icons/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/icons/house.png -------------------------------------------------------------------------------- /web browser/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/icons/stop.png -------------------------------------------------------------------------------- /web browser/icons/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/icons/tab.png -------------------------------------------------------------------------------- /web browser/icons/tab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/icons/tab_add.png -------------------------------------------------------------------------------- /web browser/web browser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/web browser/web browser.sln -------------------------------------------------------------------------------- /xpinfo/xpinfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/xpinfo/xpinfo.sln -------------------------------------------------------------------------------- /xpinfo/xpinfo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/xpinfo/xpinfo/Form1.resx -------------------------------------------------------------------------------- /xpinfo/xpinfo/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/xpinfo/xpinfo/Form1.vb -------------------------------------------------------------------------------- /xpinfo/xpinfo/xpinfo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malwares/Crypter/HEAD/xpinfo/xpinfo/xpinfo.vbproj --------------------------------------------------------------------------------