Get the LinuxSecurity news you want faster with RSS
Powered By
Linux Advisory Watch: August 12th 2005
Source: LinuxSecurity.com Contributors - Posted by Benjamin D. Thomas
This week, advisories were released for yaboot, ttmkfdir, Netpbm, ruby, squirrelmail,
sysreport, xpdf, kdegraphics, cups, ucd-snmp, gaim, ethereal, and gpdf. The
distributors include Fedora, Gentoo, and Red Hat.
Internet
Productivity Suite: Open Source Security - Trust Internet Productivity
Suite's open source architecture to give you the best security and productivity
applications available. Collaborating with thousands of developers, Guardian Digital
security engineers implement the most technologically advanced ideas and methods
into their design.
Today on Hacks From Pax we'll be discussing PHP web application security. PHP
is a great language for rapidly developing web applications, and is very friendly
to beginning programmers, but some of its design can make it difficult to write
web apps that are properly secure. We'll discuss some of the main security "gotchas"
when developing PHP web applications, from proper user input sanitization to
avoiding SQL injection vulnerabilities.
Many PHP application vulnerabilities are caused by not properly initializing
variables. This is an example of how PHP, by not requiring the developer to
initialize a variable before using it, sacrifices security for ease of use.
For example, the following code is easily exploitable.
if (user_auth()) {
$access = true;
}
if ($access) {
do_sensitive_things();
}
This could be exploited by tacking an ?access=true to the end of the url, and
the if ($access) test would be passed despite the user_auth() function returning
false. This hole could be closed easily by adding a $access = false; at the
top of the script, but not all security holes are this easy to spot.
Thankfully, PHP now defaults the register_globals option to off. This setting
would pass the access variable sent by the url to the script as $_GET[access]
rather than just $access. This closes off many of these types of vulnerabilities,
but when writing PHP code, especially code for distribution, you should never
assume that this option will be set correctly, and always initialize your PHP
variables. Users in a shared hosting environment may not have the ability to
set these options to their most secure setting.
Always initialize PHP variables before using them.
Always set register_globals to off, but never write code that assumes this
setting.
You can use the ini_get() function to determine if register_globals is set
at runtime.
Linux File
& Directory Permissions Mistakes - One common mistake Linux administrators
make is having file and directory permissions that are far too liberal and
allow access beyond that which is needed for proper system operations. A full
explanation of unix file permissions is beyond the scope of this article,
so I'll assume you are familiar with the usage of such tools as chmod, chown,
and chgrp. If you'd like a refresher, one is available right here on linuxsecurity.com.
Introduction:
Buffer Overflow Vulnerabilities - Buffer overflows are a leading type
of security vulnerability. This paper explains what a buffer overflow is,
how it can be exploited, and what countermeasures can be taken to prevent
the use of buffer overflow vulnerabilities.
Getting
to Know Linux Security: File Permissions - Welcome to the first
tutorial in the 'Getting to Know Linux Security' series. The topic explored
is Linux file permissions. It offers an easy to follow explanation of how
to read permissions, and how to set them using chmod. This guide is intended
for users new to Linux security, therefore very simple. If the feedback is
good, I'll consider creating more complex guides for advanced users. Please
let us know what you think and how these can be improved.
Take advantage of our Linux Security discussion
list! This mailing list is for general security-related questions and comments.
To subscribe send an e-mail to security-discuss-request@linuxsecurity.com
with "subscribe" as the subject.
Thank you for reading the LinuxSecurity.com
weekly security newsletter. The purpose of this document is to provide our readers
with a quick summary of each week's most relevant Linux security headline.
This update fixes a problem with ttmkfdir not including native encodings of Asian TrueType fonts in fonts.scale files used by the X font server. Users of Chinese, Japanese, and Korean fonts are recommended to reinstall the font packages for these languages after updating ttmkfdir.
http://www.linuxsecurity.com/content/view/120037
Fedora Core 3 Update: ttmkfdir-3.0.9-14.1
5th, August, 2005
This update fixes a problem with ttmkfdir not including native encodings of Asian TrueType fonts in fonts.scale files used by the X font server. Users of Chinese, Japanese, and Korean fonts are recommended to reinstall the font packages for these languages after updating ttmkfdir.
http://www.linuxsecurity.com/content/view/120038
Updated ruby packages that fix an arbitrary command execution issue are now available. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120035
RedHat: Moderate: squirrelmail security update
5th, August, 2005
An updated squirrelmail package that fixes two security issues is now available. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120036
RedHat: Low: sysreport security update
9th, August, 2005
An updated sysreport package that fixes an insecure temporary file flaw is now available. This update has been rated as having low security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120049
RedHat: Moderate: xpdf security update
9th, August, 2005
An updated xpdf package that fixes a security issue is now available for Red Hat Enterprise Linux 4. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120050
RedHat: Moderate: kdegraphics security update
9th, August, 2005
Updated kdegraphics packages that resolve a security issue in kpdf are now available. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120051
RedHat: Important: cups security update
9th, August, 2005
Updated CUPS packages that fix a security issue are now available for Red Hat Enterprise Linux. This update has been rated as having important security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120052
RedHat: Low: ucd-snmp security update
9th, August, 2005
Updated ucd-snmp packages that a security issue are now available for Red Hat Enterprise Linux 2.1. This update has been rated as having low security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120053
RedHat: Critical: gaim security update
10th, August, 2005
An updated gaim package that fixes a buffer overflow security issue is now available. This update has been rated as having critical security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120055
RedHat: Critical: gaim security update
10th, August, 2005
An updated gaim package that fixes multiple security issues is now available. This update has been rated as having critical security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120056
RedHat: Moderate: ethereal security update
10th, August, 2005
Updated Ethereal packages that fix various security vulnerabilities are now available. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120061
RedHat: Moderate: gpdf security update
10th, August, 2005
An updated gpdf package that fixes a security issue is now available for Red Hat Enterprise Linux 4. This update has been rated as having moderate security impact by the Red Hat Security Response Team.
http://www.linuxsecurity.com/content/view/120062
Only registered users can write comments. Please login or register.