CRACKING TUTORIAL | BASICS | ASSEMBLY | X64DBG | BEGINNER FRIENDLY | ADVANCED

jkly

Lurker
Member
Joined
Threads
11
Posts
28
--CRACKING GUIDE--
everything you need to know to crack a program


In this guide you will get a beginner-friendly to everything you need to crack a software, using x64dbg.

You will have lists, tables,..


First, you will need . Download it and run it.

1. Open the file you need to crack: .exe on x64dbg [NOTE: this will NOT run the file, you are safe from malwares]

2. Learn the basics of ASSEMBLY.
  • MOV dest, srccopy data.
  • PUSH / POPsave / restore values on the stack.
  • CMP op1, op2compare values (sets flags).
  • TEST op1, op2check if zero / non-zero.
  • CALL addrcall a function.
  • RETreturn from function.
  • JMP addrunconditional jump.
  • JE / JZ jump if equal / zero flag set.
  • JNE / JNZ jump if not equal / zero flag clear.
  • NOP no operation (often used when patching).

You must reply to see the hidden content. Consider upgrading your account to increase your reply limit.


CONSIDER LIKING, POSTING, GIVING FEEDBACK IF YOU LIKED THE CONTENT