miso-xyz / CCFlow

heres my attempt at a control flow (cflow) cleaner, don't expect much from it

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CCFlow

heres my attempt at a control flow (cflow) cleaner, don't expect much from it

Notes

  • This is not a magic tool (far from it, you will likely need to clean some stuff yourself), if anyone want to help you can contact me or fork the repo
  • This currently only support very simple cflow obfuscation (see Examples below)
  • Both the cleaned code & the original cflow will be present in the method(s) that were cleaned, there is a ret instruction that seperates them aswell as a bunch of ldstr to let you know which is which split
  • the sorted methods are also saved as text files in the log folder

Usage

Drag & Drop to Clean

Examples

Control Flow Obfuscation:

int num = 1;
for (;;)
{
  if (num == 3)
  {
    Console.WriteLine("Hello World!");
  }
  if (num == 1)
  {
    num = 2;
  }
  if (num == 2)
  {
    num = 3;
  }
}

Expected result when cleaned with CCFlow:

Console.WriteLine("Hello World!");

About

heres my attempt at a control flow (cflow) cleaner, don't expect much from it


Languages

Language:C# 100.0%