Skip to content

Latest commit

 

History

History
executable file
·
35 lines (27 loc) · 1.52 KB

README.md

File metadata and controls

executable file
·
35 lines (27 loc) · 1.52 KB

Steal-Token-RS

Overview

Steal-Token-RS is a Rust project showcasing how to obtain and impersonate a user's access token, enabling manipulation of system privileges.

Features

  • Retrieves the current user's access token.
  • Impersonates another process and acquires its access token.
  • Demonstrates the manipulation of system privileges.

Prerequisites

  • Rust programming language and Cargo build system installed.
  • Windows operating system.

Usage

  1. Clone the repository: git clone https://github.com/your-username/steal-token-rs.git
  2. Navigate to the project directory: cd steal-token-rs
  3. Build the project: cargo build --release
  4. Run the executable: .\target\release\steal-token-rs.exe <PID>
    • Replace <PID> with the Process ID (PID) of the target process whose token you want to steal.

Example

cargo build --release
.\target\release\steal-token-rs.exe 1234

References