My_Partner's : Zer03s | Nofia | Myw1sd0m | IT-Rc |
-------------------------------------------------------------------------------------------------------------------------------

Inline Assembly in C programning languange

now we will share how to inline assembly programing language in C programing . This tutorial's made by Mywisdom,  so let's see the example here :  code : #include <stdio.h> #v3n0m.c #coding by: mywisdom int main() { __asm__ ("xor %eax, %eax\n\t"         "mov $0x1,%al\n\t"         "xor %ebx,%ebx\n\t"         "int $0x80"); }  example, suppose there is assembly code using the syscall number 1 (exit function): code :  [SECTION .text] global _start _start:         xor eax, eax         mov al,1         xor ebx,ebx         int...

reverse engineering - introduction to assembly program languange

lets continue our tutorial on reverse engineering. Today i will share to you assembly language basic that are necessary for learning reverse engineering. As we all know assembly language is very important for reverse engineering and we must know, what are registers and which register serves for what. How the assembly language instruction work and how can we relate them with normal high language coding( C, JAVA, VB, etc.)  to hack any software. So friends, lets start our reverse engineering part 2. What is Assembly language? Assembly language is a low level or simply called machine language...

Pages 71234 »