IF

Poetry No Comments »

The central idea of this poem is that success comes from self-control and a true sense of the values of things. In extremes lies danger. A man must not lose heart because of doubts or opposition, yet he must do his best to see the grounds for both. He must not be deceived into thinking either triumph or disaster final; he must use each wisely–and push on. In all things he must hold to the golden mean. If he does, he will own the world, and even better, for his personal reward he will attain the full stature of manhood.

If you can keep your head when all about you
Are losing theirs and blaming it on you,
If you can trust yourself when all men doubt you,
But make allowance for their doubting too;
If you can wait and not be tired by waiting,
Or being lied about, don’t deal in lies,
Or being hated don’t give way to hating,
And yet don’t look too good, nor talk too wise:

If you can dream–and not make dreams your master;
If you can think–and not make thoughts your aim,
If you can meet with Triumph and Disaster
And treat those two imposters just the same;
If you can bear to hear the truth you’ve spoken
Twisted by knaves to make a trap for fools,
Or watch the things you gave your life to, broken,
And stoop and build ‘em up with worn-out tools:

If you can make one heap of all your winnings
And risk it on one turn of pitch-and-toss,
And lose, and start again at your beginnings
And never breathe a word about your loss;
If you can force your heart and nerve and sinew
To serve your turn long after they are gone,
And so hold on when there is nothing in you
Except the Will which says to them; “Hold on!”

If you can talk with crowds and keep your virtue,
Or walk with Kings–nor lose the common touch,
If neither foes nor loving friends can hurt you,
If all men count with you, but none too much;
If you can fill the unforgiving minute
With sixty seconds’ worth of distance run,
Yours is the Earth and everything that’s in it,
And–which is more–you’ll be a Man, my son!

Rudyard Kipling.

From “Rudyard Kipling’s Verse, 1885-1918.”

  • Share/Bookmark
Tags: , ,

THE THREE ESSENTIALS of the English Language

CMN 432 No Comments »

The three essentials of the English language are: Purity, Perspicuity and Precision.

By Purity is signified the use of good English. It precludes the use of all slang words, vulgar phrases, obsolete terms, foreign idioms, ambiguous expressions or any ungrammatical language whatsoever. Neither does it sanction the use of any newly coined word until such word is adopted by the best writers and speakers.

Perspicuity demands the clearest expression of thought conveyed in unequivocal language, so that there may be no misunderstanding whatever of the thought or idea the speaker or writer wishes to convey. All ambiguous words, words of double meaning and words that might possibly be construed in a sense different from that intended, are strictly forbidden. Perspicuity requires a style at once clear and comprehensive and entirely free from pomp and pedantry and affectation or any straining after effect.

Precision requires concise and exact expression, free from redundancy and tautology, a style terse and clear and simple enough to enable the hearer or reader to comprehend immediately the meaning of the speaker or writer. It forbids, on the one hand, all long and involved sentences, and, on the other, those that are too short and abrupt. Its object is to strike the golden mean in such a way as to rivet the attention of the hearer or reader on the words uttered or written.

  • Share/Bookmark
Tags: , , , , ,

FOUR THINGS

Poetry No Comments »

What are the qualities of ideal manhood? Various people have given various answers to this question. Here the poet states what qualities he thinks indispensable.

Four things a man must learn to do
If he would make his record true:
To think without confusion clearly;
To love his fellow-men sincerely;
To act from honest motives purely;
To trust in God and Heaven securely.

Henry Van Dyke.

From “Collected Poems.”

  • Share/Bookmark
Tags: ,

LAMP setup: Beginning

IT, Security No Comments »

Original Document Here

How to install and configure Linux as a Web server? What are the main steps to go? This article should cover the main configuration steps for LAMP – Linux Apache MySQL PHP server.

  1. Which Linux distribution to install?
  2. Before installation
  3. Partitioning
  4. Package selection
  5. Set runlevel to 3
  6. Turn off needless services
  7. Firewall
  8. Forbid ssh access for root

1. Which Linux distribution to install?
List of Linux distributions are huge, please see Linux distribution list (after page load, click on Go button). Among that list, there exists several main Linux distributions (streams): RedHat, Debian, Suse, Ubuntu … Choose the one that looks most familiar to you. In my case for Web server, I choose CentOS (current version CentOS 5) from RedHat family. CentOS is an Enterprise-class Linux Distribution derived from freely provided sources. It should be stable distribution with minimum bugs and large community. The most important thing is – I have experience with RedHat tools and the way of RedHat system configuration.

