Exetools  

Go Back   Exetools > General > Source Code

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 04-29-2016, 02:42
Sound Sound is offline
Family
 
Join Date: Apr 2016
Location: TaiWan
Posts: 106
Rept. Given: 8
Rept. Rcvd 52 Times in 22 Posts
Thanks Given: 39
Thanks Rcvd at 421 Times in 97 Posts
Sound Reputation: 52
Dotbundle_Defuscator

using de4dot.blocks;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using dnlib.DotNet.Writer;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Text;
using System.Windows.Forms;
[assembly: Obfuscation(Feature = "Apply to type *: apply to member * when method or constructor: virtualization", Exclude = false)]
namespace ghostStrDes
{


public partial class MainForm : Form
{


public MainForm()
{
InitializeComponent();

}
private string DirectoryName = string.Empty;
[Obfuscation(Feature = "virtualization", Exclude = false)]
private Assembly assembly;
private List allMethods = new List();
private List singleMethods = new List(); //多余的int param ,没有Switch
private List switchMethods = new List(); //多余的int param ,有Switch

private void tbFileName_DragDrop(object sender, DragEventArgs e)
{
try
{
Array array = (Array)e.Data.GetData(DataFormats.FileDrop);
if (array != null)
{
string text = array.GetValue(0).ToString();
int num = text.LastIndexOf(".");
if (num != -1)
{
string text2 = text.Substring(num);
text2 = text2.ToLower();
if (text2 == ".exe" || text2 == ".dll")
{
base.Activate();
tbFileName.Text = text;
int num2 = text.LastIndexOf("\\");
if (num2 != -1)
{
DirectoryName = text.Remove(num2, text.Length - num2);
}
if (DirectoryName.Length == 2)
{
DirectoryName += "\\";
}
}
}
}
}
catch
{
}
}

private void tbFileName_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}

}


[Obfuscation(Feature = "virtualization", Exclude = false)]
private void btnGo_Click(object sender, EventArgs e)
{

if (string.IsNullOrWhiteSpace(tbFileName.Text)) //Check whether the settings file
{
rtLog.AppendText("Please select the application that needs to be decoded. !\r\n");
return;
}
if (!File.Exists(tbFileName.Text)) //Check if the file exists
{
rtLog.AppendText("decrypt the file does not exist ! \r\n");
return;
}


update links

Download:
http://qwe.tw/release/Dotbundle_Defuscator.7z

Last edited by Sound; 04-29-2016 at 14:27.
Reply With Quote
The Following 5 Users Say Thank You to Sound For This Useful Post:
besoeso (04-29-2016), ontryit (06-01-2016), riverstore (06-04-2016), romero (05-26-2016), ZeNiX (05-10-2016)
  #2  
Old 04-29-2016, 14:06
giv's Avatar
giv giv is offline
VIP
 
Join Date: Jan 2011
Location: Romania
Posts: 1,657
Rept. Given: 801
Rept. Rcvd 1,283 Times in 561 Posts
Thanks Given: 226
Thanks Rcvd at 562 Times in 240 Posts
giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299
For me say that the page does not exist.
Can you upload to zippyshare?
Reply With Quote
  #3  
Old 04-29-2016, 14:22
Sound Sound is offline
Family
 
Join Date: Apr 2016
Location: TaiWan
Posts: 106
Rept. Given: 8
Rept. Rcvd 52 Times in 22 Posts
Thanks Given: 39
Thanks Rcvd at 421 Times in 97 Posts
Sound Reputation: 52
Quote:
Originally Posted by giv View Post
For me say that the page does not exist.
Can you upload to zippyshare?
http://qwe.tw/release/Dotbundle_Defuscator.7z
Reply With Quote
  #4  
Old 05-01-2016, 07:08
dnvthv dnvthv is offline
Family
 
Join Date: Nov 2010
Posts: 90
Rept. Given: 121
Rept. Rcvd 35 Times in 19 Posts
Thanks Given: 88
Thanks Rcvd at 47 Times in 13 Posts
dnvthv Reputation: 35
This Account has been suspended.

Please correct the link.
Reply With Quote
  #5  
Old 05-01-2016, 13:23
mr.exodia mr.exodia is offline
Retired Moderator
 
Join Date: Nov 2011
Posts: 784
Rept. Given: 492
Rept. Rcvd 1,122 Times in 305 Posts
Thanks Given: 90
Thanks Rcvd at 711 Times in 333 Posts
mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299 mr.exodia Reputation: 1100-1299
Original thread: http://www.52pojie.cn/thread-493289-1-1.html
Reply With Quote
  #6  
Old 05-04-2016, 00:20
Sound Sound is offline
Family
 
Join Date: Apr 2016
Location: TaiWan
Posts: 106
Rept. Given: 8
Rept. Rcvd 52 Times in 22 Posts
Thanks Given: 39
Thanks Rcvd at 421 Times in 97 Posts
Sound Reputation: 52
Quote:
Originally Posted by mr.exodia View Post
He released is software, I released is source code, it Can make people learn a lot,

This different.
Reply With Quote
The Following 2 Users Gave Reputation+1 to Sound For This Useful Post:
mr.exodia (05-04-2016), ZeNiX (05-10-2016)
The Following 2 Users Say Thank You to Sound For This Useful Post:
ahmadmansoor (06-18-2016), ontryit (06-01-2016)
  #7  
Old 05-04-2016, 00:22
Sound Sound is offline
Family
 
Join Date: Apr 2016
Location: TaiWan
Posts: 106
Rept. Given: 8
Rept. Rcvd 52 Times in 22 Posts
Thanks Given: 39
Thanks Rcvd at 421 Times in 97 Posts
Sound Reputation: 52
Quote:
Originally Posted by dnvthv View Post
This Account has been suspended.

Please correct the link.
Sorry, today Has returned to normal, the site was attacked!
Reply With Quote
The Following User Says Thank You to Sound For This Useful Post:
ontryit (06-01-2016)
  #8  
Old 06-01-2016, 21:27
ontryit ontryit is offline
Friend
 
Join Date: Nov 2011
Posts: 172
Rept. Given: 127
Rept. Rcvd 17 Times in 14 Posts
Thanks Given: 411
Thanks Rcvd at 70 Times in 43 Posts
ontryit Reputation: 17
Quote:
Originally Posted by Sound View Post
Sorry, today Has returned to normal, the site was attacked!
Downloaded! The link is fine now
Reply With Quote
  #9  
Old 06-02-2016, 04:40
niculaita's Avatar
niculaita niculaita is offline
Family
 
Join Date: Jun 2011
Location: here
Posts: 1,342
Rept. Given: 947
Rept. Rcvd 89 Times in 61 Posts
Thanks Given: 4,282
Thanks Rcvd at 479 Times in 338 Posts
niculaita Reputation: 89
/ / without space so //
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On



All times are GMT +8. The time now is 18:12.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( 1998 - 2024 )