4

I know how to do it with OllyDbg but with x64dbg\x32dbg I don't know how to do it.

I have a packed binary file and at some point it unpacks itself and I found the point where it does it.
I want to copy it to a binary file at this point (after unpacked).

I tried using right click on the code and use Copy and Binary but I don't see any option to copy to executable:
enter image description here

Any idea ?

E235
  • 583
  • 8
  • 24
  • There is no such function in x64dbg. I have no idea why but it is a no-brainer. Scylla does not work. Just try to debug calc.exe and write a dump with Scylla. No chance ! It's like someone has build a car but forgot to create doors. – Timo Schäfer Aug 26 '19 at 10:23

1 Answers1

4

It sounds like you want to dump the executable. You can use Scylla (which is built into x64dbg) to dump and restore the executable.

You can find Scylla in Plugins -> Scylla

mrexodia
  • 1,652
  • 10
  • 19