پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور
mkdir x-ui && cd x-ui
docker run -itd --network=host \
-v $PWD/db/:/etc/x-ui/ \
-v $PWD/cert/:/root/cert/ \
| #!/usr/bin/env bash | |
| echo "Applying Torrent blocking rules..." | |
| # Block Torrent algo string using Boyer-Moore (bm) | |
| BLOCK_STRINGS_BM=( | |
| "BitTorrent" | |
| "BitTorrent protocol" | |
| "peer_id=" | |
| ".torrent" | |
| "announce.php?passkey=" | |
| "torrent" |
| #!/bin/bash | |
| # RSS Feed Monitor for Nyaa.si | |
| # ========================== | |
| # This script monitors nyaa.si RSS feed for new items matching a keyword and sends | |
| # notifications via Telegram. | |
| # By default, this script only checks for english-translated anime items. | |
| # | |
| # Requirements: | |
| # - curl |
| #!/bin/bash | |
| interface=$1 | |
| # Check if the interface is valid and set the other interface | |
| if [[ $interface == "wan" ]]; then | |
| other_interface="wanb" | |
| elif [[ $interface == "wanb" ]]; then | |
| other_interface="wan" | |
| else |
| V2ray Tunnels | |
| install v2ray | |
| sudo apt install speedtest-cli | |
| apt-get update -y && apt-get upgrade -y | |
| sudo rm /var/lib/apt/lists/lock | |
| sudo rm /var/cache/apt/archives/lock |
List of Accouns is Here contains JSON, CSV and Raw Text.
Accouts gathering using Like Blockers and below links are theirs API.
Changelog:
| Country,City,Provider,Host,ID | |
| Abkhazia,Sukhum,Aquafon GSM,62.182.8.78:8080,9058 | |
| Abkhazia,Sukhum,"Systema, LTD",cyxym.net:8080,5089 | |
| Abkhaziya,Sukhum,A-Mobile,speedtest.a-mobile.biz:8080,9714 | |
| Afghanistan,Herat,Afghan Wireless,hrtspeedtest.afghan-wireless.com:8080,9622 | |
| Afghanistan,Kabul,Afghan Telecom,sp1.afghantelecom.af:8080,11019 | |
| Afghanistan,Kabul,etisalat Afghanistan,speedtest.etisalat.af:8080,21807 | |
| Afghanistan,Kabul,Afghan Wireless,speedtest.afghan-wireless.com:8080,5189 | |
| Afghanistan,Kabul,Afghan Wireless Communication Company,kdzspeedtest.afghan-wireless.com:8080,13501 | |
| Afghanistan,Kabul,Insta Telecom,speedtest.instatelecom.com:8080,12798 |
ℹ️ Enable iCloud end-to-end encryption:
System settings → Apple ID → iCloud → Set Advanced Data Protection to On.System settings → Apple ID → iCloud → Disable Access iCloud Data on the Web.| 1) Install cloudflared using homebrew: | |
| brew install cloudflare/cloudflare/cloudflared | |
| 2) Create /usr/local/etc/cloudflared/config.yaml, with the following content | |
| proxy-dns: true | |
| proxy-dns-upstream: | |
| - https://1.1.1.1/dns-query | |
| - https://1.0.0.1/dns-query |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import ftplib | |
| import socket | |
| import getpass | |
| try: | |
| input = raw_input |