[pablo@sybaris html]$ cat /etc/crontab
...
LD_LIBRARY_PATH=/usr/lib:/usr/lib64:/usr/local/lib/dev:/usr/local/lib/utils
...
* * * * * root /usr/bin/log-sweeper
[pablo@sybaris html]$ /usr/bin/log-sweeper
/usr/bin/log-sweeper: error while loading shared libraries: utils.so: cannot open shared object file: No such file or directory
[pablo@sybaris html]$ ldd /usr/bin/log-sweeper
linux-vdso.so.1 => (0x00007ffce1f9a000)
utils.so => not found
libc.so.6 => /lib64/libc.so.6 (0x00007f0ece0d4000)
/lib64/ld-linux-x86-64.so.2 (0x00007f0ece4a2000)
There is a missing shared library which is utils.so. According to the crontab, there is a writable dir which is /usr/local/lib/dev(Ref. LD_LIBRARY_PATH). We can use this situation to get root shell.