From 8eebd7fd0de868becb378fd833e1e098d12c73bb Mon Sep 17 00:00:00 2001 From: DB Date: Sun, 8 Mar 2026 15:16:42 +0530 Subject: [PATCH] Added tracer --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2eb8138..0f70af2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,7 +98,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] -name = "stackfinder" +name = "stacktracer" version = "0.1.0" dependencies = [ "clap", diff --git a/Cargo.toml b/Cargo.toml index 5eaab8b..a22d994 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "stackfinder" +name = "stacktracer" version = "0.1.0" edition = "2024" description = "A rust program to print the stack trace of a given thread" diff --git a/README.md b/README.md index 91475fe..688f9bc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Note that you might need to install the `x86_64-pc-windows-gnu` toolchain To view a detailed usage guide, you can pass the `--help` flag: ``` -Z:\> stackfinder.exe --help +Z:\> stacktracer.exe --help _____ _ _ _______ / ____| | | |__ __| | (___ | |_ __ _ ___| | _| |_ __ __ _ ___ ___ _ __ @@ -30,7 +30,7 @@ Z:\> stackfinder.exe --help A rust program to print the stack trace of a given thread -Usage: stackfinder.exe [OPTIONS] --pid +Usage: stacktracer.exe [OPTIONS] --pid Options: --pid Process ID @@ -43,13 +43,13 @@ Options: The only required option is the `--pid` flag. To enumerate a process without targetting a particular thread, you go like: ``` -Z:\> stackfinder.exe --pid 1234 +Z:\> stacktracer.exe --pid 1234 ``` To enumerate a specific thread, you can specify the ThreadID using the `--tid` flag: ``` -Z:\>.\stackfinder.exe --pid 3688 --tid 7336 +Z:\>.\stacktracer.exe --pid 3688 --tid 7336 _____ _ _ _______ / ____| | | |__ __| | (___ | |_ __ _ ___| | _| |_ __ __ _ ___ ___ _ __