Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Linux Binary Analysis

You're reading from  Learning Linux Binary Analysis

Product type Book
Published in Feb 2016
Publisher Packt
ISBN-13 9781782167105
Pages 282 pages
Edition 1st Edition
Languages
Author (1):
Ryan "elfmaster" O'Neill Ryan "elfmaster" O'Neill
Profile icon Ryan "elfmaster" O'Neill

Table of Contents (17) Chapters

Learning Linux Binary Analysis
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
The Linux Environment and Its Tools The ELF Binary Format Linux Process Tracing ELF Virus Technology – Linux/Unix Viruses Linux Binary Protection ELF Binary Forensics in Linux Process Memory Forensics ECFS – Extended Core File Snapshot Technology Linux /proc/kcore Analysis Index

Direct sys_call_table modifications


Traditional kernel rootkits, such as adore and phalanx, worked by overwriting pointers in sys_call_table so that they would point to a replacement function, which would then call the original syscall as needed. This was accomplished by either an LKM or a program that modified the kernel through /dev/kmem or /dev/mem. On today's Linux systems, for security reasons, these writable windows into memory are disabled or are no longer capable of anything but read operations depending on how the kernel is configured. There have been other ways of trying to prevent this type of infection, such as marking sys_call_table as const so that it is stored in the .rodata section of the text segment. This can be bypassed by marking the corresponding PTE (short for Page Table Entry) as writeable, or by disabling the write-protect bit in the cr0 register. Therefore, this type of infection is a very reliable way to make a rootkit even today, but it is also very easily detected...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}