github 地址: https://github.com/ypq123456789/change-root-password 抢机子自己的手速总是不够快,总是抢不过别人,那只能借助科技的力量了。借助 claude 一晚上弄出来的,枪机必备脚本 Change Root Password ,求鸡腿、求 star !可以拿快过期的机子测试使用,千万不要拿自己用的机子轻易尝试!
这个脚本用于快速修改 Linux 系统的 root 密码和 SSH 配置,抢机必备。它主要用于临时 VPS 的快速配置,不适用于生产环境或长期使用的个人服务器。
注意: 本脚本只适用于快速改 root 密码抢别人送的 vps ,不适宜用于自用机子,更不适用于生产环境,如果你在自用机子和生产环境上使用本脚本导致无法连接上 ssh ,后果自负!!!
这种方法会自动获取最新版本的脚本:
curl -s https://api.github.com/repos/ypq123456789/change-root-password/contents/change_root_password.sh | jq -r .content | base64 -d > /root/change-root-password/change_root_password.sh && chmod +x /root/change-root-password/change_root_password.sh && /root/change-root-password/change_root_password.sh
这种方法直接从 GitHub 仓库下载脚本:
curl -s https://raw.githubusercontent.com/ypq123456789/change-root-password/main/change_root_password.sh > /root/change-root-password/change_root_password.sh && chmod +x /root/change-root-password/change_root_password.sh && /root/change-root-password/change_root_password.sh
如果您发现任何问题或有改进建议,请创建一个 issue 或提交 pull request 。
更新脚本:
这种方法会自动获取最新版本的脚本:
[ ! -d "/root/change-root-password" ] && mkdir /root/change-root-password ; curl -s https://api.github.com/repos/ypq123456789/change-root-password/contents/change_root_password.sh | jq -r .content | base64 -d > /root/change-root-password/change_root_password.sh && chmod +x /root/change-root-password/change_root_password.sh && /root/change-root-password/change_root_password.sh
这种方法直接从 GitHub 仓库下载脚本:
[ ! -d "/root/change-root-password" ] && mkdir /root/change-root-password ; curl -o /root/change-root-password/change_root_password.sh https://raw.githubusercontent.com/ypq123456789/change-root-password/main/change_root_password.sh && chmod +x /root/change-root-password/change_root_password.sh && /root/change-root-password/change_root_password.sh
1
totoro625 126 天前 2
步骤越多越慢
直接拉取 sshd_config 文件,写入私钥并 reboot wget xxx -O /etc/ssh/sshd_config echo "xxx" >> /root/.ssh/authorized_keys && chmod 600 /root/.ssh/authorized_keys && reboot |
2
ovtfkw 126 天前
抢机子是啥意思
|
3
orlog 126 天前
白嫖怪们也都这么卷了吗
|
7
Hydsiun 125 天前
我擦,太卷了
|
9
kebamt 125 天前 via iPhone
passwd 不是很快搞定?
|
10
renmu 125 天前 via Android
访问不了 github,结束
|
11
wonderfulcxm 125 天前 via iPhone
@renmu 开 ssh ,我上去看看
|