Jump to content
Tuts 4 You

[UnPackMe] Agile Net :)


teehist

Recommended Posts

I made a simple program that has the packer "AgileNet"

 

 The challenge is to remove this protection and send the code of "MainForm" or "Form1" in his case.

 

 If you can meet the requirements below.

 

 What program used to unpacker?

 Level of difficulty?

 

 


 

 


 

I believe that the virus scan with the accused AgileNet is caused by the very packer.

 


Please read, Viruses accused really do not know why is accusing because the file without AgileNet it is clean.

 

The program only messagebox, confirming or not, and a ToolStrip, nothing more.

2MFTools.rar

Edited by teehist
Link to comment
Share on other sites

private void toolStripButton1_Click(object sender, EventArgs e)

{

   MessageBox.Show("You fell into the tale ass silver [Brazilian Story ]", "Tuts4you.com", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);

}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)

{

if (MessageBox.Show("Do you want to exit?", "Tuts4you.com", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)

{

Application.Exit();

}

}

2MFTools-unpacked.zip

  • Like 4
Link to comment
Share on other sites

What about code virtualization technique offered by AgileNet? is that present in the crackme?


Edited by alorent
Link to comment
Share on other sites

:rtfm:



Imports System
Imports System.ComponentModel
Imports System.Drawing
Imports System.Windows.Forms Namespace MFTools
Public Class Form1
Inherits Form Private icontainer_0 As IContainer Private toolStrip1 As ToolStrip Private toolStripButton1 As ToolStripButton Private toolStripSeparator1 As ToolStripSeparator Public Sub New()
Me.InitializeComponent()
End Sub Private Sub toolStripButton1_Click(sender As Object, e As EventArgs)
MessageBox.Show("You fell into the tale ass silver [Brazilian Story ]", "Tuts4you.com", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk)
End Sub Private Sub Form1_Load(sender As Object, e As EventArgs)
End Sub Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs)
If MessageBox.Show("Do you want to exit?", "Tuts4you.com", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = DialogResult.Yes Then
Application.[Exit]()
End If
End Sub Protected Overrides Sub Dispose(disposing As Boolean)
If disposing AndAlso Me.icontainer_0 IsNot Nothing Then
Me.icontainer_0.Dispose()
End If
MyBase.Dispose(disposing)
End Sub Private Sub InitializeComponent()
Dim componentResourceManager As ComponentResourceManager = New ComponentResourceManager(GetType(Form1))
Me.toolStrip1 = New ToolStrip()
Me.toolStripButton1 = New ToolStripButton()
Me.toolStripSeparator1 = New ToolStripSeparator()
Me.toolStrip1.SuspendLayout()
MyBase.SuspendLayout()
Me.toolStrip1.Items.AddRange(New ToolStripItem()() { Me.toolStripButton1, Me.toolStripSeparator1 })
Me.toolStrip1.LayoutStyle = ToolStripLayoutStyle.Flow
Me.toolStrip1.Location = New Point(0, 0)
Me.toolStrip1.Name = "toolStrip1"
Me.toolStrip1.Size = New Size(179, 23)
Me.toolStrip1.TabIndex = 0
Me.toolStrip1.Text = "toolStrip1"
Me.toolStripButton1.DisplayStyle = ToolStripItemDisplayStyle.Text
Me.toolStripButton1.Image = CType(componentResourceManager.GetObject("toolStripButton1.Image"), Image)
Me.toolStripButton1.ImageTransparentColor = Color.Magenta
Me.toolStripButton1.Name = "toolStripButton1"
Me.toolStripButton1.Size = New Size(170, 17)
Me.toolStripButton1.Text = "Click here and win License 4ever."
AddHandler Me.toolStripButton1.Click, AddressOf Me.toolStripButton1_Click
Me.toolStripSeparator1.Name = "toolStripSeparator1"
Me.toolStripSeparator1.Size = New Size(6, 23)
MyBase.AutoScaleDimensions = New SizeF(6F, 13F)
MyBase.AutoScaleMode = AutoScaleMode.Font
MyBase.ClientSize = New Size(179, 23)
MyBase.Controls.Add(Me.toolStrip1)
MyBase.FormBorderStyle = FormBorderStyle.FixedToolWindow
MyBase.Name = "Form1"
Me.Text = "Themida?/license?"
AddHandler MyBase.FormClosing, AddressOf Me.Form1_FormClosing
AddHandler MyBase.Load, AddressOf Me.Form1_Load
Me.toolStrip1.ResumeLayout(False)
Me.toolStrip1.PerformLayout()
MyBase.ResumeLayout(False)
MyBase.PerformLayout()
End Sub
End Class
End Namespace

unpacked.rar

Edited by abassi-28
  • Like 1
Link to comment
Share on other sites

What about code virtualization technique offered by AgileNet? is that present in the crackme?

Could you be more specific, my translator is very horrible.

Link to comment
Share on other sites

I mean that Agile .NET offers a feature called "Code Virtualization" where you select specific methods to be virtualized.


 


Did you add that feature into the crackme?



Thanks


  • Like 1
Link to comment
Share on other sites

  • 6 months later...
  • 1 month later...
  • 8 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...