-rw-r--r-- john john 566 May 23 19:05 index.php # This is chmod 644 (correct) -rw-rw-rw- john john 171 May 7 21:00 main.php # This is chmod 666 (incorrect) drwxr-xr-x john john 4096 Jan 1 21:00 folder1/ # This is chmod 755 (correct) drwxrwxrwx john john 4096 Jan 1 21:00 folder1/ # This is chmod 777 (incorrect)
-rw-r--r-- john john 566 May 23 19:05 index.php <- This is chmod 644 (correct) -rw-rw-rw- john john 171 May 7 21:00 main.php <- This is chmod 666 (incorrect) drwxr-xr-x john john 4096 Jan 1 21:00 folder1/ <- This is chmod 755 (correct) drwxrwxrwx john john 4096 Jan 1 21:00 folder1/ <- This is chmod 777 (incorrect)
john@example.com [/home/john]$ chmod -R g-w * # Removes group-writable john@example.com [/home/john]$ chmod -R o-w * # Removes world-writable
-rw-r--r-- john john 566 May 23 19:05 index.php < - This is chmod 644 (correct) drwxrwxrwx john john 4096 Jan 1 21:00 folder1/ <- This is chmod 777 (incorrect)