没有 crontab 命令起作用

没有 crontab 命令起作用

crontab 是 debian 的

用户 hack 属于 sudoers

类似命令python2 slowloris /home/hacker/scripts/slowloris/slowloris.py 192.168.1.5 -s 1000仅手动有效。时钟已同步!

系统日志:

系统日志

我不知道该怎么办!

答案1

它不起作用,因为您的 crontab 语法有误。它始终是 5 个空格分隔的字段用于表示时间,第 6 个用于表示用户,其余部分用于表示命令。具体来说,最后两个命令:

30 18 * * * 超时 300 root hping3 -i -u1 -S 80 192.168.1.5

40 18 * * * 超时 300 root ./home/hacker/scripts/LOICfinal/loic 192.168.1.5

应该

30 18 * * *root /usr/bin/超时300/usr/sbin/hping3-i -u1 -S 80 192.168.1.5

40 18 * * *root /usr/bin/超时300/主页/黑客/脚本/LOICfinal/loic192.168.1.5

您还应该考虑不要以 root 身份运行任何可由普通用户写入的脚本 - 在本例中,脚本位于hacker主文件夹中。

相关内容