Posts tagged as:

world writable files

#!/bin/bash
# Shell script to find all world-writable files and directories on Linux or
# FreeBSD system
#
# TIP:
# Set ‘umask 002′ so that new files created will not be world-writable
# And use command ‘chmod o-w filename’ to disable world-wriable file bit
#
# Copyright (c) 2005 nixCraft project
# This script is licensed under GNU GPL version 2.0 or above
# [...]

{ 0 comments }