n132 / libx

A Linux Kernel Exploitation C Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libx

It's a personal c language library for kernel exploiting.

Usage

Install libx

git clone git@github.com:n132/libx.git
cd libx
make
make install

uninstall libx

make clean
make uninstall

Example

//gcc main.c -o ./main -lx -w
#include "libx.h"
#include <stdio.h>
int main(){
    char *ptr =0xdeadbeef000;
    froze();
    puts(ptr);
    puts("Done");
}

Function List

About

A Linux Kernel Exploitation C Library


Languages

Language:C 97.8%Language:Makefile 2.2%