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...

Learning Basic of reverse engineering

What is Reverse Engineering? Have you ever noticed, Nokia or Iphone made an application and after few days you find that on Samsung or any other mobile device. Its nothing that difficult, its called reverse engineering. They decode their programs to get the basic structure of the original program and then following the structure codes their own and sometimes doesn't even happen just make some code changes and uses them. According to Wikipedia "Reverse engineering is the process of discovering the technological principles of a device, object or system through analysis of its structure, function and operation. It often involves taking something (e.g., a mechanical device, electronic component, biological, chemical or organic matter or software program) apart and analyzing...

Writing PolicyKit applications without D-Bus - Python Script

I'm always happy when more libraries get Python bindings, and today I've been especially excited by the fact that GObject introspection support for PolicyKit has finally appeared in Natty repositories. Basically it means, that PolicyKit is now accessible from Python through a native API without direct D-Bus communication. I've tried to port the querying example from PolicyKit manual and it did work! The Python example below is an almost line-by-line port of the original, but it should give you a basic idea on how to use the API for your own scripts. #! /usr/bin/env python import sys, os from gi.repository import GObject, Gio, Polkit def on_tensec_timeout(loop): print("Ten seconds have passed. Now exiting.") loop.quit() return False def check_authorization_cb(authority, res,...

syn and Ping Flood Protect - Python Script

simple code to protect your system from syn flood and ping flood attack.. auth0r: JimmyR.D DOWNLOAD...

Pages 71234 »