in reply to Tiger Security Administration Program

I've used Tiger in the past (been a while) but not lately. Are you wanting to check the binaries/scripts run from a crontab for world writeable permissions? If so, you might be safer doing something to just check all executable files for such. Something along the lines of find / -perm o+wx -exec ls -l {} \; might do it; this is off the top of my head so verify with the man page.

Dunno for sure that that would work but it probably would be a better idea. Parsing out the filename from the crontab entry is potentially complicated and could miss similar attack vectors (ie ok maybe the altered executable doesn't get executed via cron but the victim user runs it by hand not realizing that someone else has altered it).

And as suggested, this question probably fits better on a security forum (check out the mailing lists at securityfocus.com, for instance).