ฐานข้อมูลไลบรารีขนาดใหญ่เพื่อช่วยในการแสวงหาผลประโยชน์แบบไบนารีบน Linux เครื่องมือนี้สามารถช่วยระบุไลบรารีที่ไม่รู้จักได้โดยการระบุตำแหน่งของสัญลักษณ์ที่รู้จัก สามารถช่วยค้นหาชื่อของแพ็คเกจที่มีไลบรารีที่กำหนด และสามารถค้นหาเวอร์ชันการดีบักของไลบรารีที่คุณกำลังทำงานด้วย
เมื่อระบุไลบรารีแล้ว คุณสามารถถ่ายโอนข้อมูลที่เป็นประโยชน์ เช่น สัญลักษณ์ (ทั้งสัญลักษณ์ที่ส่งออกและตำแหน่งคำนวณที่เป็นประโยชน์พิเศษซึ่งเป็นประโยชน์สำหรับการแสวงหาผลประโยชน์) อุปกรณ์สำหรับเครือข่าย ROP หรือ one shot (อุปกรณ์วิเศษ AKA หรืออุปกรณ์หนึ่งเครื่อง) และข้อจำกัดของพวกมัน
การใช้งานได้รับแรงบันดาลใจจากฐานข้อมูล libc ที่ยอดเยี่ยม
รองรับสถาปัตยกรรมหลายอย่างรวมถึง:
มีห้องสมุดหลายแห่งที่ได้รับการจัดทำดัชนีจากการแจกแจงหลายครั้งในช่วงหลายปีที่ผ่านมา ห้องสมุดที่จัดทำดัชนีคือ:
วิธีที่ต้องการคือเพียงดาวน์โหลดและแตกไฟล์รุ่นล่าสุด Karkinos จะจัดการการอัปเดตด้วยตัวเองตั้งแต่นั้นเป็นต้นมา หรือคุณสามารถโคลนที่เก็บนี้ได้
เมื่อคุณมี Karkinos ด้วยวิธีการใดวิธีหนึ่งแล้ว คุณจะสามารถเข้าถึงเครื่องมือได้โดยการเรียกใช้:
$ ./kark.py --help
ในการรันครั้งแรก จะพยายามแยกฐานข้อมูลออกจากไฟล์บีบอัด คุณจะต้องติดตั้งไบนารี xz
และ cat
และพร้อมใช้งานผ่าน PATH
env var
usage: kark.py [-h] [--libdb {glibc,libstdc++}] [--distro DISTRO]
[--arch {x86,amd64,i386,arm,arm64,mips,mips64,ppc,ppc64,sparc,sparc64,m68k,hppa,sh4}]
[--endian {little,big}]
{find,dump,info,update} ...
description:
karkinos is a library database to assist with exploitation by helping to
identify libraries from known offsets or to dump useful offsets from those
identified libraries. Each database indexes symbols, gadgets and where
possible one shot gadgets (AKA magic gadgets or one gadgets).
architectures indexed:
- x86 (amd64, i386)
- arm (arm, arm64)
- mips (mips, mips64)
- ppc (ppc, ppc64)
- sparc (sparc, sparc64)
- m68k
- hppa
- sh4
- riscv
libraries indexed:
- glibc
- libstdc++
- glibc-ld
- libgcc
- musl
commands:
- find find a library by symbol offsets, file, build id or file hash
- dump dump symbols/gadgets for a given library
- info print some information about a specific library
- update check for updates to the database
- version display version information and exit
positional arguments:
{find,dump,info,update}
command to execute
args arguments for specific command, see examples
optional arguments:
-h, --help show this help message and exit
--libdb {glibc,libstdc++}
the library database to use
--distro DISTRO the linux distribution to filter in symbol search
--arch {x86,amd64,i386,arm,arm64,mips,mips64,ppc,ppc64,sparc,sparc64,m68k,hppa,sh4}
architecture to filter in symbol search
--endian {little,big}
endianess to filter in symbol search
examples:
./kark.py find fgets b20 puts 9c0 fwrite 8a0
./kark.py find 50390b2ae8aaa73c47745040f54e602f
./kark.py find b417c0ba7cc5cf06d1d1bed6652cedb9253c60d0
./kark.py find /lib/x86_64-linux-gnu/libc.so.6
./kark.py --arch arm --endian big find system 440
./kark.py --distro ubuntu fgets b20 puts 9c0
./kark.py dump centos_glibc-2.12-1.107.el6_4.2.x86_64
./kark.py dump opensuse_glibc-2.19-16.9.1.i686 fgets system str_bin_sh
./kark.py info ubuntu_libc6-udeb_2.27-3ubuntu1_amd64
./kark.py update
@0xb0bb