Rust-for-Malware-Development

Timer Project

A Rust-based timer application that implements a time-based execution control mechanism. This project demonstrates how to create a program that checks the time elapsed since compilation and executes specific actions based on a predefined time threshold.

Downlaod Timer PoC : Downlaod

Features

Technical Details

The program uses:

Prerequisites

Building

To build the project:

cargo build

Running

To run the project:

cargo run

How It Works

  1. The program captures the build time during compilation using environment variables
  2. When executed, it calculates the time difference between the current time and build time
  3. If the elapsed time exceeds the configured threshold (1 day by default):
    • Prints “Time of attack!”
    • Exits with status code -1
  4. If the threshold hasn’t been reached:
    • Displays the remaining time until the threshold

Configuration

The time threshold can be modified by changing the TIME_ATTACK_IN_DAYS constant in src/main.rs.

Credits / References

Found the idea while discussion. The author did not known !.

Rust by : @5mukx