Probfuscator icon indicating copy to clipboard operation
Probfuscator copied to clipboard

An Obfuscation Approach using Probabilistic Control Flows

Results 1 Probfuscator issues
Sort by recently updated
recently updated
newest added

I obfuscated the following code return ArgumentException. ``` try { throw new ArgumentException("Error"); } catch (ApplicationException e) { Console.WriteLine("First handler"); } catch (ArgumentException e) { Console.WriteLine("Second handler"); } ``` ```...