Source_code || 𝐒𝐐𝐒 𓆃 – Telegram
Source_code || 𝐒𝐐𝐒 𓆃
240 subscribers
158 photos
105 videos
8 files
247 links
Привет @durov
Этот канал не нарушает закон.
И в нем нет порнографических и грубых постов. пожалуйста, обратите внимание!

Официальный канал в @Telegram
Без спама
Download Telegram
سلام
تیم ما در تلاش هست که با یک فعالیت یک بمب به میدان برگردیم منتظر ما باشید

#Cyber_justice
https://news.1rj.ru/str/Cyber_justice_ir
آموزش پایتون به صورت رایگان برای کسایی که میخان باهامون همکاری کنن فراهم شد برای دریافت شرایط به ربات زیر پیام بدید
@GOOD_SQS_bot
https://news.1rj.ru/str/Cyber_justice_ir
سلام
@Cyberjusticesqs_bot
ربات ما آماده هست ازین به بعد میتونید استفاده کنید چه چیز هایی استفاده میشه چه بدردی میخوره کامل گفته میشه
https://news.1rj.ru/str/Cyber_justice_ir
This media is not supported in your browser
VIEW IN TELEGRAM
**Sometimes the heart feels like a dark, locked room 🖤… filled with voices that never quiet down.
Sadness eats away slowly, like rust 🕯️… stealing your sleep, stealing your peace.

Life can be cruel — people come, they stay, and then they leave 🌫️.
You’re left alone with their empty spaces, while grief builds a home inside you… like a shadow that never lets go, even on the brightest days 🌑.

Some wounds never heal. Time doesn’t erase them — it only teaches you how to live beside them.
But still, there will be nights when the whole world feels heavy on your shoulders 🌌, and nothing you’ve learned can save you.

And in that silence… you finally understand:
Some sadness isn’t meant to fade.
It’s meant to become a part of you 🖤🥀.**
2
🖤 Darkness isn’t always something to fear...
Sometimes it’s the only place you can breathe without a mask.
This is our world—between silence, scars, and hidden truths.
If you’re ready to walk through the shadows… welcome.
2👎1
"Life is a journey, not a race👾
managment_tel_bot.zip
141.8 KB
سورس ربات مدیریت گروه حرفه ای ورژن دیباگ شده
https://news.1rj.ru/str/Source_code_SQS
Source_code || 𝐒𝐐𝐒 𓆃
managment_tel_bot.zip
پیشنیاز هاشو اینجوری نصب کنید :
pip install python-telegram-bot==13.15 urllib3==1.26.16 requests certifi
Source_code || 𝐒𝐐𝐒 𓆃
managment_tel_bot.zip
سورس ربات مدیریت گروه تلگرام | مدیریت گپ

ربات مدیریت حرفه‌ای گروه با طراحی شیشه‌ای زیبا

📰 امکانات اصلی :

🛡 سیستم حفاظتی پیشرفته :
• ضد لینک و فوروارد هوشمند
• ضد فحش فارسی
• شناسایی اسپم و ضد تبچی
• قفل گروه زمان‌دار

⏱️ سیستم مدیریتی کامل :
• بن، میوت، اخطار و مدیریت کاربران
• پنل ادمین با دکمه‌های اینلاین
• دستورات کامل به دو زبان فارسی
• تنظیمات پیشرفته

🫡 اطلاعات مالی آنلاین :
• نمایش قیمت لحظه‌ای ارز، طلا و سکه
• قیمت ارزهای دیجیتال (بیت‌کوین و...)
• به‌روزرسانی خودکار قیمت‌ها

📁 سیستم آمار هوشمند :
• آمار دقیق فعالیت در گروه
• رتبه‌بندی کاربران فعال
• نمایش اطلاعات کاربر شامل تاریخ ساخت اکانت

🎨 طراحی منحصر به فرد :
• رابط کاربری شیشه‌ای و زیبا
• پیام‌های فارسی با قالب حرفه‌ای
• پشتیبانی از تاریخ و ساعت شمسی

⚙️ ویژگی‌های فنی :
• نوشته شده با پایتون و SQLite
• عملکرد سریع و بهینه‌سازی شده
• کد ساده و قابل گسترش

📥 دانلود کنید و لذت ببرید!
https://news.1rj.ru/str/Source_code_SQS
https://news.1rj.ru/str/Sourse_code_chanell
بهترین سورس های ربات
// نیاز به نصب: npm init -y
// npm install http-proxy socksv5 basic-auth

const http = require('http');
const net = require('net');
const url = require('url');
const httpProxy = require('http-proxy');
const socks = require('socksv5'); // socksv5 package
const basicAuth = require('basic-auth');