2. Before installation
Check if server has redundant components: power supply, RAID, Ethernet adapters … It is good to have at least RAID arrays. Linux will see hardware RAID as one disk that should be partitioned. Depending on number of disks in RAID array, you can create RAID1 (mirroring) or RAID5 (striped disks with parity). In case of 4 disk, it will be wise to take 3 disks and create RAID5 array, and define last disk as a spare disk. In such RAID5 configuration, if one disk in array fail, RAID controller should automatically reuse spare disk and start content reconstruction. If your server doesn’t have hardware RAID, you have software RAID/LVM option during Linux installation process – but this is more advanced task.

3. Partitioning
Linux installation is easy. Nice graphical interface with built in help and wizards. This could proceed everyone with windowsland installation experience. Step in which care should be taken is the disk partitioning. If you click on next at partitioning step, installer will create default disk partitions which will be generally OK – swap, /boot and / (slash) partition, but in any serious LAMP installation, choose Manually partitioning and create seven partitions. In case of 140Gb disk size, partition arrangement can be:

  1. 1Gb  swap # mark as primary
  2. 1Gb  /     # mark as primary
  3. 1Gb  /tmp  # mark as primary
  4. 1Gb  /home
  5. 8Gb  /usr
  6. 70Gb /var
  7. 58Gb /backup
1Gb  swap  # mark as primary
1Gb  /     # mark as primary
1Gb  /tmp  # mark as primary
1Gb  /home
8Gb  /usr
70Gb /var
58Gb /backup

Size of swap depends on amount of memory and as I was monitoring server with 4Gb of RAM, 1Gb of swap is good enough. Web server should not dive deep to swap. If it does, increase RAM memory or reduce running services. In old Linux school, good practise was to create big enough / (slash) partition because of kernel upgrade. /boot was only directory beneath / (slash) partition. As you know, every new kernel doesn’t overwrite the old one because backup reboot option. So, good administrator have to manually delete old kernel after some time of new kernel production and there should be enough disk space to contain more than one kernel on the system. Frequently used partitions are marked as primary to minimize access time. I usually give 1Gb for /tmp which is maybe oversized, but in case of database export or unpacking tars it is very handy. /home partition size depends on the purpose of web server. If users will exist on the Web server, you will have to dimension size of /home partition with more care. 8Gb for /usr partition is enough for LAMP server and it will not be in use more than 50%. After sizing swap, / (slash), /tmp, /home and /usr all remaining free space share between /var and /backup partition. /var partition contains MySQL files, log files, spool mail and web document root, so in case of 140Gb disk space, I give 70Gb to /var and 58Gb to /backup (because of arrangement to hold 3 days of database export – one database export is 15Gb). Good practise is also to save daily backup of configuration files (whole /etc directory), document root, MySQL dump (export), cron files and /root directory. I call it first backup level. Real backup plan should not stop here. All tars from /backup partition should be placed on dedicated backup server or simply copied with scp to another (physically distant) server.

4. Package selection
After disk partitioning, there come few easy tasks: root password (set strong password), user creation, IP address, DNS … and then package selection. Don’t forget to check Web server and database MySQL or PostgreSQL. Web server package contains Apache with PHP module. If needed, FTP server can be also included in installation and that will be all for package LAMP setup. Installer will include all dependencies, so relax and enjoy in Linux installation. :)

5. Set runlevel to 3
After installation and first restart, server will probably boot to runlevel 5 – if you install GNOME or KDE. Nice graphic interface gdm will awaiting users to login. Open /etc/inittab and find line with initdefault. Simply replace number 5 with 3 and save file. After reboot, system will boot to runlevel 3 (without X server). Inside inittab you will also find definition of spawn 6 gettys in standard runlevels. You can comment bottom four because server configuration and monitoring will mostly go through ssh.

  1. # Default runlevel. The runlevels used by RHS are:
  2. #   0 - halt (Do NOT set initdefault to this)
  3. #   1 - Single user mode
  4. #   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
  5. #   3 - Full multiuser mode
  6. #   4 - unused
  7. #   5 - X11
  8. #   6 - reboot (Do NOT set initdefault to this)
  9. id:3:initdefault:
  10. # Run gettys in standard runlevels
  11. 1:2345:respawn:/sbin/mingetty tty1
  12. 2:2345:respawn:/sbin/mingetty tty2
  13. #3:2345:respawn:/sbin/mingetty tty3
  14. #4:2345:respawn:/sbin/mingetty tty4
  15. #5:2345:respawn:/sbin/mingetty tty5
  16. #6:2345:respawn:/sbin/mingetty tty6
