![]() |
|
Leak [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Computers (https://sinister.ly/Forum-Computers) +--- Forum: Software & Programs (https://sinister.ly/Forum-Software-Programs) +--- Thread: Leak [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator (/Thread-Leak-Reverse-d-Code-on-GitHub-PSCX-1-0-0-9-Fake-Emulator) |
[Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - miso - 03-18-2020 reverse'd by me Screenshot: ![]() View in VS2010 (Visual Studio 2010): ![]() (Source code already shared earlier on previous thread, click here to see thread RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - mothered - 03-18-2020 Nice work. As a matter of Interest, what tools did you use to RE It? RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - zn0 - 03-18-2020 I didn't know you could reverse .NET applications like this. What would happen if I compiled this code into a binary? Would I have the exact same binary, with matching md5sums? In that case this is really cool! RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - miso - 03-18-2020 (03-18-2020, 08:21 AM)mothered Wrote: Nice work.dnSpy & VS2010 (is told in the readme.md page) (03-18-2020, 03:45 PM)zn0 Wrote: I didn't know you could reverse .NET applications like this. What would happen if I compiled this code into a binary? Would I have the exact same binary, with matching md5sums? In that case this is really cool! you will not have the same md5sums, however, the code has been extracted from the .exe by dnSpy, however, when extracted, the project is extremely buggy and normally has hundred of errors (especially in the *.Designer.vb file), those take a while to fix and can be confusing at first, but i have enough experience with the .NET Framework (especially VB.NET) that i can just fully reverse-engineer apps when compiled, the application will be slightly bigger due to dnspy extracting more data than needed (by that, i mean that some piece of code is obfuscated), i try reversing those but the file ends up bigger, however, i do not consider this as a remake since the project has been extracted from a *.exe, i just fix the errors made when extracting however, the application is visually the exact same, all elements have the properties from original, a build from reverse'd code cannot really be distinguished except said somewhere in the application RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - zn0 - 03-19-2020 (03-18-2020, 11:34 PM)miso Wrote:(03-18-2020, 08:21 AM)mothered Wrote: Nice work.dnSpy & VS2010 Ah I see! I've seen people reverse .NET programs before and getting ahold of API keys, but I've never seen someone completely "remake" it like this RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - miso - 03-19-2020 (03-19-2020, 12:43 AM)zn0 Wrote:lmao aight, well i actually find .NET programs easy to fully reverse, some people actually say it really hard when i only use Visual Studio and dnSpy to do it(03-18-2020, 11:34 PM)miso Wrote:(03-18-2020, 08:21 AM)mothered Wrote: Nice work.dnSpy & VS2010 RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - mothered - 03-19-2020 (03-19-2020, 12:43 AM)zn0 Wrote: dnSpy & VS2010 Although I haven't used It In a while, I love working with Visual Studio. Once you get the hang of It, It's a very powerful tool. RE: [Reverse'd, Code on GitHub]: PSCX_1.0.0.9 Fake Emulator - miso - 03-19-2020 (03-19-2020, 08:27 AM)mothered Wrote:(03-19-2020, 12:43 AM)zn0 Wrote: dnSpy & VS2010 true, i've only been using visual studio for almost 2 years now, and i can navigate/use it flawlessly, i just love customisable it is to fit different user's preferences, allowing programmers to feel/be confortable while using the application btw VB.NET actually helped me improving my english skills, i also find it way more easier to use compared to C#, VS2010 just feels made for VB.NET and C# on the other side looks incomplete somehow, however, i found C# to be easier on dnSpy than VB.NET, which is quite weird but can show how even the smallest details can affect the experience while using an app |