Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikehorn-git/systrace
Simple minimalist strace implementation in C.
https://github.com/mikehorn-git/systrace
Last synced: about 11 hours ago
JSON representation
Simple minimalist strace implementation in C.
- Host: GitHub
- URL: https://github.com/mikehorn-git/systrace
- Owner: MikeHorn-git
- License: mit
- Created: 2024-02-18T21:21:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-07-30T17:23:50.000Z (4 months ago)
- Last Synced: 2024-07-31T03:19:22.838Z (4 months ago)
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Description
Trace system calls of a given pid with ptrace(2) and waitpid(1).# Installation
```bash
git clone https://github.com/MikeHorn-git/systrace.git
cd systrace
make
```# Usage
```bash
Usage: ./systrace
```# Security
```bash
checksec --file=systrace
RELRO STACK CANARY NX PIE RPATH RUNPATH Symbols FORTIFY Fortified Fortifiable FILE
Full RELRO Canary found NX enabled PIE enabled No RPATH No RUNPATH No Symbols Yes 1 1 systrace
```