Jump to content
Tuts 4 You

All Activity

This stream auto-updates

  1. Past hour
  2. Today
  3. Sean Park - Lovejoy

    An open source tool for analyzing vmp

    @jackyjask maybe, we do not need it any more. @fjqisba how does this IDA plugin help to analyze the vmprotect virtual machine? I do not know how to use this. I will be really appreciated if you could explain about it. Many thanks in advance. Regards. sean.
  4. jackyjask

    An open source tool for analyzing vmp

    @fjqisba is GhidraVmp.dll obsoleted and now one has to use Revampire.dll instead?
  5. If you want to change "standard" (&<>) HTML entities it would be simplest to search and replace manually; not sure what the best approach would be if you want to convert unknown HTML to text. Dialog text uses & to underline the next character, so they should be replaced with && for a literal &.
  6. I don't know where you are sourcing your text from, possibly you can check the BOM - if it exists. If the text is a reliable source you could try utilising the IsTextUnicode function... Ted.
  7. Yesterday
  8. Hi guys, so I got a little problem again with those UNICODE / SYMBOL chars in text / buffer I want to format to readable text and print that on a static control. So first I got some text issues showing me some strange symbol chars instead of text like this below... "Youâ€" is "You’ve" ...and I was then using the MultiByteToWideChar function with CodePage CP_UTF8 to change my ANSI text buffer to UNICODE. After that the text was displaying correctly using SetDlgItemTextW function. FIne so far I thought. Then I found another problem with a other symbol like this... Q&amp;A is Q&A ...and I tried to use the same function as above but in this case I got this results back... Qamp;A !? My question now is...when I have any unknown text in buffer as ASCII / ANSI style then I want to format / convert this text buffer into 100 % readable / Symbol buffer I want to use with SetDlgItemTextW (Unicode) function to display the text 100 % correctly as original etc. What is the right method for this? greetz
  9. SAMY27

    Enigma Protector v7.5(Shell 示例)

    How to find the constant value when debugging an enigma protected application? no answer ???
  10. Sean Park - Lovejoy

    create backup(from olly) functionality in x64dbg

    @Priboi Many thanks for the video presentation. Now I get it. Your plugin would be helpful. Regards. sean.
  11. Priboi

    create backup(from olly) functionality in x64dbg

    I said program not plugin. Debugged program makes changes in code/data for example while unpacking and you are able to see where these changes are when using my plugin.
  12. Sean Park - Lovejoy

    create backup(from olly) functionality in x64dbg

    @Priboi when does the code/data change by your plugin? I did not use the feature of the ollydbg, also I did not know it is. Now I check it out in ollydbg. It is a good feature. In ollydbg, If I create backup, then I change some codes. by using view backup, I can view the backed up data. after it, again If I click view actual data, I can view the current modified code/data. But with your plugin, what should I do to check what is the backed up code/data and what is the current modified or actual code/data? Many thanks in advance. Regards. sean.
  13. Can someone share MyAppSecured v1.00 Beta source? I dont have account here: https://forum.exetools.com/showthread.php?t=19316 EDIT: nevermind founded here:
  14. Priboi

    create backup(from olly) functionality in x64dbg

    You dont have to do changes on yourself its not the purpose of this plugin because you know what you have changed. The code/data should be changed by program itself.
  15. whoknows

    .exe protector

    + password-protect-video.com
  16. Sean Park - Lovejoy

    An open source tool for analyzing vmp

    Now It works well but It takes some time to complete the job. Regards. sean.
  17. fjqisba

    An open source tool for analyzing vmp

    Well, the project is still a demo. I updated the plugin and provided a program for my own testing,you can try that. https://github.com/fjqisba/VmpHelper/releases
  18. Sean Park - Lovejoy

    An open source tool for analyzing vmp

    I virtualized below part and tested it. 004010C2 6A 01 push 01 004010C4 53 push ebx 004010C5 FF15 1C614000 call dword ptr [0040611C] → USER32.dll!EndDialog 004010CB EB 09 jmp 004010D6 ↓ It is cahnged to thses codes. 00A810C2 | E9 27BA1800 | JMP win32gui.vmp.C0CAEE | 00A810C7 <win32gui | 57 | PUSH EDI | edi:EntryPoint 00A810C8 | C3 | RET | 00A810C9 <win32gui | 56 | PUSH ESI | esi:EntryPoint 00A810CA | C3 | RET | 00A810CB <win32gui | EB 09 | JMP win32gui.vmp.A810D6 | And I used your plugin by clicking the menu "VMP -> Show Graph" at the address of 00A810C2. then It hung. the IDA version is 8.3.23.0608.. Regards. sean.
  19. fjqisba

    An open source tool for analyzing vmp

    For current plugin, it seems too early to analyze vmp oep, because vmp does a lot of operations at the beginning. Maybe you should try writing a small function, use vmp encryption, and then use plugin to analyze the begin of vmp function.
  20. Sean Park - Lovejoy

    An open source tool for analyzing vmp

    Win32GUI.vmp.zip Regards. sean.
  21. jackyjask

    An open source tool for analyzing vmp

    What are the preconditions to start de-virting 3.5.0 x86? I'm hitting only this: sample https://workupload.com/file/bDGty7XBnfW sometimes it is crashing, eg: BTW, what IDA versions do you support?
  22. fjqisba

    An open source tool for analyzing vmp

    Well, this is because it has not been fully developed yet. you can try sending samples to me so I can fix it.
  23. Last week
  24. Sean Park - Lovejoy

    An open source tool for analyzing vmp

    An error!!! And for another example. Why does it just show one graph and no branches? but your github page shows like this. Regards. sean.
  25. Sh4DoVV

    Nuitka 2.1.5 (Python 3.11)

    View File Nuitka 2.1.5 (Python 3.11) Hi Nuitka compiled python 3.11 file Correct password doesn't important Just patching Thanks Submitter Sh4DoVV Submitted 04/18/2024 Category CrackMe  
  26. Sean Park - Lovejoy

    create backup(from olly) functionality in x64dbg

    Where can I see the differences when choosing "Compare Snapshot"? I clicked the menu of "Make Snapshot" before changing anything. Then as @Priboi said, started an application. after it, I changed some bytes. then clicked the "Compare Snapshot" menu. however I cannot notice anything to show the differences in the disassembly pane of the x64dbg. Thanks. Regards. sean.
  27. whoknows

    .exe protector

    most possible using SetWindowDisplayAffinity API - more github.com/akinbicer/screen-capture-protector
  28. Hi, everybody! I am developing an ida plugin which can be used to analyze vmp3.5 x86. If you are interested in vmp, Then you can view the source code of the project to learn it. Suggestions and PRs are welcome. https://github.com/fjqisba/VmpHelper
  29. Sh4DoVV

    Nuitka 2.1.5 (Python 3.11)

    5 downloads

    Hi Nuitka compiled python 3.11 file Correct password doesn't important Just patching Thanks
  1. Load more activity
×
×
  • Create New...