# Default runlevel. The runlevels used by RHS are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
id:3:initdefault:
...
...
# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
#3:2345:respawn:/sbin/mingetty tty3
#4:2345:respawn:/sbin/mingetty tty4
#5:2345:respawn:/sbin/mingetty tty5
#6:2345:respawn:/sbin/mingetty tty6

In FC9 configuration of gettys are handled by /etc/event.d/tty[1-6] so I suppose that change will propagate in forthcoming CentOS 6.

6. Turn off needless services
It is good to see which services will be started during booting to runlevel 3. In RedHat family, there is utility chkconfig and in combination with grep, list runlevel 3 services. You will see long list of services and many of them are needless for LAMP setup.

  1. chkconfig –list | grep 3:on
chkconfig --list | grep 3:on

Minimum and sufficient list of running services for LAMP setup should look like:

  1. > chkconfig –list | grep 3:on
  2. crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off
  3. httpd           0:off   1:off   2:on    3:on    4:on    5:on    6:off
  4. iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off
  5. irqbalance      0:off   1:off   2:on    3:on    4:on    5:on    6:off
  6. microcode_ctl   0:off   1:off   2:on    3:on    4:on    5:on    6:off
  7. mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off
  8. network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
  9. sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
  10. syslog          0:off   1:off   2:on    3:on    4:on    5:on    6:off
> chkconfig --list | grep 3:on
crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off
httpd           0:off   1:off   2:on    3:on    4:on    5:on    6:off
iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off
irqbalance      0:off   1:off   2:on    3:on    4:on    5:on    6:off
microcode_ctl   0:off   1:off   2:on    3:on    4:on    5:on    6:off
mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off
network         0:off   1:off   2:on    3:on    4:on    5:on    6:off
sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
syslog          0:off   1:off   2:on    3:on    4:on    5:on    6:off

All other services can be turned off by executing “chkconfig <service> off” command:

  1. chkconfig cups off
  2. chkconfig gpm off
chkconfig cups off
chkconfig gpm off
...

After turning off needless services and before production launch, reboot server to see if everything works as expected.

7. Firewall
Web server will be probably placed behind DMZ’s firewall, but it is good to protected LAMP server with his own firewall. This firewall should accept HTTP requests from any source and SSH request from intranet side only (in example from one IP address). All other types of connections will be forbidden. You can use system-config-securitylevel utility to create file /etc/sysconfig/iptables and it’s content should look like:

  1. *filter
  2. :INPUT ACCEPT [0:0]
  3. :FORWARD ACCEPT [0:0]
  4. :OUTPUT ACCEPT [0:0]
  5. -A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT
  6. -A INPUT -p icmp -j ACCEPT
  7. -A INPUT -i lo -j ACCEPT
  8. -A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
  9. -A INPUT -m state –state NEW -m tcp -p tcp –dport 22 -s 123.123.123.123 -j ACCEPT
  10. -A INPUT -j REJECT –reject-with icmp-host-prohibited
  11. -A FORWARD -j REJECT –reject-with icmp-host-prohibited
  12. COMMIT
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 22 -s 123.123.123.123 -j ACCEPT
-A INPUT -j REJECT –reject-with icmp-host-prohibited
-A FORWARD -j REJECT –reject-with icmp-host-prohibited
COMMIT

… or you can open file /etc/sysconfig/iptables copy/paste this configuration and restart iptables.

8. Forbid ssh access for root
Before production, create at least one user more without any administration rights – normal user with strong password (if you didn’t in step 4.).

  1. useradd <username>
useradd <username>

In /etc/ssh/sshd_config find option PermitRootLogin and write it to:

  1. PermitRootLogin no
PermitRootLogin no

Restart sshd and root will no longer be able to access LAMP server through ssh – that’s why additional user exists. To obtain administrator rights, execute “su -” (substitute user) command.

After finishing all this steps, LAMP server should be secured with minimum running services, firewall and disabled root ssh access. Now it’s time for Apache and PHP configuration …

  • Share/Bookmark
Tags: , , , ,

How should I set up my Linux Web Server? by Neo Notenboom

IT, Security No Comments »

Original Document Here

WHM

Step one was to login to Web Host Manager (the server management front-end for cPanel), and run their configuration wizard. The only things that required non-default action were:

  • setting the hostname
  • added a resolver (DNS) server ip

After the wizard was complete, these additional settings were performed manually:

  • Server Contact E-Mail
  • Turned on awstats web stats reporting tool
  • Changed hostname. (Even though the wizard set it, this was an additional, different place.)
  • Changed system mail preferences to send root email to an admin alias.
  • Changed root password.
  • Set Nameservers

