Hacking

Image File Hacking

Overview of Image File Hacking Python provides very powerful features to handle files. Python can open a binary file and can change or append information to it. If you add a script for various types of image files used on the Web, you can create…

멀티코어

API Hooking

API Hooking is a hacking technique that steals an API call during normal operation. A simple API Hooking program can be build using the functionality provided by Pydbg. API Hooking API Hookin…

멀티코어

Installation of the Pydbg Module

In order to hack the Windows applications with Python, you should take advantage of the window functions in the Windows DLL. Python natively supports an FFI (Foreign Function Interface) package called ctypes, through which it is possible to use a …

멀티코어

Concept of a Debugger

A debugger is a kind of interrupt subroutine that temporarily stops the operation of the process that is being performed. When the debugger execution is completed, the process logic will continue. The debugger sets the breakpoint in the instructio…

멀티코어
Load More
That is All