Skip to content

Impersonation of Minecraft Client connecting to Microsoft & Minecraft

License

Notifications You must be signed in to change notification settings

ismaileke/minecraft-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minecraft-auth

Provides the connections needed for the server.

Usage

📄Cargo.toml

[dependencies]
minecraft-auth = { git = "https://github.com/ismaileke/minecraft-auth.git", branch = "master" }

📄main.rs

use minecraft_auth::bedrock;

#[tokio::main]
async fn main() {
    let mut bedrock = bedrock::new("1.21.2".to_string(), false); // (client version, debug mode)
    if bedrock.auth().await {
        let chain = bedrock.get_chain_data();
        let ec_key = bedrock.get_ec_key().unwrap(); // When sending the Login Packet we will need this
        println!("Chain 1: {}\nChain 2: {}", chain[0], chain[1]);
    }
}

📍 NOTE

It is still in development.