Team DCCS
Kanalga Telegram’da o‘tish
Dynamic Crimson Cyber Squad (DCCS) 😉 https://telegra.ph/Legal-Notice-For-Further-Inspaction-01-30 @CyberShieldElite
Ko'proq ko'rsatish1 974
Obunachilar
Ma'lumot yo'q24 soatlar
-117 kunlar
-6630 kunlar
Postlar arxiv
1 974
Premium BDIX VPS
Deploy enterprise-grade virtual servers on Bangladesh's premium BDIX network, engineered for exceptional performance, low latency, and maximum reliability.
Features
• Premium BDIX Network
• Dedicated vCPU & NVMe SSD Storage
• Instant Deployment
• 99.9% Uptime Guarantee
Whether you're hosting websites, applications, or business workloads, our infrastructure is built to deliver consistent performance and dependable uptime.
Get Started Today:
https://banglahoster.net/billing/index.php?rp=%2Fstore%2Fbdix-vps¤cy=2
1 974
Facebook Page Remove / Copyright paren
Amn kew thakle inbox e ashun kaj hole parisromik deya hbe ✅
@mursalinahamed6t9
1 974
Repost from Bangla Hoster
To celebrate the birthday of the CEO of Bangla Hoster, we're pleased to offer an exclusive 50% OFF on all BDIX Hosting and BDIX Reseller Hosting packages.
Offer Period: Today – 30 June
Promo Code:
BANGLA28
Eligible BDIX Hosting Packages
• BDIX Starter
• BDIX Basic
• BDIX Standard
• BDIX Business
• BDIX Enterprise
Eligible BDIX Reseller Packages
• BDIX 100 S4
• BDIX 200 Pro
Order Here
BDIX Hosting
https://banglahoster.net/billing/index.php?rp=%2Fstore%2Fbdix-cpanel-hosting¤cy=2
BDIX Reseller Hosting
https://banglahoster.net/billing/index.php?rp=%2Fstore%2Fbdix-reseller-hosting¤cy=2
Thank you for being a valued part of the Bangla Hoster community. We appreciate your continued trust and support.1 974
VPS Giveaway
দেখি কতজন আনমিউট করে রাখছে আর আপনাদের রেসপন্স 😮💨
Derails :
Username :
root
Password : bdix@giveaway
Ip : 144.79.249.34
যে পাবে এইটা তার 🐸 মেয়াদ নিজেও জানি না।
পাসওয়ার্ড চেঞ্জ কমান্ড : passwd
Join @BANGLA_HOSTER for more!1 974
res(true, 'Log file created successfully.', array_filter([ 'file' => $fp, 'download_url' => $dl, 'requested_size' => fbytes($tb), 'actual_size' => fbytes($as), 'actual_bytes' => $as, 'lines_written' => $lc, 'elapsed_sec' => $el, 'throughput_mbs' => $thr, ]));
`
কিভাবে ব্যাবহার করবেন?
ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸
কর্ণজব সেটাপ:
নিচের কমান্ড লাগিয়ে দেন
php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GBনা পারলে কমেন্ট এ জানান
1 974
`php
<?php /** * @package ServerCDI * @author Mursalin <mursalin@xit.bd> * @company Xentic IT Bangladesh Inc. — https://xit.bd * @version 2.1.0 * @license MIT */ if (PHP_SAPI !== 'cli') header('Content-Type: application/json'); set_time_limit(0); ini_set('memory_limit', '512M'); define('CS', 8 * 1024 * 1024); define('TL', 100); function res(bool $ok, string $msg, array $d = []): void { echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL; exit; } function psz(string $in): int|false { $in = trim($in); if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false; $v = (float) $m[1]; $u = strtoupper($m[2] ?? 'B'); $x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776]; return (int) ($v * $x[$u]); } function fbytes(int $b): string { if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB'; if ($b >= 1073741824) return round($b / 1073741824, 2) . ' GB'; if ($b >= 1048576) return round($b / 1048576, 2) . ' MB'; if ($b >= 1024) return round($b / 1024, 2) . ' KB'; return $b . ' B'; } function burl(): string { $s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http'; $h = $_SERVER['HTTP_HOST'] ?? 'localhost'; $p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/'); return "{$s}://{$h}{$p}"; } function rpath(): string { $segs = []; for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4)); return './logs/' . implode('/', $segs); } function tpl(int $n, int $sid): string { $ts = date('Y-m-d H:i:s'); $ids = []; for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8)); $b = ''; for ($i = 0; $i < $n; $i++) { $b .= sprintf( "[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n", $ts, $sid + $i, $ids[$i % 32] ); } return $b; } if (PHP_SAPI === 'cli') { $cli = []; foreach (array_slice($argv ?? [], 1) as $arg) { if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2]; } $rsz = $cli['size'] ?? ''; $fn = $cli['filename'] ?? ''; $dir = rtrim($cli['dir'] ?? rpath(), '/\\'); } else { $rsz = $_REQUEST['size'] ?? ''; $fn = $_REQUEST['filename'] ?? ''; $dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\'); } if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)'); $tb = psz($rsz); if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB'); if ($fn !== '') { $fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn)); if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log'; } else { $fn = 'gen_' . date('Ymd_His') . '.log'; } if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}"); $fp = $dir . '/' . $fn; $t0 = microtime(true); $fh = fopen($fp, 'wb'); if (!$fh) res(false, "Cannot write: {$fp}"); stream_set_write_buffer($fh, CS); $wr = 0; $lc = 0; $hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n"; fwrite($fh, $hdr); $wr += strlen($hdr); while ($wr < $tb) { $rem = $tb - $wr; $tmpl = tpl(TL, $lc + 1); $tlen = strlen($tmpl); $rep = (int) ceil(min(CS, $rem) / $tlen); $chk = str_repeat($tmpl, $rep); if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem); fwrite($fh, $chk); $wr += strlen($chk); $lc += substr_count($chk, "\n"); unset($chk); } fclose($fh); $el = round(microtime(true) - $t0, 3); $as = filesize($fp); $thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0; $dl = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;
1 974
res(true, 'Log file created successfully.', array_filter([
'file' => $fp,
'download_url' => $dl,
'requested_size' => fbytes($tb),
'actual_size' => fbytes($as),
'actual_bytes' => $as,
'lines_written' => $lc,
'elapsed_sec' => $el,
'throughput_mbs' => $thr,
]));
`
কিভাবে ব্যাবহার করবেন?
ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸
কর্ণজব সেটাপ:
নিচের কমান্ড লাগিয়ে দেন
php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GBনা পারলে কমেন্ট এ জানান
1 974
`php
<?php
/**
* @package ServerCDI
* @author Mursalin <mursalin@xit.bd>
* @company Xentic IT Bangladesh Inc. — https://xit.bd
* @version 2.1.0
* @license MIT
*/
if (PHP_SAPI !== 'cli') header('Content-Type: application/json');
set_time_limit(0);
ini_set('memory_limit', '512M');
define('CS', 8 * 1024 * 1024);
define('TL', 100);
function res(bool $ok, string $msg, array $d = []): void {
echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL;
exit;
}
function psz(string $in): int|false {
$in = trim($in);
if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false;
$v = (float) $m[1];
$u = strtoupper($m[2] ?? 'B');
$x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776];
return (int) ($v * $x[$u]);
}
function fbytes(int $b): string {
if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB';
if ($b >= 1073741824) return round($b / 1073741824, 2) . ' GB';
if ($b >= 1048576) return round($b / 1048576, 2) . ' MB';
if ($b >= 1024) return round($b / 1024, 2) . ' KB';
return $b . ' B';
}
function burl(): string {
$s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$h = $_SERVER['HTTP_HOST'] ?? 'localhost';
$p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/');
return "{$s}://{$h}{$p}";
}
function rpath(): string {
$segs = [];
for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4));
return './logs/' . implode('/', $segs);
}
function tpl(int $n, int $sid): string {
$ts = date('Y-m-d H:i:s');
$ids = [];
for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8));
$b = '';
for ($i = 0; $i < $n; $i++) {
$b .= sprintf(
"[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n",
$ts, $sid + $i, $ids[$i % 32]
);
}
return $b;
}
if (PHP_SAPI === 'cli') {
$cli = [];
foreach (array_slice($argv ?? [], 1) as $arg) {
if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2];
}
$rsz = $cli['size'] ?? '';
$fn = $cli['filename'] ?? '';
$dir = rtrim($cli['dir'] ?? rpath(), '/\\');
} else {
$rsz = $_REQUEST['size'] ?? '';
$fn = $_REQUEST['filename'] ?? '';
$dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\');
}
if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)');
$tb = psz($rsz);
if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB');
if ($fn !== '') {
$fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn));
if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log';
} else {
$fn = 'gen_' . date('Ymd_His') . '.log';
}
if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}");
$fp = $dir . '/' . $fn;
$t0 = microtime(true);
$fh = fopen($fp, 'wb');
if (!$fh) res(false, "Cannot write: {$fp}");
stream_set_write_buffer($fh, CS);
$wr = 0;
$lc = 0;
$hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n";
fwrite($fh, $hdr);
$wr += strlen($hdr);
while ($wr < $tb) {
$rem = $tb - $wr;
$tmpl = tpl(TL, $lc + 1);
$tlen = strlen($tmpl);
$rep = (int) ceil(min(CS, $rem) / $tlen);
$chk = str_repeat($tmpl, $rep);
if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem);
fwrite($fh, $chk);
$wr += strlen($chk);
$lc += substr_count($chk, "\n");
unset($chk);
}
fclose($fh);
$el = round(microtime(true) - $t0, 3);
$as = filesize($fp);
$thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0;
$dl = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;1 974
res(true, 'Log file created successfully.', array_filter([
'file' => $fp,
'download_url' => $dl,
'requested_size' => fbytes($tb),
'actual_size' => fbytes($as),
'actual_bytes' => $as,
'lines_written' => $lc,
'elapsed_sec' => $el,
'throughput_mbs' => $thr,
]));
কিভাবে ব্যাবহার করবেন? ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸 কর্ণজব সেটাপ: নিচের কমান্ড লাগিয়ে দেনphp php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GB
`
না পারলে কমেন্ট এ জানান1 974
`php
<?php
/**
* @package ServerCDI
* @author Mursalin <mursalin@xit.bd>
* @company Xentic IT Bangladesh Inc. — https://xit.bd
* @version 2.1.0
* @license MIT
*/
if (PHP_SAPI !== 'cli') header('Content-Type: application/json');
set_time_limit(0);
ini_set('memory_limit', '512M');
define('CS', 8 * 1024 * 1024);
define('TL', 100);
function res(bool $ok, string $msg, array $d = []): void {
echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL;
exit;
}
function psz(string $in): int|false {
$in = trim($in);
if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false;
$v = (float) $m[1];
$u = strtoupper($m[2] ?? 'B');
$x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776];
return (int) ($v * $x[$u]);
}
function fbytes(int $b): string {
if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB';
if ($b >= 1073741824) return round($b / 1073741824, 2) . ' GB';
if ($b >= 1048576) return round($b / 1048576, 2) . ' MB';
if ($b >= 1024) return round($b / 1024, 2) . ' KB';
return $b . ' B';
}
function burl(): string {
$s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$h = $_SERVER['HTTP_HOST'] ?? 'localhost';
$p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/');
return "{$s}://{$h}{$p}";
}
function rpath(): string {
$segs = [];
for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4));
return './logs/' . implode('/', $segs);
}
function tpl(int $n, int $sid): string {
$ts = date('Y-m-d H:i:s');
$ids = [];
for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8));
$b = '';
for ($i = 0; $i < $n; $i++) {
$b .= sprintf(
"[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n",
$ts, $sid + $i, $ids[$i % 32]
);
}
return $b;
}
if (PHP_SAPI === 'cli') {
$cli = [];
foreach (array_slice($argv ?? [], 1) as $arg) {
if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2];
}
$rsz = $cli['size'] ?? '';
$fn = $cli['filename'] ?? '';
$dir = rtrim($cli['dir'] ?? rpath(), '/\\');
} else {
$rsz = $_REQUEST['size'] ?? '';
$fn = $_REQUEST['filename'] ?? '';
$dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\');
}
if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)');
$tb = psz($rsz);
if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB');
if ($fn !== '') {
$fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn));
if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log';
} else {
$fn = 'gen_' . date('Ymd_His') . '.log';
}
if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}");
$fp = $dir . '/' . $fn;
$t0 = microtime(true);
$fh = fopen($fp, 'wb');
if (!$fh) res(false, "Cannot write: {$fp}");
stream_set_write_buffer($fh, CS);
$wr = 0;
$lc = 0;
$hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n";
fwrite($fh, $hdr);
$wr += strlen($hdr);
while ($wr < $tb) {
$rem = $tb - $wr;
$tmpl = tpl(TL, $lc + 1);
$tlen = strlen($tmpl);
$rep = (int) ceil(min(CS, $rem) / $tlen);
$chk = str_repeat($tmpl, $rep);
if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem);
fwrite($fh, $chk);
$wr += strlen($chk);
$lc += substr_count($chk, "\n");
unset($chk);
}
fclose($fh);
$el = round(microtime(true) - $t0, 3);
$as = filesize($fp);
$thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0;
$dl = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;1 974
তেমন কিছু না লিখা ছিলো আনলিমিটেড ডিস্ক 🥰
সার্ভার এর আত্মার মাগফিরাত কামনা করছি?
আমার কি পাপ হবে?
সার্ভার এর মালিক রাগ করলা?🥲
স্ক্রিপ্ট দিয়ে দিবো৷ নাকি আপনারও টেস্ট করতেন 🌚🤲
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
