GitHunt
CL

clickyotomy/syscall-table-addr

Just another pointless kernel module.

syscall-table-addr

Stupid kernel module for displaying the virtual address of `sys_call_table'.

HOW-TO
# To compile the module, use the Makefile. After a successful
# compilation, there should be a `.ko' file created.
$ make

# To check details on the newly created kernel module.
$ modinfo syscall_table_addr.ko

# To insert the module, use `insmod' command.
$ insmod syscall_table_addr.ko

# The output is written to the kernel ring buffer.
$ tail -f /var/log/dmesg
# Alternatively, you can just run `dmesg'.

# To remove the module, use `rmmod'.
$ rmmod syscall_table_addr.ko

NOTE
[+] This is known to work on x86-64 systems.
[+] `{ins,rm}mod' commands might need root privileges.

Languages

C90.0%Makefile10.0%

Contributors

MIT License
Created March 9, 2018
Updated March 15, 2018