博文

免费获取Warp key 2000万GB免费流量,100%可用,Telegram Warp群已废

图片
  通过 Replit 项目获取 Warp 可以使用的免费密钥: 1.  前往 Replit 官网。 https://replit.com/ 点击 "Sign Up" 注册 Replit 账号,使用邮箱、Google、或 GitHub 账号登录。 注册完成后,登录你的 Replit 账号。 2. 打开这个链接, https://replit.com/@misaka-blog/warp-key-generator?v=1  或者搜索  “ Warp Key Generator" ,然后点击 fork 3. 点击 Run ,运行,就可以在右侧看到生成的 key 了

自动找出,酒店隐藏摄像头的正确姿势,防止被偷拍

图片
  《腾讯手游加速器》检测摄像头方法 1. 下载地址 : https://sj.qq.com/appdetail/com.tencent.cmocmna

Cloudflare WARP+,推出 MASQUE新协议,无需优选ip,直连,支持pc ,Android,ios ,MAC ,linux,附赠近1K个Warp+ 20-24PB的key

图片
下载客户端:  https://one.one.one.one/ 近1K个Warp+ 20-24PB的key : https://www.nodeseek.com/post-10037-1 windows 端开启: 1. 安装客户端 2. 从上面筛选可用的key 填入 3. 新建mdm.xml,输入以下内容并保存 < dict > < key > warp_tunnel_protocol </ key > < string > masque </ string > </ dict > 将mdm.xml文件放到C:\ProgramData\Cloudflare目录 杀掉进程重新打开即可使用 移动端: Androd 端需要在Google play 加入测试使用测试版本

无脑一键serv00搭建哪吒监控面板+Agent

图片
  1.  github 创建OAuth应用,用于登录哪吒面板 https://nezha.wiki/guide/dashboard.html#%E8%8E%B7%E5%8F%96-github-%E7%9A%84-client-id-%E5%92%8C%E5%AF%86%E9%92%A5 2. 在Serv00 Panel 如下图确保设置为【Enabled】 添加两个TCP 端口 连接Serv00 ssh 安装 go、pm2 安装PM2:  bash <(curl -s https://raw.githubusercontent.com/k0baya/alist_repl/main/serv00/install-pm2.sh) 安装GO: 修改 .profile 文件 echo ‘export PATH=~/local/soft/go/bin:$PATH’ >> ~/.profile 使 .profile 的修改生效 source ~/.profile 检查 go 版本 go version 安装nezha面板并添加监控 bash <(curl -s https://raw.githubusercontent.com/k0baya/nezha4serv00/main/install-dashboard.sh) 面板端口填写端口1; RPC端口填写端口2 github登录面板 右上角【用户名】-【管理后台】-【设置】-【未接入CDN的面板服务器域名/IP】填入自己的域名 【管理后台】- 【服务器】- 【新增服务器】- 【一键添加监控】 安装nezha-Agent 把Serv00 监控上,复制上一步创建的监控密钥 bash <(curl -s https://raw.githubusercontent.com/k0baya/nezha4serv00/main/install-agent.sh) 清空安装 pkill - kill -u ${username} chmod -R 755 ~/* \ chmod -R 755 ~/.* \ rm -rf ~/.* \ rm -rf ~/*

基于cloudflare pages搭建免费VLESS节点,支持chatgpt,奈菲解锁,无需服务器,无需域名,youtube 轻松跑10w+

图片
视频地址:https://www.youtube.com/watch?v=JnRCe1hUDgM  项目地址:https://github.com/6Kmfi6HP/EDtunnel 选择 fork 项目,到自己的仓库 选择EDtunnel 仓库 环境变量设置 优选ip: https://github.com/XIU2/CloudflareSpeedTest/releases youtube 轻松跑10W +

免费试用用cloudflare worker保活serv00和CT8(可以电报通知)

图片
  github保活会封账号,建议停用     视频 :https://www.youtube.com/watch?v=qn1PfkBOKco Telegram boot 获取     :https://www.youtube.com/watch?v=0_IgYXgBwjw worker代码: addEventListener('fetch', event => {   event.respondWith(handleRequest(event.request)) }) addEventListener('scheduled', event => {   event.waitUntil(handleScheduled(event.scheduledTime)) }) async function handleRequest(request) {   return new Response('Worker is running') } async function handleScheduled(scheduledTime) {   const accounts = JSON.parse(ACCOUNTS_JSON)   const results = await loginAccounts(accounts)   await sendSummary(results) } async function loginAccounts(accounts) {   const results = []   for (const account of accounts) {     const result = await loginAccount(account)     results.push({ ...account, ...result })     await delay(Math.floor(Math.random() * 8000) + 1000)   }   return results } function generateRandomUse...

serv00 搭建vpn 代理保活方法,防止被系统kill

  下面这个 sh脚本 是修改了 Sing-box  6 的一键四协议安装脚本, 执行即安装, 但是没有哪吒探针和ARGO, 放在 /home/你的用户名/ 目录下就行,  随便起个名字 gaojilingjuli .sh 需要在web面板开放一个55501的tcp端口, 55502的udp端口, 55503的udp端口(可以自定义, 下面脚本中对应修改就行) #!/bin/bash # 定义颜色 re="\033[0m" red="\033[1;91m" green="\e[1;32m" yellow="\e[1;33m" purple="\e[1;35m" red() { echo -e "\e[1;91m$1\033[0m"; } green() { echo -e "\e[1;32m$1\033[0m"; } yellow() { echo -e "\e[1;33m$1\033[0m"; } purple() { echo -e "\e[1;35m$1\033[0m"; } reading() { read -p "$(red "$1")" "$2"; } USERNAME=$(whoami) HOSTNAME=$(hostname) export UUID=${UUID:-'bc97f674-c578-4940-9234-0a1da46041b9'} [[ "$HOSTNAME" == "s1.ct8.pl" ]] && WORKDIR="domains/${USERNAME}.ct8.pl/logs" || WORKDIR="domains/${USERNAME}.serv00.net/logs" [ -d "$WORKDIR" ] || (mkdir -p "$WORKDIR" && chmod 777 "$WORKDIR") in...