forked from yck1509/ConfuserEx
-
-
Notifications
You must be signed in to change notification settings - Fork 421
Closed
Description
Debug Info:
[INFO] Confuser.Core 1.2.0+4110faee9d Copyright © 2014 Ki, 2018 Martin Karing
[INFO] Running on Microsoft Windows NT 6.2.9200.0, .NET Framework v4.0.30319.42000, 64 bits
[DEBUG] Discovering plugins...
[INFO] Discovered 10 protections, 1 packers.
[DEBUG] Resolving component dependency...
[INFO] Loading input modules...
[INFO] Loading 'TestWinForm.exe'...
[INFO] Initializing...
[DEBUG] Building pipeline...
[INFO] Resolving dependencies...
[DEBUG] Checking Strong Name...
[DEBUG] Creating global .cctors...
[DEBUG] Watermarking...
[DEBUG] Executing 'Name analysis' phase...
[DEBUG] Building VTables & identifier list...
[DEBUG] Analyzing...
[DEBUG] WinForms found, enabling compatibility.
[WARN] Failed to extract binding property name in 'System.Void TestWinForm.Form1::InitializeComponent()'.
[INFO] Processing module 'TestWinForm.exe'...
[DEBUG] Executing 'Invalid metadata addition' phase...
[DEBUG] Executing 'Renaming' phase...
[DEBUG] Renaming...
[DEBUG] Executing 'Anti-debug injection' phase...
[DEBUG] Executing 'Anti-dump injection' phase...
[DEBUG] Executing 'Anti-ILDasm marking' phase...
[DEBUG] Executing 'Encoding reference proxies' phase...
[DEBUG] Executing 'Constant encryption helpers injection' phase...
[DEBUG] Executing 'Resource encryption helpers injection' phase...
[DEBUG] Executing 'Constants encoding' phase...
[DEBUG] Executing 'Anti-tamper helpers injection' phase...
[DEBUG] Executing 'Control flow mangling' phase...
[DEBUG] Executing 'Post-renaming' phase...
[DEBUG] Executing 'Anti-tamper metadata preparation' phase...
[DEBUG] Executing 'Packer info extraction' phase...
[INFO] Writing module 'TestWinForm.exe'...
[DEBUG] Encrypting resources...
[INFO] Finalizing...
[DEBUG] Saving to 'D:\Code\TestWinForm\TestWinForm\bin\TestWinForm.exe'...
[DEBUG] Executing 'Export symbol map' phase...
[INFO] Done.
Finished at 16:08, 0:02 elapsed.There is a warning when obfuscating. And the target file is created, but when click it, no windows is shown.
The function code is here:
private void InitializeComponent()
{
this.dg = new System.Windows.Forms.DataGridView();
this.Name2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dg)).BeginInit();
this.SuspendLayout();
//
// dg
//
this.dg.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dg.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Name2});
this.dg.Location = new System.Drawing.Point(60, 30);
this.dg.Name = "dg";
this.dg.RowHeadersWidth = 51;
this.dg.RowTemplate.Height = 27;
this.dg.Size = new System.Drawing.Size(573, 308);
this.dg.TabIndex = 0;
//
// Name2
//
this.Name2.DataPropertyName = "TestName";
this.Name2.HeaderText = "Col1";
this.Name2.MinimumWidth = 6;
this.Name2.Name = "Name2";
this.Name2.Width = 125;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.dg);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dg)).EndInit();
this.ResumeLayout(false);
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working