Also ran Update Server Software and Update System Software within WHM to update as many components as reasonable.

Linux Kernel

The original configuration as delivered by the server farm:

WHM 10.1.0 cPanel 10.2.0-R82
RedHat Enterprise 3 i686 – WHM X v3.1.0
Linux kernel version: 2.4.21-27.ELsmp

Since that’s not the latest kernel at the time of delivery, and cPanel will not update the kernel automatically, I was advised to update. I upgraded the kernel to 2.4.21-32.0.1.ELsmp, which went smoothly.

Remote Access

One of the areas for almost immediate security tweaking is remote access. If you’ve ever examined a server’s logs, you know that they’re regularly probed with various types of attacks. There are several modifications to render those attacks pointless, as well as secure remote access in general.

SSH

SSH, or secure shell, is the remote command-line access mechanism of choice. It’s single biggest claim to fame is simply that everything is encrypted, though it includes many more features as well.

I first created a couple of non-root login accounts, and installed RSA public keys for eventual RSA/public key-only logins. (Also created end-user instructions for creating, and using, SSH key pairs.)

I then made the following changes to /etc/ssh/sshd_config:

  • Protocol 2 – this disables protocol version 1, which is known to have security issues.
  • PermitRootLogin without-password – this disables root login, unless a public key is used.
  • PasswordAuthentication set to no – this disables the ability to login with just a username and password. A username and public key are required.

Telnet

I disabled telnet, as it allows passwords to be transmitted in the clear, and is a known security risk.

FTP

Normally at this point I would also disable the FTP service for the same reasons as Telnet – it’s a known security risk. For reasons I didn’t bother to investigate further, cPanel either complained repeatedly via email if the service was stopped, or it would restart it, depending on the technique I was attempting to use. I gave up on this and left the FTP service running, but blocked at the firewall, discussed below.

TMP

The /tmp directory is an interesting and apparently common place for hackers to exploit to breech a system. One approach to securing it without breaking its functionality is to create it as a new partition that disallows program execution. Where in the past a hacker could use an exploit to place a file in /tmp and then execute it, the ability to execute is now removed by creating a secure /tmp partition.

Firewall

Installed APF which is, essentially, an intelligent front end to the built in Linux firewall, iptables. I found a good how-to, though I did not yet configure the antidos (denial of service) component. The one change that I did make to the default configuration is that I disabled or blocked all ports that we know are not explicitly used for something specific. For example, this is where I blocked all FTP access. I also whitelisted my own static IP address, and that of the client.

Logging

Logwatch is a server log summary tool that emails a report to the server admins nightly. An older version was installed. I updated to latest, and increased the reporting level to “medium”.

Rootkit Checks

Installed nightly backup script, which includes nightly reporting of both rkhunter and chkrootkit runs.

Apache

Installed mod_security, which guards against exploits via the Apache web server, using a basic ruleset. This how to was helpful in setting that up.

General

A few additional tweaks and settings …

  • Installed LES – “LES is intended as a facility to quickly & easily secure Redhat/RPM based environments (i.e: turbo Linux, open Linux). It does such by enforcing root-only permissions on system binaries (binaries that have no place being executed by normal users), enforcing root-only path traversal on system paths, enforcing immutable bit on essential rpm package contents (i.e: coreutils), and enforcing immutable bit on shell profile scripts.”
  • Added a mail line to /etc/rc.d/rc.local, to automatically notify on reboots.
  • Removed the cpbackup cron job, since we don’t use cPanel’s backup approach.
  • Modified reverse-DNS to be correct.

Ongoing Maintenance

Even with all the tools and updates in place, there’s still on-going work and vigilance required.

  • Monitor the nightly logs and reports generated for anomalies.
  • Manually install updates as reported available by up2date.
  • Monitor Redhat for kernel updates, and install as appropriate.
  • Monitor chkrootkit for updates, and install as appropriate.

Still More Options

I haven’t implemented these, but they’ve been recommended, and they’re on the list to evaluate at some point.

  • mod_doevasive. “mod_dosevasive is an evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack. It is also designed to be a detection and network management tool, and can be easily configured to talk to ipchains, firewalls, routers, and etcetera. mod_dosevasive presently reports abuses via email and syslog facilities.” How To
  • Evaluate BFD. “BFD is a modular shell script for parsing applicable logs and checking for authentication failures.”
  • Share/Bookmark
Tags: , , , , , , , , , , ,