# cheapsec **Repository Path**: pvz122/cheapsec ## Basic Information - **Project Name**: cheapsec - **Description**: A tool to inspect heap exploitabilities and security checks for glibc, just like checksec. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-05-20 - **Last Updated**: 2023-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cheapsec A tool to inspect heap exploitabilities and security checks for glibc, just like `checksec`. ## Install Firstly, clone the repository. Then make sure you have installed `gcc` and `python3`. Finally, run: ```shell sudo ./install.sh ``` ## Usage Run `cheapsec -h` for usage: ```shell root@pwn:~# cheapsec -h Usage: cheapsec cheapsec -t[es] cheapsec -l cheapsec -h Options: [no option]: Lookup exploitabilities and security checks for glibc library -l: Lookup exploitabilities and security checks for the specified glibc version -t: Run tests for exploitabilities and security checks -te: Run tests for exploitabilities -ts: Run tests for security checks -h: Print help message Arguments: : Path to executable, cheapsec will test the glibc library linked with executable : Path to glibc library, e.g. /lib/x86_64-linux-gnu/ : Version of glibc library, e.g. 2.27 ```