Skip to content

Files

Latest commit

Mar 31, 2025
cbab091 · Mar 31, 2025

History

History
This branch is 21 commits behind Whitecat18/Rust-for-Malware-Development:main.

process_argument_spoofing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 28, 2025
Mar 28, 2025
Mar 31, 2025

README.md

Process Argument Spoofing

Process Argument Spoofing is a technique used to manipulate or hide command-line arguments of a process, making it harder for security tools to detect the actual parameters passed to the program.

⬇️ Download

Features

  • Process argument spoofing implementation in Rust
  • Uses Windows API and NT API for process manipulation
  • Demonstrates process memory manipulation techniques

Requirements

  • Rust toolchain
  • Required dependencies:
    • winapi
    • ntapi
    • memoffset

Installation

  1. Clone the repository
  2. Navigate to the project directory
  3. Run cargo build to compile the project

Usage

  1. Build the project using Cargo:

    cargo build --release
  2. Run the executable:

    ./target/release/process_argument_spoofing.exe

References

Author

@5mukx