Learn C and assembly. C, Assembly & Reverse Engineering CTF’s playlist: x86 Assembly Guide Link CTF 101 Handbook Syntax : je <label> (jump when equal) jne <label> (jump when not equal) jz <label> (jump when last result was zero) jg <label> (jump when greater than) jge <label> (jump when greater than or equal to) jl <label> (jump when less than) jle <label> (jump when less than or equal to) Example cmp %ebx, %eax jle done Compiler Explorer: Compiler Explorer Compiler Explorer is an interactive online compiler which shows the assembly output of compiled C++, Rust, Go (and many… godbolt.org Decompiler Explorer: Decompiler Explorer Decompiler Explorer is an interactive online decompiler which shows equivalent C-like output of decompiled programs… dogbolt.org — — → TOOLS 🛠️ ← — — Windows 🪟 x64dbg Files An open-source x64/x32 debugger for Windows. LINUX🐧 Commands: file < filename > strings < filename ...