// تنظیمات قابل تغییر
const HTTP_PORT = process.env.HTTP_PORT || 8080;
const SOCKS_PORT = process.env.SOCKS_PORT || 1080;
const AUTH_TOKEN = process.env.AUTH_TOKEN || "CHANGE_ME_TOKEN"; // توکن احراز هویت

// تابع ساده بررسی توکن (از هدر Authorization: Bearer <token> یا query token)
function checkAuth(req) {
// 1) Bearer token در هدر Authorization
const authHeader = (req.headers['authorization'] || '').trim();
if (authHeader.toLowerCase().startsWith('bearer ')) {
const token = authHeader.slice(7).trim();
return token === AUTH_TOKEN;
}

// 2) Basic auth (username: token)
const credentials = basicAuth(req);
if (credentials && credentials.name && credentials.name === AUTH_TOKEN) {
return true;
}

// 3) query ?token=...
try {
const parsed = url.parse(req.url, true);
if (parsed.query && parsed.query.token === AUTH_TOKEN) return true;
} catch (e) {}

return false;
}

/* ---------- HTTP / HTTPS proxy (supports CONNECT) ---------- */

const proxy = httpProxy.createProxyServer({});

const httpServer = http.createServer((req, res) => {
if (!checkAuth(req)) {
res.writeHead(407, { 'Content-Type': 'text/plain', 'Proxy-Authenticate': 'Bearer' });
res.end('Proxy authentication required.');
return;
}

// برای درخواست‌های عادی HTTP، از http-proxy استفاده می‌کنیم
const target = req.url;
// اگر URL کامل نیست (مثلاً /path) باید از header host استفاده کنیم
if (!/^https?:\/\//i.test(target)) {
// ساخت target از host header
const host = req.headers['host'];
if (!host) {
res.writeHead(400);
res.end('Bad Request - no host header');
return;
}
const full = `http://${host}${req.url}`;
proxy.web(req, res, { target: full, changeOrigin: true }, (err) => {
res.writeHead(502);
res.end('Bad gateway: ' + err.message);
});
return;
}

proxy.web(req, res, { target, changeOrigin: true }, (err) => {
res.writeHead(502);
res.end('Bad gateway: ' + err.message);
});
});

// پشتیبانی از CONNECT (برای HTTPS)
httpServer.on('connect', (req, clientSocket, head) => {
// req.url === host:port
// برای CONNECT احراز هویت هم بررسی می‌کنیم:
if (!checkAuth(req)) {
clientSocket.write(
'HTTP/1.1 407 Proxy Authentication Required\r\nProxy-Authenticate: Bearer\r\n\r\n'
);
clientSocket.end();
return;
}

const [host, port] = req.url.split(':');
const serverSocket = net.connect(Number(port) || 443, host, () => {
clientSocket.write('HTTP/1.1 200 Connection Established\r\n\r\n');
serverSocket.write(head);
serverSocket.pipe(clientSocket);
clientSocket.pipe(serverSocket);
});

serverSocket.on('error', (err) => {
clientSocket.write('HTTP/1.1 502 Bad Gateway\r\n\r\n');
clientSocket.end();
});
});

httpServer.listen(HTTP_PORT, () => {
console.log(`HTTP(S) proxy listening on port ${HTTP_PORT}`);
});

/* ---------- SOCKS5 server ---------- */

const socksServer = socks.createServer((info, accept, deny) => {
// info contains: srcAddr, srcPort, dstAddr, dstPort, addressType
// socksv5 package expects authentication handled separately
const socket = accept(true);
// socket is piped automatically by library
});

socksServer.useAuth(socks.auth.UserPassword((user, pass, cb) => {
// ما از username=token یا password=token استفاده می‌کنیم
if (user === AUTH_TOKEN || pass === AUTH_TOKEN) {
return cb(true);
}
return cb(false);
}));

socksServer.listen(SOCKS_PORT, '0.0.0.0', () => {
console.log(`SOCKS5 proxy listening on port ${SOCKS_PORT}`);
});

// خطاها را هندل کن
proxy.on('error', (err) => {
console.error('Proxy error:', err);
});
console.error('Uncaught Exception:', err);
});
process.on('SIGINT', () => {
console.log('Shutting down...');
socksServer.close();
httpServer.close();
process.exit();
});
sudo apt update
sudo apt install -y nodejs build-essential
sudo chown $USER:$USER /opt/myproxy
cd /opt/myproxy
# سپس فایل proxy-server.js را با nano یا scp آپلود کن