Skip to main content

One post tagged with "Conditional Instruction"

A conditional instruction is an instruction that controls the flow of execution based on a condition being true or false. This type of instruction typically takes two operands -- one operand specifies the condition to be tested, and another operand specifies the action to be taken if the condition is met. Conditional instructions are used to make decisions in computer programs, such as executing code only if a certain condition is satisfied.

View All Tags

THM | x86 Assembly Crash Course

· 14 min read

Malware Analysis | x86 Assembly Crash Course | Summary:

The room discusses various aspects of x86 assembly language programming, covering essential concepts such as opcodes and operands, general assembly instructions, arithmetic and logical instructions, conditionals, and branching instructions.

It also includes some warnings about the use of these instructions in real-world scenarios, particularly related to shellcode injection.