SlideShare uma empresa Scribd logo
1 de 35
Securing Your Web Ser ver
        (A pache)


  OSScamp, Impetus Noida, Sept, ’07
            Pradeep Kr. Sharma
  Account Management Executive, OSSCube
Web ser ver (A pache)
•   A web server like Apache, in its
    simplest function, is software that
    displays and serves HTML pages
    hosted on a server to a client
    browser that understands the
    HTML code.
Functionality

•   The Web server will be accessible from the Internet; and, Only static HTML
    pages will be served
•   The server will support name-based virtual hosting mechanism
•   Specified Web pages can be accessible only from selected IP addresses or
    users (basic authentication)
•   The server will log all the Web requests (including information about Web
    browsers)
                                         Or
•   The web server must handle the PHP/Perl scripting language
•   The PHP/Perl component must be able to read and write users' data in a locally
    installed MySQL database.
Security Assumptions

•   The operating system must be hardened as much as possible, both against
    local and remote attacks;
•   The server must not offer any network services except HTTP: (80/TCP);
•   Remote access to the server must be controlled by a firewall, which should
    block all outbound connections, and allow inbound connections only to the
    80/TCP port of the Web server;
•   The Apache Web server must be the only service available on the system;
•   Only absolutely necessary Apache modules should be enabled;
•   Any diagnostic Web pages and automatic directory indexing service must be
    turned off;
•   The server should disclose the least amount of information about itself
    (security by obscurity);
•   The Apache server must run under a unique UID/GID, not used by any other
    system process;
•   Apache's processes must have limited access to the file systems
    (chrooting); and,
•   No shell programs can be present in the Apache's chrooted environment
    (/bin/sh, /bin/csh etc.).
                                   Or
•   The PHP configuration should take advantage of built-in security
    mechanisms
•   PHP scripts must be executed in a chrooted environment
•   The Apache server must reject all requests (GET and POST), which contain
    HTML tags (possible Cross-Site-Scripting attack) or apostrophe/quotation
    marks (possible SQL Injection attack)
•   No PHP warning or error messages should be shown to the web
    application's regular users
•   It should be possible to store incoming GET and POST requests into a text
    file which will make it possible to use additional, host-based intruder
    detection system (HIDS), e.g. swatch.
Operating system

•   UNIX or UNIX like system i.e. Linux, FreeBSD, etc. is best for Apache. MS
    Windows provide very limited securing capabilities to apache so not
    recommended.
Prerequisites

•   OpenSSL should be already installed on your system if you want Apache
    and SSL encryption support.
•   PosgreSQL should be already installed on your system if you want Apache
    and PostgreSQL database connectivity support.
                                        Or
•   MySQL should be already installed on your system if you want Apache and
    MySQL database connectivity support.
•   MM should be already installed on your system if you want Apache and MM
    high-performance RAM-based session cache support.
•   OpenLDAP should be already installed on your system if you want Apache
    and LDAP directory connectivity support.
•   IMAP & POP should be already installed on your system if you want Apache
    and IMAP & POP capability.
Software Preparation

These installation instructions assume
• Commands are Unix-compatible.
• The source path is /var/tmp
• Installations were tested on Red Hat Linux
• All steps in the installation will happen in super-user account root.
• Apache version number is 1.3.27+ (Why?)
• Mod_SSL
• Mod_Perl (Optional)
• Mod_PHP
Packages

•   Apache : http://www.apache.org/
•   Mod_Perl : http://perl.apache.org/
•   Mod_SSL : http://www.modssl.org/
•   Mod_PHP : http://www.php.net/
Step – 1 - Installation

Decompress TAR balls and keep in one directory i.e. /var/tmp
Copy
• [root@localhost]/# cp apache_version.tar.gz /var/tmp
• [root@localhost]/# cp mod_ssl-version-version.tar.gz /var/tmp
• [root@localhost]/# cp mod_perl-version.tar.gz /var/tmp
• [root@localhost]/# cp php-version.tar.gz /var/tmp
• [root@localhost]/# cd /var/tmp/

Decompress
• [root@localhost]/tmp# tar xzpf apache_version.tar.gz
• [root@localhost]/tmp# tar xzpf mod_ssl-version-version.tar.gz
• [root@localhost]/tmp# tar xzpf mod_perl-version.tar.gz
• [root@localhost]/tmp# tar xzpf php-version.tar.gz
Mod_SSL –

•   [root@localhost]/# cd mod_ssl-version-version
•   [root@localhost]/# CC="egcs" CFLAGS="-O9 -funroll-loops -ffast-math
    -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer
    -fno-exceptions" ./configure --with-apache=../apache_1.3.37 --with-
    crt=/etc/ssl/certs/server.crt --with-key=/etc/ssl/private/server.key

*CC – C Compiler
**egcs – Enhanced GNU Compiler System
***CFLAGS – O2 (i386), O3 (i586), O9 (i686) Optimization Option
PHP 4

•   [root@localhost]# cd apache_1.3.37

Configure -
•  [root@localhost]# CC="egcs" OPTIM="-O9 -funroll-loops -ffast-math -malign-double
   -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions" CFLAGS="-
   DDYNAMIC_MODULE_LIMIT=0" 
•  ./configure 
•  --prefix=/home/httpd 
•  --bindir=/usr/bin 
•  --sbindir=/usr/sbin 
•  --libexecdir=/usr/lib/apache 
•  --includedir=/usr/include/apache 
•  --sysconfdir=/etc/httpd/conf 
•  --localstatedir=/var 
•  --runtimedir=/var/run 
•  --logfiledir=/var/log/httpd 
•  --datadir=/home/httpd 
•  --proxycachedir=/var/cache/httpd 
•  --mandir=/usr/man
PHP4

This tells PHP4 to set itself up for this particular hardware setup with:
• Compile without debugging symbols.
• Enable safe mode by default.
• Include IMAP & POP support.
• Include LDAP directory support.
• Include PostgreSQL / MySQL database support.
• Include mm support to improve performance of Memory Library.
• Enable inline-optimization for better performance.
• Compile with memory limit support.
• Assume the C compiler uses GNU ld.

