Archive for » July 24th, 2009«

How to check world-writable files on Server?

You can check the world-writable files on your Server by using following command from shell.

Gunjan@root# find / -perm -2 ! -type l -ls

Category: Linux Permissions  Comments off

How to check SUID/SGID programs on your Server?

You can check SUID/SGID programs on your systemSUID/SGID programs on your Server by using following command from your shell.

Gunjan@root# find / -type f \( -perm -04000 -o -perm -02000 \)

Category: Linux Permissions  Comments off