This commit is contained in:
Anonymous
2023-07-29 23:37:10 +05:30
parent c6c629437c
commit 85f5411b6e
158 changed files with 220479 additions and 4 deletions

8
Stealer/AutoFill.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Stealer;
public class AutoFill : Item
{
public string sName { get; set; }
public string sValue { get; set; }
}

8
Stealer/Bookmark.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Stealer;
public class Bookmark : Item
{
public string sUrl { get; set; }
public string sTitle { get; set; }
}

24
Stealer/BrsInfo.cs Normal file
View File

@@ -0,0 +1,24 @@
using System.Collections.Generic;
namespace Stealer;
public class BrsInfo
{
public List<Password> listps { get; set; } = new List<Password>();
public List<Cookie> listcookie { get; set; } = new List<Cookie>();
public List<Site> listhist { get; set; } = new List<Site>();
public List<Bookmark> listbmark { get; set; } = new List<Bookmark>();
public List<AutoFill> listautofill { get; set; } = new List<AutoFill>();
public List<CreditCard> listcredit { get; set; } = new List<CreditCard>();
}

12
Stealer/BrsType.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Stealer;
public class BrsType
{
public const string Chrome = "Chrome";
public const string Firefox = "Firefox";
public const string IE = "IE";
public const string Edge = "Edge";
}

6
Stealer/Consts.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Stealer;
public class Consts
{
public static string[] SAMESITES = new string[3] { "lax", "strict", "no_restriction" };
}

26
Stealer/Cookie.cs Normal file
View File

@@ -0,0 +1,26 @@
namespace Stealer;
public class Cookie : Item
{
public string domain { get; set; }
public double expirationDate { get; set; }
public bool hostOnly { get; set; }
public bool httpOnly { get; set; }
public string name { get; set; }
public string path { get; set; }
public string sameSite { get; set; }
public bool secure { get; set; }
public bool session { get; set; }
public string storeId { get; set; }
public string value { get; set; }
}

12
Stealer/CreditCard.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Stealer;
public class CreditCard : Item
{
public string sNumber { get; set; }
public string sExpYear { get; set; }
public string sExpMonth { get; set; }
public string sName { get; set; }
}

6
Stealer/Item.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Stealer;
public class Item
{
public string type { get; set; }
}

12
Stealer/Password.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Stealer;
public class Password : Item
{
public string sUrl { get; set; }
public string sUsername { get; set; }
public string sPassword { get; set; }
public string Target { get; set; }
}

10
Stealer/Site.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace Stealer;
public class Site : Item
{
public string sUrl { get; set; }
public string sTitle { get; set; }
public int iCount { get; set; }
}