•   3. [root@deep ]/php-4.0# make && make install
Mod_PERL
• [root@localhost] cd ../mod_perl-version.version/
• [root@localhost] perl Makefile.PL EVERYTHING=1
  APACHE_SRC=../apache_1.3.37/src USE_APACI=1 PREP_HTTPD=1
  DO_HTTPD=1
• 3. [root@localhost]/mod_perl-version.version# make && make install
Apache

•   1. [root@localhost]/apache1.3.37# SSL_BASE=SYSTEM EAPI_MM=SYSTEM CC="egcs"
    OPTIM="-O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro
    -fomit-frame-pointer -fno-exceptions" CFLAGS="-DDYNAMIC_MODULE_LIMIT=0" 
•   ./configure 
•   --prefix=/home/httpd 
•   --bindir=/usr/bin 
•   --sbindir=/usr/sbin 
•   --libexecdir=/usr/lib/apache 
•   --includedir=/usr/include/apache 
•   --sysconfdir=/etc/httpd/conf 
•   --localstatedir=/var 
•   --runtimedir=/var/run 
•   --logfiledir=/var/log/httpd 
•   --datadir=/home/httpd 
•   --proxycachedir=/var/cache/httpd 
•   --mandir=/usr/man 
•   --add-module=src/modules/experimental/mod_mmap_static.c 
•   --add-module=src/modules/standard/mod_auth_db.c
•   --enable-module=ssl 
•   --enable-rule=SSL_SDBM 
•   --disable-rule=SSL_COMPAT 
•   --activate-module=src/modules/php4/libphp4.a 
•   --enable-module=php4 
•   --activate-module=src/modules/perl/libperl.a 
•   --enable-module=perl 
•   --disable-module=status 
•   --disable-module=userdir 
•   --disable-module=negotiation 
•   --disable-module=autoindex 
•   --disable-module=asis 
•   --disable-module=imap 
•   --disable-module=env 
•   --disable-module=actions

•   2. [root@localhost]/apache1.3.37# make && make install
Step – 2: Chroot Jail

•   Chroot
•   Chrooting is the process through which you can change the root of a system
    to different location so that actual root system will safe from the intruders.
Benefit

•   Apache by default runs as a non-root user, which will limit any damage to what can be
    done as a normal user with a local shell.

•   The main benefit of a chroot jail is that the jail will limit the portion of the file system
    the daemon can see to the root directory of the jail.

•   The jail only needs to support Apache; the programs available in the jail can be
    extremely limited.

•   There is no need for setuid-root programs, which can be used to gain root access and
    break out of the jail.
Pros

•   If apache is ever compromised, the attacker will not have access to the entire file
    system.
•   Poorly written CGI scripts that may allow someone to access your server will not
    work.

Cons

•   There are extra libraries you'll need to have in the chroot jail for Apache to work.
•   If you use any Perl/CGI features with Apache, you will need to copy the needed
    binaries, Perl libraries and files to the appropriate spot within the chroot space. The
    same applies for SSL, PHP, LDAP, PostgreSQL and other third-party programs.
Find Dependences

•   [root@localhost]/# ldd /usr/sbin/httpd

•   libpam.so.0 =>/lib/libpam.so.0 (0x40016000)
•   libm.so.6 =>/lib/libm.so.6 (0x4001f000)
•   libdl.so.2 =>/lib/libdl.so.2 (0x4003b000)
•   libcrypt.so.1 =>/lib/libcrypt.so.1 (0x4003e000)
•   libnsl.so.1 =>/lib/libnsl.so.1 (0x4006b000)
•   libresolv.so.2 =>/lib/libresolv.so.2 (0x40081000)
•   libdb.so.3 =>/lib/libdb.so.3 (0x40090000)
•   libc.so.6 =>/lib/libc.so.6 (0x400cb000)
•   /lib/ld-linux.so.2 =>/lib/ld-linux.so.2 (0x40000000)
Create Dir ector y Str uctur e (Similar in dependencies)

•   [root@localhost ]/# mkdir /chroot/httpd
•   [root@localhost ]/# mkdir /chroot/httpd/dev
•   [root@localhost ]/# mkdir /chroot/httpd/lib
•   [root@localhost ]/# mkdir /chroot/httpd/etc
•   [root@localhost ]/# mkdir -p /chroot/httpd/usr/sbin
•   [root@localhost ]/# mkdir -p /chroot/httpd/var/run
•   [root@localhost ]/# mkdir -p /chroot/httpd/var/log/httpd
•   [root@localhost ]/# chmod 750 /chroot/httpd/var/log/httpd/
•   [root@localhost ]/# mkdir -p /chroot/httpd/home/httpd
Copy all found dependencies into created directory along with File Access
Permissions
(No other writable)

•   [root@localhost ]/# cp -r /etc/ssl /chroot/httpd/etc/ � require only if you use mod_ssl
    feature.
