Convenience and security don't always go together. WordPress errs on the side of convenience, which unfortunately makes it less secure than it could have been.
If wp-content is writable, you can still update themes and plugins from within WordPress.
Also, I'd be careful about "chmod -R 775"ing everything. Directories should have 775 permissions, but files should have 664 permissions. Otherwise those files become executable), and that's another potential vulnerability. The "x" bit means "list" for directories but "execute" for files.
To revert all file permissions to 664, while leaving the directories alone, do this:
Code:
find /srv/www/whatever/wp-content -type f -exec chmod 664 {} \;
If you need to give group write permissions to a directory in the future, "chmod -R g+w" is better than "chmod -R 775". "g+w" means "add(+) group(g) write(w) permissions, but leave other permissions alone".