solved new crackme
This commit is contained in:
parent
694b158660
commit
8061b31630
BIN
ad_cm4/AD_CM#4.exe
Normal file
BIN
ad_cm4/AD_CM#4.exe
Normal file
Binary file not shown.
BIN
ad_cm4/AD_CM#4_dump_.exe
Normal file
BIN
ad_cm4/AD_CM#4_dump_.exe
Normal file
Binary file not shown.
23
ad_cm4/keygen/keygen1.deps.json
Normal file
23
ad_cm4/keygen/keygen1.deps.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"keygen1/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"keygen1.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"keygen1/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
ad_cm4/keygen/keygen1.dll
Normal file
BIN
ad_cm4/keygen/keygen1.dll
Normal file
Binary file not shown.
BIN
ad_cm4/keygen/keygen1.exe
Normal file
BIN
ad_cm4/keygen/keygen1.exe
Normal file
Binary file not shown.
19
ad_cm4/keygen/keygen1.runtimeconfig.json
Normal file
19
ad_cm4/keygen/keygen1.runtimeconfig.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
158
ad_cm4/solve.md
Normal file
158
ad_cm4/solve.md
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
???你不会是就换了一个打包工具吧
|
||||||
|
|
||||||
|
打包工具: ASPack(2.11)
|
||||||
|
|
||||||
|
1. 脱壳
|
||||||
|
|
||||||
|
pushad后在ESP设置硬件断点(access,word)
|
||||||
|
|
||||||
|
```assembly
|
||||||
|
0046A001 | 60 | pushad |
|
||||||
|
0046A002 | E9 00000000 | jmp ad_cm#4.46A007 | <--
|
||||||
|
0046A007 | E8 24040000 | call ad_cm#4.46A430 |
|
||||||
|
0046A00C | EB 00 | jmp ad_cm#4.46A00E |
|
||||||
|
0046A00E | BB 30394400 | mov ebx,ad_cm#4.443930 |
|
||||||
|
```
|
||||||
|
|
||||||
|
继续运行,会中断在这个地方
|
||||||
|
|
||||||
|
```assembly
|
||||||
|
0046A3AB | 75 08 | jne ad_cm#4.46A3B5 | <--
|
||||||
|
0046A3AD | B8 01000000 | mov eax,1 |
|
||||||
|
0046A3B2 | C2 0C00 | ret C |
|
||||||
|
0046A3B5 | 68 F0844500 | push ad_cm#4.4584F0 |
|
||||||
|
0046A3BA | C3 | ret |
|
||||||
|
```
|
||||||
|
|
||||||
|
禁用断点,F7 F8几下 来到`4584F0`
|
||||||
|
|
||||||
|
```assembly
|
||||||
|
004584F0 | 55 | push ebp | OEP
|
||||||
|
004584F1 | 8BEC | mov ebp,esp |
|
||||||
|
004584F3 | 83C4 F4 | add esp,FFFFFFF4 |
|
||||||
|
004584F6 | B8 A0834500 | mov eax,ad_cm#4.4583A0 |
|
||||||
|
```
|
||||||
|
|
||||||
|
然后一套流程下来(dump, ImportREC修正(OEP: 000584F0))
|
||||||
|
|
||||||
|
2. 随便翻一下就可以找到有帮助的内容了(例如搜索“Enter you name”)
|
||||||
|
|
||||||
|
下面是稍微整理过的内容:(可能存在一点类型错误,实际计算代码请看source)
|
||||||
|
|
||||||
|
```c#
|
||||||
|
string name = "user input"; // ebp-14 ebp-8
|
||||||
|
string serial = "user input"; // ebp-18
|
||||||
|
string true_serial = ""; // ebp-c
|
||||||
|
string part = "ADCM4-";
|
||||||
|
string part2 = "-YEAH!";
|
||||||
|
int time = name.Length; // edi
|
||||||
|
int index = 1; // ebx
|
||||||
|
|
||||||
|
do {
|
||||||
|
char v1 = name[index - 1]; // esi
|
||||||
|
char v2 = v1; // eax
|
||||||
|
int v3 = 6; // ecx
|
||||||
|
v2 /= v3; // eax = v1 / 6
|
||||||
|
char v5 = (char)(v1 >> 2);
|
||||||
|
v2 *= v5; // eax *= edx (v5)
|
||||||
|
char v6 = v1; // eax
|
||||||
|
int v7 = 0xA; // ecx
|
||||||
|
v6 /= v7; // eax = v1 / 10
|
||||||
|
int v8 = v2;
|
||||||
|
var temp = v6;
|
||||||
|
v6 = (char)v8;
|
||||||
|
v8 = temp;
|
||||||
|
int v9 = v8;
|
||||||
|
string v10 = "";
|
||||||
|
v6 /= (char)v9;
|
||||||
|
v10 = v6.ToString();
|
||||||
|
true_serial += v10;
|
||||||
|
index++;
|
||||||
|
time--;
|
||||||
|
} while (time > 0);
|
||||||
|
|
||||||
|
true_serial = part + true_serial + part2;
|
||||||
|
```
|
||||||
|
|
||||||
|
细节:
|
||||||
|
|
||||||
|
```assembly
|
||||||
|
00458159 | 55 | push ebp |
|
||||||
|
0045815A | 68 90824500 | push <ad_cm#4.sub_458290> |
|
||||||
|
0045815F | 64:FF30 | push dword ptr fs:[eax] |
|
||||||
|
00458162 | 64:8920 | mov dword ptr fs:[eax],esp |
|
||||||
|
00458165 | 8D55 F8 | lea edx,dword ptr ss:[ebp-8] |
|
||||||
|
00458168 | 8B45 FC | mov eax,dword ptr ss:[ebp-4] | [ebp-04]:&"l貮"
|
||||||
|
0045816B | 8B80 D8020000 | mov eax,dword ptr ds:[eax+2D8] |
|
||||||
|
00458171 | E8 16BFFCFF | call <ad_cm#4.GetText> |
|
||||||
|
00458176 | 8D55 EC | lea edx,dword ptr ss:[ebp-14] | [ebp-14]:&"l貮"
|
||||||
|
00458179 | 8B45 FC | mov eax,dword ptr ss:[ebp-4] | [ebp-04]:&"l貮"
|
||||||
|
0045817C | 8B80 D8020000 | mov eax,dword ptr ds:[eax+2D8] |
|
||||||
|
00458182 | E8 05BFFCFF | call <ad_cm#4.GetText> |
|
||||||
|
00458187 | 837D EC 00 | cmp dword ptr ss:[ebp-14],0 | [ebp-14]:&"l貮"
|
||||||
|
0045818B | 75 0A | jne ad_cm#4.458197 |
|
||||||
|
0045818D | B8 A8824500 | mov eax,<ad_cm#4.sub_4582A8> | 4582A8:"Enter you name, pls."
|
||||||
|
00458192 | E8 4DC1FEFF | call <ad_cm#4.ShowMessage> |
|
||||||
|
00458197 | 8D55 E8 | lea edx,dword ptr ss:[ebp-18] |
|
||||||
|
0045819A | 8B45 FC | mov eax,dword ptr ss:[ebp-4] | [ebp-04]:&"l貮"
|
||||||
|
0045819D | 8B80 DC020000 | mov eax,dword ptr ds:[eax+2DC] |
|
||||||
|
004581A3 | E8 E4BEFCFF | call <ad_cm#4.GetText> |
|
||||||
|
004581A8 | 837D E8 00 | cmp dword ptr ss:[ebp-18],0 |
|
||||||
|
004581AC | 75 0A | jne ad_cm#4.4581B8 |
|
||||||
|
004581AE | B8 C8824500 | mov eax,ad_cm#4.4582C8 | 4582C8:"Enter the serial, pls."
|
||||||
|
004581B3 | E8 2CC1FEFF | call <ad_cm#4.ShowMessage> |
|
||||||
|
004581B8 | 8B45 F8 | mov eax,dword ptr ss:[ebp-8] |
|
||||||
|
004581BB | E8 BCB9FAFF | call <ad_cm#4.GetLength> |
|
||||||
|
004581C0 | 8BF8 | mov edi,eax |
|
||||||
|
004581C2 | 85FF | test edi,edi |
|
||||||
|
004581C4 | 7E 50 | jle ad_cm#4.458216 |
|
||||||
|
004581C6 | BB 01000000 | mov ebx,1 |
|
||||||
|
004581CB | 8B45 F8 | mov eax,dword ptr ss:[ebp-8] |
|
||||||
|
004581CE | 0FB67418 FF | movzx esi,byte ptr ds:[eax+ebx-1] |
|
||||||
|
004581D3 | 8BC6 | mov eax,esi |
|
||||||
|
004581D5 | B9 06000000 | mov ecx,6 | ecx:"p粿"
|
||||||
|
004581DA | 33D2 | xor edx,edx |
|
||||||
|
004581DC | F7F1 | div ecx | ecx:"p粿"
|
||||||
|
004581DE | 8B55 F8 | mov edx,dword ptr ss:[ebp-8] |
|
||||||
|
004581E1 | 8BD6 | mov edx,esi |
|
||||||
|
004581E3 | C1EA 02 | shr edx,2 |
|
||||||
|
004581E6 | F7EA | imul edx |
|
||||||
|
004581E8 | 50 | push eax |
|
||||||
|
004581E9 | 8B45 F8 | mov eax,dword ptr ss:[ebp-8] |
|
||||||
|
004581EC | 8BC6 | mov eax,esi |
|
||||||
|
004581EE | B9 0A000000 | mov ecx,A | ecx:"p粿", 0A:'\n'
|
||||||
|
004581F3 | 33D2 | xor edx,edx |
|
||||||
|
004581F5 | F7F1 | div ecx | ecx:"p粿"
|
||||||
|
004581F7 | 5A | pop edx |
|
||||||
|
004581F8 | 92 | xchg edx,eax |
|
||||||
|
004581F9 | 8BCA | mov ecx,edx | ecx:"p粿"
|
||||||
|
004581FB | 33D2 | xor edx,edx |
|
||||||
|
004581FD | F7F1 | div ecx | ecx:"p粿"
|
||||||
|
004581FF | 8D55 E4 | lea edx,dword ptr ss:[ebp-1C] |
|
||||||
|
00458202 | E8 FDF8FAFF | call <ad_cm#4.IntToStr> |
|
||||||
|
00458207 | 8B55 E4 | mov edx,dword ptr ss:[ebp-1C] |
|
||||||
|
0045820A | 8D45 F4 | lea eax,dword ptr ss:[ebp-C] |
|
||||||
|
0045820D | E8 72B9FAFF | call <ad_cm#4._LStrCat> |
|
||||||
|
00458212 | 43 | inc ebx |
|
||||||
|
00458213 | 4F | dec edi |
|
||||||
|
00458214 | 75 B5 | jne ad_cm#4.4581CB | loop
|
||||||
|
00458216 | 68 E8824500 | push ad_cm#4.4582E8 | 4582E8:"ADCM4-"
|
||||||
|
0045821B | FF75 F4 | push dword ptr ss:[ebp-C] |
|
||||||
|
0045821E | 68 F8824500 | push ad_cm#4.4582F8 | 4582F8:"-YEAH!"
|
||||||
|
00458223 | 8D45 F0 | lea eax,dword ptr ss:[ebp-10] |
|
||||||
|
00458226 | BA 03000000 | mov edx,3 |
|
||||||
|
0045822B | E8 0CBAFAFF | call <ad_cm#4.LStrCatN> |
|
||||||
|
00458230 | 8D55 E0 | lea edx,dword ptr ss:[ebp-20] |
|
||||||
|
00458233 | 8B45 FC | mov eax,dword ptr ss:[ebp-4] | [ebp-04]:&"l貮"
|
||||||
|
00458236 | 8B80 DC020000 | mov eax,dword ptr ds:[eax+2DC] |
|
||||||
|
0045823C | E8 4BBEFCFF | call <ad_cm#4.GetText> |
|
||||||
|
00458241 | 8B55 E0 | mov edx,dword ptr ss:[ebp-20] |
|
||||||
|
00458244 | 8B45 F0 | mov eax,dword ptr ss:[ebp-10] |
|
||||||
|
00458247 | E8 40BAFAFF | call <ad_cm#4._LStrCmp> |
|
||||||
|
0045824C | 75 0A | jne ad_cm#4.458258 |
|
||||||
|
0045824E | B8 08834500 | mov eax,<ad_cm#4.sub_458308> | 458308:"Well done Cracker, You did it!"
|
||||||
|
00458253 | E8 8CC0FEFF | call <ad_cm#4.ShowMessage> |
|
||||||
|
00458258 | 33C0 | xor eax,eax |
|
||||||
|
0045825A | 5A | pop edx |
|
||||||
|
```
|
||||||
|
|
51
ad_cm4/source/keygen1.sln
Normal file
51
ad_cm4/source/keygen1.sln
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.11.35303.130
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "keygen1", "keygen1\keygen1.csproj", "{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "keygen2", "keygen2\keygen2.csproj", "{2446CB50-1882-4219-9DB0-E7F5517E6E20}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "keygen3", "keygen3\keygen3.csproj", "{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Debug|x86.Build.0 = Debug|x86
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
{D0E162E3-FC99-4405-BEE1-AB85D9D41DA9}.Release|x86.Build.0 = Release|x86
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Debug|x86.Build.0 = Debug|x86
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
{2446CB50-1882-4219-9DB0-E7F5517E6E20}.Release|x86.Build.0 = Release|x86
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Debug|x86.Build.0 = Debug|x86
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
{BC47A6DE-7F9D-4D65-A996-69FB778C95F3}.Release|x86.Build.0 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {01ED3EE8-E89A-4A27-AF68-EF2490CB6BD7}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
220
ad_cm4/source/keygen1/Form1.Designer.cs
generated
Normal file
220
ad_cm4/source/keygen1/Form1.Designer.cs
generated
Normal file
@ -0,0 +1,220 @@
|
|||||||
|
namespace keygen1
|
||||||
|
{
|
||||||
|
partial class Form1
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
button1 = new Button();
|
||||||
|
label1 = new Label();
|
||||||
|
textBox1 = new TextBox();
|
||||||
|
label2 = new Label();
|
||||||
|
textBox2 = new TextBox();
|
||||||
|
label3 = new Label();
|
||||||
|
checkBox1 = new CheckBox();
|
||||||
|
button2 = new Button();
|
||||||
|
button3 = new Button();
|
||||||
|
label4 = new Label();
|
||||||
|
textBox3 = new TextBox();
|
||||||
|
button4 = new Button();
|
||||||
|
label5 = new Label();
|
||||||
|
textBox4 = new TextBox();
|
||||||
|
SuspendLayout();
|
||||||
|
//
|
||||||
|
// button1
|
||||||
|
//
|
||||||
|
button1.Location = new Point(393, 2);
|
||||||
|
button1.Name = "button1";
|
||||||
|
button1.Size = new Size(93, 172);
|
||||||
|
button1.TabIndex = 0;
|
||||||
|
button1.Text = "Generate";
|
||||||
|
button1.UseVisualStyleBackColor = true;
|
||||||
|
button1.Click += Button1_Click;
|
||||||
|
//
|
||||||
|
// label1
|
||||||
|
//
|
||||||
|
label1.AutoSize = true;
|
||||||
|
label1.Location = new Point(30, 18);
|
||||||
|
label1.Name = "label1";
|
||||||
|
label1.Size = new Size(39, 15);
|
||||||
|
label1.TabIndex = 1;
|
||||||
|
label1.Text = "Name";
|
||||||
|
//
|
||||||
|
// textBox1
|
||||||
|
//
|
||||||
|
textBox1.Location = new Point(75, 14);
|
||||||
|
textBox1.Name = "textBox1";
|
||||||
|
textBox1.Size = new Size(262, 23);
|
||||||
|
textBox1.TabIndex = 2;
|
||||||
|
//
|
||||||
|
// label2
|
||||||
|
//
|
||||||
|
label2.AutoSize = true;
|
||||||
|
label2.Location = new Point(34, 51);
|
||||||
|
label2.Name = "label2";
|
||||||
|
label2.Size = new Size(35, 15);
|
||||||
|
label2.TabIndex = 3;
|
||||||
|
label2.Text = "Serial";
|
||||||
|
//
|
||||||
|
// textBox2
|
||||||
|
//
|
||||||
|
textBox2.Location = new Point(75, 47);
|
||||||
|
textBox2.Name = "textBox2";
|
||||||
|
textBox2.Size = new Size(262, 23);
|
||||||
|
textBox2.TabIndex = 4;
|
||||||
|
//
|
||||||
|
// label3
|
||||||
|
//
|
||||||
|
label3.AutoSize = true;
|
||||||
|
label3.Location = new Point(312, 155);
|
||||||
|
label3.Name = "label3";
|
||||||
|
label3.Size = new Size(75, 15);
|
||||||
|
label3.TabIndex = 5;
|
||||||
|
label3.Text = "By Chenx221";
|
||||||
|
//
|
||||||
|
// checkBox1
|
||||||
|
//
|
||||||
|
checkBox1.AutoSize = true;
|
||||||
|
checkBox1.Enabled = false;
|
||||||
|
checkBox1.Location = new Point(75, 155);
|
||||||
|
checkBox1.Name = "checkBox1";
|
||||||
|
checkBox1.Size = new Size(89, 19);
|
||||||
|
checkBox1.TabIndex = 6;
|
||||||
|
checkBox1.Text = "Auto Mode ";
|
||||||
|
checkBox1.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// button2
|
||||||
|
//
|
||||||
|
button2.Location = new Point(343, 13);
|
||||||
|
button2.Name = "button2";
|
||||||
|
button2.Size = new Size(44, 24);
|
||||||
|
button2.TabIndex = 7;
|
||||||
|
button2.Text = "Copy";
|
||||||
|
button2.UseVisualStyleBackColor = true;
|
||||||
|
button2.Click += Button2_Click;
|
||||||
|
//
|
||||||
|
// button3
|
||||||
|
//
|
||||||
|
button3.Location = new Point(343, 47);
|
||||||
|
button3.Name = "button3";
|
||||||
|
button3.Size = new Size(44, 23);
|
||||||
|
button3.TabIndex = 8;
|
||||||
|
button3.Text = "Copy";
|
||||||
|
button3.UseVisualStyleBackColor = true;
|
||||||
|
button3.Click += Button3_Click;
|
||||||
|
//
|
||||||
|
// label4
|
||||||
|
//
|
||||||
|
label4.AutoSize = true;
|
||||||
|
label4.Location = new Point(10, 82);
|
||||||
|
label4.Name = "label4";
|
||||||
|
label4.Size = new Size(59, 15);
|
||||||
|
label4.TabIndex = 9;
|
||||||
|
label4.Text = "Company";
|
||||||
|
label4.Visible = false;
|
||||||
|
//
|
||||||
|
// textBox3
|
||||||
|
//
|
||||||
|
textBox3.Location = new Point(75, 79);
|
||||||
|
textBox3.Name = "textBox3";
|
||||||
|
textBox3.Size = new Size(262, 23);
|
||||||
|
textBox3.TabIndex = 10;
|
||||||
|
textBox3.Visible = false;
|
||||||
|
//
|
||||||
|
// button4
|
||||||
|
//
|
||||||
|
button4.Location = new Point(343, 79);
|
||||||
|
button4.Name = "button4";
|
||||||
|
button4.Size = new Size(44, 23);
|
||||||
|
button4.TabIndex = 11;
|
||||||
|
button4.Text = "Copy";
|
||||||
|
button4.UseVisualStyleBackColor = true;
|
||||||
|
button4.Visible = false;
|
||||||
|
button4.Click += Button4_Click;
|
||||||
|
//
|
||||||
|
// label5
|
||||||
|
//
|
||||||
|
label5.AutoSize = true;
|
||||||
|
label5.Location = new Point(31, 116);
|
||||||
|
label5.Name = "label5";
|
||||||
|
label5.Size = new Size(35, 15);
|
||||||
|
label5.TabIndex = 12;
|
||||||
|
label5.Text = "Serial";
|
||||||
|
label5.Visible = false;
|
||||||
|
//
|
||||||
|
// textBox4
|
||||||
|
//
|
||||||
|
textBox4.Location = new Point(75, 113);
|
||||||
|
textBox4.Name = "textBox4";
|
||||||
|
textBox4.Size = new Size(262, 23);
|
||||||
|
textBox4.TabIndex = 13;
|
||||||
|
textBox4.Visible = false;
|
||||||
|
//
|
||||||
|
// Form1
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(491, 183);
|
||||||
|
Controls.Add(textBox4);
|
||||||
|
Controls.Add(label5);
|
||||||
|
Controls.Add(button4);
|
||||||
|
Controls.Add(textBox3);
|
||||||
|
Controls.Add(label4);
|
||||||
|
Controls.Add(button3);
|
||||||
|
Controls.Add(button2);
|
||||||
|
Controls.Add(checkBox1);
|
||||||
|
Controls.Add(label3);
|
||||||
|
Controls.Add(textBox2);
|
||||||
|
Controls.Add(label2);
|
||||||
|
Controls.Add(textBox1);
|
||||||
|
Controls.Add(label1);
|
||||||
|
Controls.Add(button1);
|
||||||
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
||||||
|
MaximizeBox = false;
|
||||||
|
Name = "Form1";
|
||||||
|
Text = "KeyGen For ad_cm4";
|
||||||
|
ResumeLayout(false);
|
||||||
|
PerformLayout();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private Button button1;
|
||||||
|
private Label label1;
|
||||||
|
private TextBox textBox1;
|
||||||
|
private Label label2;
|
||||||
|
private TextBox textBox2;
|
||||||
|
private Label label3;
|
||||||
|
private CheckBox checkBox1;
|
||||||
|
private Button button2;
|
||||||
|
private Button button3;
|
||||||
|
private Label label4;
|
||||||
|
private TextBox textBox3;
|
||||||
|
private Button button4;
|
||||||
|
private Label label5;
|
||||||
|
private TextBox textBox4;
|
||||||
|
}
|
||||||
|
}
|
153
ad_cm4/source/keygen1/Form1.cs
Normal file
153
ad_cm4/source/keygen1/Form1.cs
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Text;
|
||||||
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
|
||||||
|
|
||||||
|
namespace keygen1
|
||||||
|
{
|
||||||
|
public partial class Form1 : Form
|
||||||
|
{
|
||||||
|
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
|
||||||
|
static extern IntPtr FindWindow(string? lpClassName, string lpWindowName);
|
||||||
|
|
||||||
|
[DllImport("user32.dll", SetLastError = true)]
|
||||||
|
static extern IntPtr GetDlgItem(IntPtr hDlg, int nIDDlgItem);
|
||||||
|
|
||||||
|
[DllImport("user32.dll", CharSet = CharSet.Unicode, SetLastError = false)]
|
||||||
|
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, StringBuilder? lParam);
|
||||||
|
|
||||||
|
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
|
||||||
|
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
|
||||||
|
|
||||||
|
const uint WM_SETTEXT = 0x000C;
|
||||||
|
const uint BM_CLICK = 0x00F5;
|
||||||
|
|
||||||
|
public Form1()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Button1_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(textBox1.Text))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Name不能为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//if (string.IsNullOrEmpty(textBox2.Text))
|
||||||
|
//{
|
||||||
|
// MessageBox.Show("First Name不能为空");
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
//if (string.IsNullOrEmpty(textBox3.Text))
|
||||||
|
//{
|
||||||
|
// MessageBox.Show("Company不能为空");
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
//Generate(textBox1.Text, textBox2.Text, textBox3.Text);
|
||||||
|
Generate(textBox1.Text);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Generate(string username)
|
||||||
|
{
|
||||||
|
//if (username.Length <5)
|
||||||
|
//{
|
||||||
|
// MessageBox.Show("Name至少5位长度");
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
//long[] key = GenerateKey(username, fname, company);
|
||||||
|
|
||||||
|
string key = GenerateKey(username);
|
||||||
|
|
||||||
|
//if (!int.TryParse(username, out int serial1))
|
||||||
|
//{
|
||||||
|
// MessageBox.Show("Serial1不是有效数字");
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
//string key = GenerateKey(serial1);
|
||||||
|
//textBox4.Text = string.Join("-", key);
|
||||||
|
textBox2.Text = key;
|
||||||
|
//if (checkBox1.Checked) AutoMode(username,key);
|
||||||
|
//禁用,由于controlId不固定
|
||||||
|
}
|
||||||
|
|
||||||
|
//private static string GenerateKey(string name)
|
||||||
|
//{
|
||||||
|
// return ((char)(name[name.Length - 1] ^ 3)).ToString();
|
||||||
|
//}
|
||||||
|
|
||||||
|
//private static long[] GenerateKey(string name, string fname, string company)
|
||||||
|
//{
|
||||||
|
// return [];
|
||||||
|
//}
|
||||||
|
|
||||||
|
private static string GenerateKey(string name)
|
||||||
|
{
|
||||||
|
string serial = "";
|
||||||
|
string part = "ADCM4-";
|
||||||
|
string part2 = "-YEAH!";
|
||||||
|
int time = name.Length;
|
||||||
|
int index = 1;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
char v1 = name[index - 1];
|
||||||
|
int v2 = (v1 / 6) * (v1 >> 2);
|
||||||
|
int v6 = v1 / 0xA;
|
||||||
|
v2 /= v6;
|
||||||
|
serial += v2.ToString();
|
||||||
|
index++;
|
||||||
|
time--;
|
||||||
|
} while (time > 0);
|
||||||
|
|
||||||
|
return part + serial + part2;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void AutoMode(string username, string key)
|
||||||
|
{
|
||||||
|
string windowTitle = "ArturDents CrackMe #2";
|
||||||
|
IntPtr hWnd = FindWindow(null, windowTitle);
|
||||||
|
|
||||||
|
if (hWnd == IntPtr.Zero)
|
||||||
|
{
|
||||||
|
MessageBox.Show("窗口未找到");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int usernameControlId = 0xBB8;
|
||||||
|
int serialControlId = 0xBB9;
|
||||||
|
int submitButtonId = 0xBBA;
|
||||||
|
|
||||||
|
IntPtr usernameHwnd = GetDlgItem(hWnd, usernameControlId);
|
||||||
|
IntPtr serialHwnd = GetDlgItem(hWnd, serialControlId);
|
||||||
|
IntPtr submitButtonHwnd = GetDlgItem(hWnd, submitButtonId);
|
||||||
|
|
||||||
|
if (usernameHwnd == IntPtr.Zero || serialHwnd == IntPtr.Zero || submitButtonHwnd == IntPtr.Zero)
|
||||||
|
{
|
||||||
|
MessageBox.Show("控件未找到");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StringBuilder usernameToSet = new(username);
|
||||||
|
StringBuilder serialToSet = new(key);
|
||||||
|
|
||||||
|
SendMessage(usernameHwnd, WM_SETTEXT, IntPtr.Zero, usernameToSet);
|
||||||
|
SendMessage(serialHwnd, WM_SETTEXT, IntPtr.Zero, serialToSet);
|
||||||
|
SendMessage(submitButtonHwnd, BM_CLICK, IntPtr.Zero, IntPtr.Zero);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Button2_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(textBox1.Text);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Button3_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(textBox2.Text);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Button4_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(textBox3.Text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
120
ad_cm4/source/keygen1/Form1.resx
Normal file
120
ad_cm4/source/keygen1/Form1.resx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
17
ad_cm4/source/keygen1/Program.cs
Normal file
17
ad_cm4/source/keygen1/Program.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
namespace keygen1
|
||||||
|
{
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
|
// see https://aka.ms/applicationconfiguration.
|
||||||
|
ApplicationConfiguration.Initialize();
|
||||||
|
Application.Run(new Form1());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
31
ad_cm4/source/keygen1/keygen1.csproj
Normal file
31
ad_cm4/source/keygen1/keygen1.csproj
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
<Platforms>AnyCPU;x86</Platforms>
|
||||||
|
<Authors>chenx221</Authors>
|
||||||
|
<Company>chenx221</Company>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in New Issue
Block a user