•   [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/certs/ca.crt � require only if you
    use mod_ssl feature.
•   [root@localhost ]/# chmod 600 /chroot/httpd//etc/ssl/certs/server.crt � require only if
    you use mod_ssl feature.
•   [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/private/ca.key � require only if
    you use mod_ssl feature.
•   [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/private/server.key � require only
    if you use mod_ssl feature.
users authentication with .dbmpasswd password file

•   To change the permissions on the dbmmanage program, use the following
    command:
•   [root@localhost ]/# chmod 750 /usr/bin/dbmmanage
•   To create a username and password, use the following command:
•   [root@deep ]/# /usr/bin/dbmmanage /etc/httpd/.dbmpasswd adduser username
•   New password:
•   Re-type new password:
•   User username added with password encrypted to l4jrdAL9MH0K.
Now copy the passwd and group files inside the /chroot/httpd/etc chrooted directory and
   remove all entries except for the user that apache runs as in both files passwd and
   group.


•   [root@localhost ]/# cp /etc/passwd /chroot/httpd/etc/
•   [root@localhost ]/# cp /etc/group /chroot/httpd/etc/

Edit the passwd file, vi /chroot/httpd/etc/passwd and delete all entries except for the user
    apache run as in our configuration, it's www:

•   www:x:80:80::/home/www:/bin/bash

Edit the group file, vi /chroot/httpd/etc/group and delete all entries except the group
    apache run as, in our configuration it,s www:

•   www:x:80:

Then you will also need /etc/resolv.conf, /etc/nsswitch.conf and /etc/hosts files in your
   chroot jail in same directory structure to resolve hosts name.
Step – 3: Securing CGI Applications
•   Configuring PHP
•   add the following lines to httpd.conf
•   AddModule mod_php4.c
•   AddType application/x-httpd-php .php
•   AddType application/x-httpd-php .inc
•   AddType application/x-httpd-php .class
•   A few changes must also be made in the PHP configuration file
    (/chroot/httpd/usr/local/lib/php.ini).
•   Parameter           Description
•   safe_mode = On
•   safe_mode_gid = Off
•   open_basedir = directory[:...] (Only this dir. Accessible by Scipts)
•   safe_mode_exec_dir = directory[:...] (Executable program refused to run by Apache)
•   expose_php = Off (Do not show PHP Info)
•   register_globals = Off
•   display_errors = Off
•   log_errors = On
•   error_log = filename
Changing the file extension


•   In order to change the extensions, all the *.php files should be renamed to *.dhtml (for
    example), and the following line should be changed in
    /chroot/httpd/usr/local/apache/conf/httpd.conf:

•   AddType application/x-httpd-php .php

•   to the new one:

•   AddType application/x-httpd-php .dhtml

•   Web users will not see *.php extension in the URL address which is what immediately
    suggests that the PHP technology is being used at the server side.
The last step - Defending against CSS and SQL Injection attacks


•   In order to perform that, we will use the mod_security module, which we enable by adding the
    following line into httpd.conf:

•   AddModule mod_security.c

To enable logging of the GET and POST requests, it suffices to add the following section to
    httpd.conf:

•   <IfModule mod_security.c>
•      AddHandler application/x-httpd-php .php

•       SecAuditEngine On
•       SecAuditLog logs/audit_log
•       SecFilterScanPOST On
•       SecFilterEngine On
•   </IfModule>
•   The above commands will enable the Audit Engine, which is responsible for logging
    requests, and the Filtering POST Engine, which will make it possible to log POST
    requests. In order to protect web application against CSS attacks, the following lines
    should also be inserted before "</IfModule>":

•      SecFilterDefaultAction "deny,log,status:500"
•      SecFilter "<(.|n)+>“

•   The first line causes that the server to return the "Internal Server Error" message
    when the request contains the search phrase from any SecFilter variable.
•   The second line sets up the filter to search for HTML tags in the GET and POST
    requests.
•   One of the typical signatures of SQL Injection attack is the appearance of an
    apostrophe (') or quotation mark (") in the GET or POST request. By rejecting all the
    requests containing those characters, we can make the use of SQL Injection
    technique very difficult:

•      SecFilter "'"
•      SecFilter """

•   Note, that although filtering the <, >, ', " characters lets us defend against CSS and
    SQL Injection attacks, it can lead to the improper functioning of the PHP application. It
    happens, because regular users cannot use those characters in the HTML forms. To
    solve that problem, the JavaScript language can be used on the client side, which
    should replace the prohibited characters with special tags, e.g. &lt; &gt; &quot; etc.
Summar y

Achieving a high level of a web server's security using server-side technologies (PHP, ASP, JSP etc.)
    is a very difficult task in practice.

Reasons:

•   Server itself does not defend against poor programming techniques.
•   Server side technology’s (ASP, PHP, JSP etc.) vulnerability also make the web server attack
    prone.
•   Applying of security patches and removal of unused files is necessary to make your web server
    more defensive.
•   We cannot forget that the security of the whole environment depends not only on Apache's or
    PHP's configuration, but also and foremost - on the web application itself.
•   Programmers need to analyze their code or application before deploying it over production
    server.
•   Regular monitoring of Logs and CGI behavior necessary to run Web Server long lasting without
    Attack.
•   Making a dedicated Web Server involve Cost and may be overhead and compromising it, needs
    analysis.
Questions?
T hank you!


For more information, contact us:
OSSCube
India: +91 995 809 0987
USA: +1 919 791 5427
Web: www.osscube.com
Mail:   info@osscube.com

Mais conteúdo relacionado

Mais procurados

Apache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual HostingApache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual Hostingwebhostingguy
 
Reverse proxies & Inconsistency
Reverse proxies & InconsistencyReverse proxies & Inconsistency
Reverse proxies & InconsistencyGreenD0g
 
Apache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling OutApache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling OutSander Temme
 
25 Apache Performance Tips
25 Apache Performance Tips25 Apache Performance Tips
25 Apache Performance TipsMonitis_Inc
 
Guide to alfresco monitoring
Guide to alfresco monitoringGuide to alfresco monitoring
Guide to alfresco monitoringMiguel Rodriguez
 
Web server installation_configuration_apache
Web server installation_configuration_apacheWeb server installation_configuration_apache
Web server installation_configuration_apacheShaojie Yang
 
Linux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptLinux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptwebhostingguy
 
Weird proxies/2 and a bit of magic
 Weird proxies/2 and a bit of magic  Weird proxies/2 and a bit of magic
Weird proxies/2 and a bit of magic GreenD0g
 
Apache Traffic Server & Lua
Apache Traffic Server & LuaApache Traffic Server & Lua
Apache Traffic Server & LuaKit Chan
 
03 h base-2-installation_andshell
03 h base-2-installation_andshell03 h base-2-installation_andshell
03 h base-2-installation_andshelldntth0601
 
Snort296x centos6x 2
Snort296x centos6x 2Snort296x centos6x 2
Snort296x centos6x 2Trinh Tuan
 
NGINX 101 - now with more Docker
NGINX 101 - now with more DockerNGINX 101 - now with more Docker
NGINX 101 - now with more DockerSarah Novotny
 

Mais procurados (20)

Apache Ppt
Apache PptApache Ppt
Apache Ppt
 
Apache
ApacheApache
Apache
 
Apache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual HostingApache web server installation/configuration, Virtual Hosting
Apache web server installation/configuration, Virtual Hosting
 
Apache ppt
Apache pptApache ppt
Apache ppt
 
Apache Web Server Setup 3
Apache Web Server Setup 3Apache Web Server Setup 3
Apache Web Server Setup 3
 
Reverse proxies & Inconsistency
Reverse proxies & InconsistencyReverse proxies & Inconsistency
Reverse proxies & Inconsistency
 
Apache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling OutApache Performance Tuning: Scaling Out
Apache Performance Tuning: Scaling Out
 
Performance_Up.ppt
Performance_Up.pptPerformance_Up.ppt
Performance_Up.ppt
 
25 Apache Performance Tips
25 Apache Performance Tips25 Apache Performance Tips
25 Apache Performance Tips
 
Guide to alfresco monitoring
Guide to alfresco monitoringGuide to alfresco monitoring
Guide to alfresco monitoring
 
Web server installation_configuration_apache
Web server installation_configuration_apacheWeb server installation_configuration_apache
Web server installation_configuration_apache
 
Linux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.pptLinux Webserver Installation Command and GUI.ppt
Linux Webserver Installation Command and GUI.ppt
 
Weird proxies/2 and a bit of magic
 Weird proxies/2 and a bit of magic  Weird proxies/2 and a bit of magic
Weird proxies/2 and a bit of magic
 
Apache Traffic Server & Lua
Apache Traffic Server & LuaApache Traffic Server & Lua
Apache Traffic Server & Lua
 
Apache Web Server Setup 2
Apache Web Server Setup 2Apache Web Server Setup 2
Apache Web Server Setup 2
 
03 h base-2-installation_andshell
03 h base-2-installation_andshell03 h base-2-installation_andshell
03 h base-2-installation_andshell
 
Aci dp
Aci dpAci dp
Aci dp
 
Snort296x centos6x 2
Snort296x centos6x 2Snort296x centos6x 2
Snort296x centos6x 2
 
NGINX 101 - now with more Docker
NGINX 101 - now with more DockerNGINX 101 - now with more Docker
NGINX 101 - now with more Docker
 
Linux Hardening - nullhyd
Linux Hardening - nullhydLinux Hardening - nullhyd
Linux Hardening - nullhyd
 

Semelhante a Securing Your Webserver By Pradeep Sharma

Securing Your Web Server
Securing Your Web ServerSecuring Your Web Server
Securing Your Web Servermanugoel2003
 
Vorontsov, golovko ssrf attacks and sockets. smorgasbord of vulnerabilities
Vorontsov, golovko   ssrf attacks and sockets. smorgasbord of vulnerabilitiesVorontsov, golovko   ssrf attacks and sockets. smorgasbord of vulnerabilities
Vorontsov, golovko ssrf attacks and sockets. smorgasbord of vulnerabilitiesDefconRussia
 
php & performance
 php & performance php & performance
php & performancesimon8410
 
Securing the Apache web server
Securing the Apache web serverSecuring the Apache web server
Securing the Apache web serverwebhostingguy
 
Securing the Apache web server
Securing the Apache web serverSecuring the Apache web server
Securing the Apache web serverwebhostingguy
 
PHP language presentation
PHP language presentationPHP language presentation
PHP language presentationAnnujj Agrawaal
 
Your Inner Sysadmin - LonestarPHP 2015
Your Inner Sysadmin - LonestarPHP 2015Your Inner Sysadmin - LonestarPHP 2015
Your Inner Sysadmin - LonestarPHP 2015Chris Tankersley
 
Deployment of WebObjects applications on CentOS Linux
Deployment of WebObjects applications on CentOS LinuxDeployment of WebObjects applications on CentOS Linux
Deployment of WebObjects applications on CentOS LinuxWO Community
 
Apache Performance Tuning: Scaling Up
Apache Performance Tuning: Scaling UpApache Performance Tuning: Scaling Up
Apache Performance Tuning: Scaling UpSander Temme
 
Zend Core on IBM i - Security Considerations
Zend Core on IBM i - Security ConsiderationsZend Core on IBM i - Security Considerations
Zend Core on IBM i - Security ConsiderationsZendCon
 
Owning computers without shell access dark
Owning computers without shell access darkOwning computers without shell access dark
Owning computers without shell access darkRoyce Davis
 
Ingesting hdfs intosolrusingsparktrimmed
Ingesting hdfs intosolrusingsparktrimmedIngesting hdfs intosolrusingsparktrimmed
Ingesting hdfs intosolrusingsparktrimmedwhoschek
 
Your Inner Sysadmin - MidwestPHP 2015
Your Inner Sysadmin - MidwestPHP 2015Your Inner Sysadmin - MidwestPHP 2015
Your Inner Sysadmin - MidwestPHP 2015Chris Tankersley
 
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Chris Tankersley
 
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014Miguel Zuniga
 
An introduction to php shells
An introduction to php shellsAn introduction to php shells
An introduction to php shellsRichieSM
 

Semelhante a Securing Your Webserver By Pradeep Sharma (20)

Securing Your Web Server
Securing Your Web ServerSecuring Your Web Server
Securing Your Web Server
 
Vorontsov, golovko ssrf attacks and sockets. smorgasbord of vulnerabilities
Vorontsov, golovko   ssrf attacks and sockets. smorgasbord of vulnerabilitiesVorontsov, golovko   ssrf attacks and sockets. smorgasbord of vulnerabilities
Vorontsov, golovko ssrf attacks and sockets. smorgasbord of vulnerabilities
 
php & performance
 php & performance php & performance
php & performance
 
Securing the Apache web server
Securing the Apache web serverSecuring the Apache web server
Securing the Apache web server
 
Securing the Apache web server
Securing the Apache web serverSecuring the Apache web server
Securing the Apache web server
 
PHP language presentation
PHP language presentationPHP language presentation
PHP language presentation
 
Your Inner Sysadmin - LonestarPHP 2015
Your Inner Sysadmin - LonestarPHP 2015Your Inner Sysadmin - LonestarPHP 2015
Your Inner Sysadmin - LonestarPHP 2015
 
Deployment of WebObjects applications on CentOS Linux
Deployment of WebObjects applications on CentOS LinuxDeployment of WebObjects applications on CentOS Linux
Deployment of WebObjects applications on CentOS Linux
 
Logstash
LogstashLogstash
Logstash
 
Apache
ApacheApache
Apache
 
Lecture 7: Server side programming
Lecture 7: Server side programmingLecture 7: Server side programming
Lecture 7: Server side programming
 
Apache Performance Tuning: Scaling Up
Apache Performance Tuning: Scaling UpApache Performance Tuning: Scaling Up
Apache Performance Tuning: Scaling Up
 
Zend Core on IBM i - Security Considerations
Zend Core on IBM i - Security ConsiderationsZend Core on IBM i - Security Considerations
Zend Core on IBM i - Security Considerations
 
Linux basics (part 2)
Linux basics (part 2)Linux basics (part 2)
Linux basics (part 2)
 
Owning computers without shell access dark
Owning computers without shell access darkOwning computers without shell access dark
Owning computers without shell access dark
 
Ingesting hdfs intosolrusingsparktrimmed
Ingesting hdfs intosolrusingsparktrimmedIngesting hdfs intosolrusingsparktrimmed
Ingesting hdfs intosolrusingsparktrimmed
 
Your Inner Sysadmin - MidwestPHP 2015
Your Inner Sysadmin - MidwestPHP 2015Your Inner Sysadmin - MidwestPHP 2015
Your Inner Sysadmin - MidwestPHP 2015
 
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
 
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014
Configuration Management in the Cloud - Cloud Phoenix Meetup Feb 2014
 
An introduction to php shells
An introduction to php shellsAn introduction to php shells
An introduction to php shells
 

Mais de OSSCube

High Availability Using MySQL Group Replication
High Availability Using MySQL Group ReplicationHigh Availability Using MySQL Group Replication
High Availability Using MySQL Group ReplicationOSSCube
 
Accelerate Your Digital Transformation Journey with Pimcore
Accelerate Your Digital Transformation Journey with PimcoreAccelerate Your Digital Transformation Journey with Pimcore
Accelerate Your Digital Transformation Journey with PimcoreOSSCube
 
Migrating Legacy Applications to AWS Cloud: Strategies and Challenges
Migrating Legacy Applications to AWS Cloud: Strategies and ChallengesMigrating Legacy Applications to AWS Cloud: Strategies and Challenges
Migrating Legacy Applications to AWS Cloud: Strategies and ChallengesOSSCube
 
Why Does Omnichannel Experience Matter to Your Customers
Why Does Omnichannel Experience Matter to Your CustomersWhy Does Omnichannel Experience Matter to Your Customers
Why Does Omnichannel Experience Matter to Your CustomersOSSCube
 
Using MySQL Fabric for High Availability and Scaling Out
Using MySQL Fabric for High Availability and Scaling OutUsing MySQL Fabric for High Availability and Scaling Out
Using MySQL Fabric for High Availability and Scaling OutOSSCube
 
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...OSSCube
 
Cutting Through the Disruption
Cutting Through the DisruptionCutting Through the Disruption
Cutting Through the DisruptionOSSCube
 
Legacy to industry leader: a modernization case study
Legacy to industry leader: a modernization case studyLegacy to industry leader: a modernization case study
Legacy to industry leader: a modernization case studyOSSCube
 
Marketing and Sales together at last
Marketing and Sales together at lastMarketing and Sales together at last
Marketing and Sales together at lastOSSCube
 
Using pim to maximize revenue and improve customer satisfaction
Using pim to maximize revenue and improve customer satisfactionUsing pim to maximize revenue and improve customer satisfaction
Using pim to maximize revenue and improve customer satisfactionOSSCube
 
Talend for the Enterprise
Talend for the EnterpriseTalend for the Enterprise
Talend for the EnterpriseOSSCube
 
Ahead of the Curve
Ahead of the CurveAhead of the Curve
Ahead of the CurveOSSCube
 
Non functional requirements. do we really care…?
Non functional requirements. do we really care…?Non functional requirements. do we really care…?
Non functional requirements. do we really care…?OSSCube
 
Learning from experience: Collaborative Journey towards CMMI
Learning from experience: Collaborative Journey towards CMMILearning from experience: Collaborative Journey towards CMMI
Learning from experience: Collaborative Journey towards CMMIOSSCube
 
Exploiting JXL using Selenium
Exploiting JXL using SeleniumExploiting JXL using Selenium
Exploiting JXL using SeleniumOSSCube
 
Introduction to AWS
Introduction to AWSIntroduction to AWS
Introduction to AWSOSSCube
 
Maria DB Galera Cluster for High Availability
Maria DB Galera Cluster for High AvailabilityMaria DB Galera Cluster for High Availability
Maria DB Galera Cluster for High AvailabilityOSSCube
 
Talend Open Studio Introduction - OSSCamp 2014
Talend Open Studio Introduction - OSSCamp 2014Talend Open Studio Introduction - OSSCamp 2014
Talend Open Studio Introduction - OSSCamp 2014OSSCube
 
Performance Testing Session - OSSCamp 2014
Performance Testing Session -  OSSCamp 2014Performance Testing Session -  OSSCamp 2014
Performance Testing Session - OSSCamp 2014OSSCube
 
Job Queue Presentation - OSSCamp 2014
Job Queue Presentation - OSSCamp 2014Job Queue Presentation - OSSCamp 2014
Job Queue Presentation - OSSCamp 2014OSSCube
 

Mais de OSSCube (20)

High Availability Using MySQL Group Replication
High Availability Using MySQL Group ReplicationHigh Availability Using MySQL Group Replication
High Availability Using MySQL Group Replication
 
Accelerate Your Digital Transformation Journey with Pimcore
Accelerate Your Digital Transformation Journey with PimcoreAccelerate Your Digital Transformation Journey with Pimcore
Accelerate Your Digital Transformation Journey with Pimcore
 
Migrating Legacy Applications to AWS Cloud: Strategies and Challenges
Migrating Legacy Applications to AWS Cloud: Strategies and ChallengesMigrating Legacy Applications to AWS Cloud: Strategies and Challenges
Migrating Legacy Applications to AWS Cloud: Strategies and Challenges
 
Why Does Omnichannel Experience Matter to Your Customers
Why Does Omnichannel Experience Matter to Your CustomersWhy Does Omnichannel Experience Matter to Your Customers
Why Does Omnichannel Experience Matter to Your Customers
 
Using MySQL Fabric for High Availability and Scaling Out
Using MySQL Fabric for High Availability and Scaling OutUsing MySQL Fabric for High Availability and Scaling Out
Using MySQL Fabric for High Availability and Scaling Out
 
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...
Webinar: Five Ways a Technology Refresh Strategy Can Help Make Your Digital T...
 
Cutting Through the Disruption
Cutting Through the DisruptionCutting Through the Disruption
Cutting Through the Disruption
 
Legacy to industry leader: a modernization case study
Legacy to industry leader: a modernization case studyLegacy to industry leader: a modernization case study
Legacy to industry leader: a modernization case study
 
Marketing and Sales together at last
Marketing and Sales together at lastMarketing and Sales together at last
Marketing and Sales together at last
 
Using pim to maximize revenue and improve customer satisfaction
Using pim to maximize revenue and improve customer satisfactionUsing pim to maximize revenue and improve customer satisfaction
Using pim to maximize revenue and improve customer satisfaction
 
Talend for the Enterprise
Talend for the EnterpriseTalend for the Enterprise
Talend for the Enterprise
 
Ahead of the Curve
Ahead of the CurveAhead of the Curve
Ahead of the Curve
 
Non functional requirements. do we really care…?
Non functional requirements. do we really care…?Non functional requirements. do we really care…?
Non functional requirements. do we really care…?
 
Learning from experience: Collaborative Journey towards CMMI
Learning from experience: Collaborative Journey towards CMMILearning from experience: Collaborative Journey towards CMMI
Learning from experience: Collaborative Journey towards CMMI
 
Exploiting JXL using Selenium
Exploiting JXL using SeleniumExploiting JXL using Selenium
Exploiting JXL using Selenium
 
Introduction to AWS
Introduction to AWSIntroduction to AWS
Introduction to AWS
 
Maria DB Galera Cluster for High Availability
Maria DB Galera Cluster for High AvailabilityMaria DB Galera Cluster for High Availability
Maria DB Galera Cluster for High Availability
 
Talend Open Studio Introduction - OSSCamp 2014
Talend Open Studio Introduction - OSSCamp 2014Talend Open Studio Introduction - OSSCamp 2014
Talend Open Studio Introduction - OSSCamp 2014
 
Performance Testing Session - OSSCamp 2014
Performance Testing Session -  OSSCamp 2014Performance Testing Session -  OSSCamp 2014
Performance Testing Session - OSSCamp 2014
 
Job Queue Presentation - OSSCamp 2014
Job Queue Presentation - OSSCamp 2014Job Queue Presentation - OSSCamp 2014
Job Queue Presentation - OSSCamp 2014
 

Último

Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 

Último (20)

Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 

Securing Your Webserver By Pradeep Sharma

  • 1. Securing Your Web Ser ver (A pache) OSScamp, Impetus Noida, Sept, ’07 Pradeep Kr. Sharma Account Management Executive, OSSCube
  • 2. Web ser ver (A pache) • A web server like Apache, in its simplest function, is software that displays and serves HTML pages hosted on a server to a client browser that understands the HTML code.
  • 3. Functionality • The Web server will be accessible from the Internet; and, Only static HTML pages will be served • The server will support name-based virtual hosting mechanism • Specified Web pages can be accessible only from selected IP addresses or users (basic authentication) • The server will log all the Web requests (including information about Web browsers) Or • The web server must handle the PHP/Perl scripting language • The PHP/Perl component must be able to read and write users' data in a locally installed MySQL database.
  • 4. Security Assumptions • The operating system must be hardened as much as possible, both against local and remote attacks; • The server must not offer any network services except HTTP: (80/TCP); • Remote access to the server must be controlled by a firewall, which should block all outbound connections, and allow inbound connections only to the 80/TCP port of the Web server; • The Apache Web server must be the only service available on the system;
  • 5. Only absolutely necessary Apache modules should be enabled; • Any diagnostic Web pages and automatic directory indexing service must be turned off; • The server should disclose the least amount of information about itself (security by obscurity); • The Apache server must run under a unique UID/GID, not used by any other system process; • Apache's processes must have limited access to the file systems (chrooting); and, • No shell programs can be present in the Apache's chrooted environment (/bin/sh, /bin/csh etc.). Or • The PHP configuration should take advantage of built-in security mechanisms • PHP scripts must be executed in a chrooted environment
  • 6. The Apache server must reject all requests (GET and POST), which contain HTML tags (possible Cross-Site-Scripting attack) or apostrophe/quotation marks (possible SQL Injection attack) • No PHP warning or error messages should be shown to the web application's regular users • It should be possible to store incoming GET and POST requests into a text file which will make it possible to use additional, host-based intruder detection system (HIDS), e.g. swatch.
  • 7. Operating system • UNIX or UNIX like system i.e. Linux, FreeBSD, etc. is best for Apache. MS Windows provide very limited securing capabilities to apache so not recommended.
  • 8. Prerequisites • OpenSSL should be already installed on your system if you want Apache and SSL encryption support. • PosgreSQL should be already installed on your system if you want Apache and PostgreSQL database connectivity support. Or • MySQL should be already installed on your system if you want Apache and MySQL database connectivity support.
  • 9. MM should be already installed on your system if you want Apache and MM high-performance RAM-based session cache support. • OpenLDAP should be already installed on your system if you want Apache and LDAP directory connectivity support. • IMAP & POP should be already installed on your system if you want Apache and IMAP & POP capability.
  • 10. Software Preparation These installation instructions assume • Commands are Unix-compatible. • The source path is /var/tmp • Installations were tested on Red Hat Linux • All steps in the installation will happen in super-user account root. • Apache version number is 1.3.27+ (Why?) • Mod_SSL • Mod_Perl (Optional) • Mod_PHP
  • 11. Packages • Apache : http://www.apache.org/ • Mod_Perl : http://perl.apache.org/ • Mod_SSL : http://www.modssl.org/ • Mod_PHP : http://www.php.net/
  • 12. Step – 1 - Installation Decompress TAR balls and keep in one directory i.e. /var/tmp Copy • [root@localhost]/# cp apache_version.tar.gz /var/tmp • [root@localhost]/# cp mod_ssl-version-version.tar.gz /var/tmp • [root@localhost]/# cp mod_perl-version.tar.gz /var/tmp • [root@localhost]/# cp php-version.tar.gz /var/tmp • [root@localhost]/# cd /var/tmp/ Decompress • [root@localhost]/tmp# tar xzpf apache_version.tar.gz • [root@localhost]/tmp# tar xzpf mod_ssl-version-version.tar.gz • [root@localhost]/tmp# tar xzpf mod_perl-version.tar.gz • [root@localhost]/tmp# tar xzpf php-version.tar.gz
  • 13. Mod_SSL – • [root@localhost]/# cd mod_ssl-version-version • [root@localhost]/# CC="egcs" CFLAGS="-O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions" ./configure --with-apache=../apache_1.3.37 --with- crt=/etc/ssl/certs/server.crt --with-key=/etc/ssl/private/server.key *CC – C Compiler **egcs – Enhanced GNU Compiler System ***CFLAGS – O2 (i386), O3 (i586), O9 (i686) Optimization Option
  • 14. PHP 4 • [root@localhost]# cd apache_1.3.37 Configure - • [root@localhost]# CC="egcs" OPTIM="-O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions" CFLAGS="- DDYNAMIC_MODULE_LIMIT=0" • ./configure • --prefix=/home/httpd • --bindir=/usr/bin • --sbindir=/usr/sbin • --libexecdir=/usr/lib/apache • --includedir=/usr/include/apache • --sysconfdir=/etc/httpd/conf • --localstatedir=/var • --runtimedir=/var/run • --logfiledir=/var/log/httpd • --datadir=/home/httpd • --proxycachedir=/var/cache/httpd • --mandir=/usr/man
  • 15. PHP4 This tells PHP4 to set itself up for this particular hardware setup with: • Compile without debugging symbols. • Enable safe mode by default. • Include IMAP & POP support. • Include LDAP directory support. • Include PostgreSQL / MySQL database support. • Include mm support to improve performance of Memory Library. • Enable inline-optimization for better performance. • Compile with memory limit support. • Assume the C compiler uses GNU ld. • 3. [root@deep ]/php-4.0# make && make install
  • 16. Mod_PERL • [root@localhost] cd ../mod_perl-version.version/ • [root@localhost] perl Makefile.PL EVERYTHING=1 APACHE_SRC=../apache_1.3.37/src USE_APACI=1 PREP_HTTPD=1 DO_HTTPD=1 • 3. [root@localhost]/mod_perl-version.version# make && make install
  • 17. Apache • 1. [root@localhost]/apache1.3.37# SSL_BASE=SYSTEM EAPI_MM=SYSTEM CC="egcs" OPTIM="-O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions" CFLAGS="-DDYNAMIC_MODULE_LIMIT=0" • ./configure • --prefix=/home/httpd • --bindir=/usr/bin • --sbindir=/usr/sbin • --libexecdir=/usr/lib/apache • --includedir=/usr/include/apache • --sysconfdir=/etc/httpd/conf • --localstatedir=/var • --runtimedir=/var/run • --logfiledir=/var/log/httpd • --datadir=/home/httpd • --proxycachedir=/var/cache/httpd • --mandir=/usr/man • --add-module=src/modules/experimental/mod_mmap_static.c • --add-module=src/modules/standard/mod_auth_db.c
  • 18. --enable-module=ssl • --enable-rule=SSL_SDBM • --disable-rule=SSL_COMPAT • --activate-module=src/modules/php4/libphp4.a • --enable-module=php4 • --activate-module=src/modules/perl/libperl.a • --enable-module=perl • --disable-module=status • --disable-module=userdir • --disable-module=negotiation • --disable-module=autoindex • --disable-module=asis • --disable-module=imap • --disable-module=env • --disable-module=actions • 2. [root@localhost]/apache1.3.37# make && make install
  • 19. Step – 2: Chroot Jail • Chroot • Chrooting is the process through which you can change the root of a system to different location so that actual root system will safe from the intruders.
  • 20.
  • 21. Benefit • Apache by default runs as a non-root user, which will limit any damage to what can be done as a normal user with a local shell. • The main benefit of a chroot jail is that the jail will limit the portion of the file system the daemon can see to the root directory of the jail. • The jail only needs to support Apache; the programs available in the jail can be extremely limited. • There is no need for setuid-root programs, which can be used to gain root access and break out of the jail.
  • 22. Pros • If apache is ever compromised, the attacker will not have access to the entire file system. • Poorly written CGI scripts that may allow someone to access your server will not work. Cons • There are extra libraries you'll need to have in the chroot jail for Apache to work. • If you use any Perl/CGI features with Apache, you will need to copy the needed binaries, Perl libraries and files to the appropriate spot within the chroot space. The same applies for SSL, PHP, LDAP, PostgreSQL and other third-party programs.
  • 23. Find Dependences • [root@localhost]/# ldd /usr/sbin/httpd • libpam.so.0 =>/lib/libpam.so.0 (0x40016000) • libm.so.6 =>/lib/libm.so.6 (0x4001f000) • libdl.so.2 =>/lib/libdl.so.2 (0x4003b000) • libcrypt.so.1 =>/lib/libcrypt.so.1 (0x4003e000) • libnsl.so.1 =>/lib/libnsl.so.1 (0x4006b000) • libresolv.so.2 =>/lib/libresolv.so.2 (0x40081000) • libdb.so.3 =>/lib/libdb.so.3 (0x40090000) • libc.so.6 =>/lib/libc.so.6 (0x400cb000) • /lib/ld-linux.so.2 =>/lib/ld-linux.so.2 (0x40000000)
  • 24. Create Dir ector y Str uctur e (Similar in dependencies) • [root@localhost ]/# mkdir /chroot/httpd • [root@localhost ]/# mkdir /chroot/httpd/dev • [root@localhost ]/# mkdir /chroot/httpd/lib • [root@localhost ]/# mkdir /chroot/httpd/etc • [root@localhost ]/# mkdir -p /chroot/httpd/usr/sbin • [root@localhost ]/# mkdir -p /chroot/httpd/var/run • [root@localhost ]/# mkdir -p /chroot/httpd/var/log/httpd • [root@localhost ]/# chmod 750 /chroot/httpd/var/log/httpd/ • [root@localhost ]/# mkdir -p /chroot/httpd/home/httpd
  • 25. Copy all found dependencies into created directory along with File Access Permissions (No other writable) • [root@localhost ]/# cp -r /etc/ssl /chroot/httpd/etc/ � require only if you use mod_ssl feature. • [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/certs/ca.crt � require only if you use mod_ssl feature. • [root@localhost ]/# chmod 600 /chroot/httpd//etc/ssl/certs/server.crt � require only if you use mod_ssl feature. • [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/private/ca.key � require only if you use mod_ssl feature. • [root@localhost ]/# chmod 600 /chroot/httpd/etc/ssl/private/server.key � require only if you use mod_ssl feature.
  • 26. users authentication with .dbmpasswd password file • To change the permissions on the dbmmanage program, use the following command: • [root@localhost ]/# chmod 750 /usr/bin/dbmmanage • To create a username and password, use the following command: • [root@deep ]/# /usr/bin/dbmmanage /etc/httpd/.dbmpasswd adduser username • New password: • Re-type new password: • User username added with password encrypted to l4jrdAL9MH0K.
  • 27. Now copy the passwd and group files inside the /chroot/httpd/etc chrooted directory and remove all entries except for the user that apache runs as in both files passwd and group. • [root@localhost ]/# cp /etc/passwd /chroot/httpd/etc/ • [root@localhost ]/# cp /etc/group /chroot/httpd/etc/ Edit the passwd file, vi /chroot/httpd/etc/passwd and delete all entries except for the user apache run as in our configuration, it's www: • www:x:80:80::/home/www:/bin/bash Edit the group file, vi /chroot/httpd/etc/group and delete all entries except the group apache run as, in our configuration it,s www: • www:x:80: Then you will also need /etc/resolv.conf, /etc/nsswitch.conf and /etc/hosts files in your chroot jail in same directory structure to resolve hosts name.
  • 28. Step – 3: Securing CGI Applications • Configuring PHP • add the following lines to httpd.conf • AddModule mod_php4.c • AddType application/x-httpd-php .php • AddType application/x-httpd-php .inc • AddType application/x-httpd-php .class • A few changes must also be made in the PHP configuration file (/chroot/httpd/usr/local/lib/php.ini). • Parameter Description • safe_mode = On • safe_mode_gid = Off • open_basedir = directory[:...] (Only this dir. Accessible by Scipts) • safe_mode_exec_dir = directory[:...] (Executable program refused to run by Apache) • expose_php = Off (Do not show PHP Info) • register_globals = Off • display_errors = Off • log_errors = On • error_log = filename
  • 29. Changing the file extension • In order to change the extensions, all the *.php files should be renamed to *.dhtml (for example), and the following line should be changed in /chroot/httpd/usr/local/apache/conf/httpd.conf: • AddType application/x-httpd-php .php • to the new one: • AddType application/x-httpd-php .dhtml • Web users will not see *.php extension in the URL address which is what immediately suggests that the PHP technology is being used at the server side.
  • 30. The last step - Defending against CSS and SQL Injection attacks • In order to perform that, we will use the mod_security module, which we enable by adding the following line into httpd.conf: • AddModule mod_security.c To enable logging of the GET and POST requests, it suffices to add the following section to httpd.conf: • <IfModule mod_security.c> • AddHandler application/x-httpd-php .php • SecAuditEngine On • SecAuditLog logs/audit_log • SecFilterScanPOST On • SecFilterEngine On • </IfModule>
  • 31. The above commands will enable the Audit Engine, which is responsible for logging requests, and the Filtering POST Engine, which will make it possible to log POST requests. In order to protect web application against CSS attacks, the following lines should also be inserted before "</IfModule>": • SecFilterDefaultAction "deny,log,status:500" • SecFilter "<(.|n)+>“ • The first line causes that the server to return the "Internal Server Error" message when the request contains the search phrase from any SecFilter variable. • The second line sets up the filter to search for HTML tags in the GET and POST requests.
  • 32. One of the typical signatures of SQL Injection attack is the appearance of an apostrophe (') or quotation mark (") in the GET or POST request. By rejecting all the requests containing those characters, we can make the use of SQL Injection technique very difficult: • SecFilter "'" • SecFilter """ • Note, that although filtering the <, >, ', " characters lets us defend against CSS and SQL Injection attacks, it can lead to the improper functioning of the PHP application. It happens, because regular users cannot use those characters in the HTML forms. To solve that problem, the JavaScript language can be used on the client side, which should replace the prohibited characters with special tags, e.g. &lt; &gt; &quot; etc.
  • 33. Summar y Achieving a high level of a web server's security using server-side technologies (PHP, ASP, JSP etc.) is a very difficult task in practice. Reasons: • Server itself does not defend against poor programming techniques. • Server side technology’s (ASP, PHP, JSP etc.) vulnerability also make the web server attack prone. • Applying of security patches and removal of unused files is necessary to make your web server more defensive. • We cannot forget that the security of the whole environment depends not only on Apache's or PHP's configuration, but also and foremost - on the web application itself. • Programmers need to analyze their code or application before deploying it over production server. • Regular monitoring of Logs and CGI behavior necessary to run Web Server long lasting without Attack. • Making a dedicated Web Server involve Cost and may be overhead and compromising it, needs analysis.
  • 35. T hank you! For more information, contact us: OSSCube India: +91 995 809 0987 USA: +1 919 791 5427 Web: www.osscube.com Mail: info@osscube.com