![]() |
![]() |
![]() |
![]() |
![]() |
||||||||||
|
||||||||||||||
![]() |
|
#1
|
|||
|
|||
![]() Hello
I have a question.Is possible to recover the original names of Namespace and function of an exe obfuscated with Dotfuscator? I have already deObfuscate but im not take the names as the original was. Thank you |
#2
|
|||
|
|||
![]() can view method body is enough.
restore original namespace & Method Name, i thinks not possible. |
#3
|
|||
|
|||
![]() But how is possible to get code and put it in new project to execute it?Please help me in that way.I can see the code but saying eval_r.eval_f(); for example and comfused with define variables eval_f . Ithink there is a way to do that.
Thank you. |
#4
|
|||
|
|||
![]() What does it matter what a variable/function/type is called, it will still interpret the same (.NET) or compile the same for ordinary exes.
Git |
#5
|
|||
|
|||
![]() This is an example :
private static void eval_a(); internal static void eval_a(bool bool_0); public static string eval_a(int int_3); public static void eval_a(long long_2); private static void eval_a(object object_0); when i call eval_a() .net compiler dont know which of them i mean so i must rename every call and possible errors in code appear. Thank you. |
#6
|
|||
|
|||
![]() Then the compiler is stupid or they are not declared inside a class. They each have a different type so are different functions inside the class. If you can post a bnit more of the source then maybe one of the .NET people here can help you, it's not really my subject.
Git |