<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5729699752846829108</id><updated>2011-07-08T04:51:21.058-05:00</updated><title type='text'>Jeff Rangel</title><subtitle type='html'>My Life, My Dreams and all in between!</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>37</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2420201507028512198</id><published>2009-07-26T16:05:00.000-05:00</published><updated>2009-07-26T16:06:59.190-05:00</updated><title type='text'>Top 20 OpenSSH Server Best Security Practices</title><content type='html'>&lt;div class="headline_area"&gt;      &lt;h1 class="entry-title"&gt;Top 20 OpenSSH Server Best Security Practices&lt;/h1&gt;      &lt;p class="headline_meta"&gt;by &lt;span class="author vcard fn"&gt;Vivek Gite&lt;/span&gt;&lt;/p&gt;     &lt;/div&gt;      &lt;div style="float: right; margin-top: 0px; margin-left: 5px;"&gt;&lt;a href="http://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html/openssh_logo" rel="attachment wp-att-5522"&gt;&lt;img src="http://files.cyberciti.biz/uploads/tips/2009/07/openSSH_logo.png" alt="Don't tell anyone that I'm free" title="Don't tell anyone that I'm free" class="size-full wp-image-5522" width="190" height="187" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;p&gt;OpenSSH is the implementation of the SSH protocol. OpenSSH is recommended for remote login, making backups, remote file transfer via scp or sftp, and much more. SSH is perfect to keep confidentiality and integrity for data exchanged between two networks and systems. However, the main advantage is server authentication, through the use of public key cryptography. From time to time there are &lt;a href="http://isc.sans.org/diary.html?storyid=6742" target="_blank"&gt;rumors&lt;/a&gt; about OpenSSH &lt;a href="http://www.h-online.com/security/OpenSSH-zero-day-exploit-rumours-not-confirmed--/news/113731" target="_blank"&gt;zero day&lt;/a&gt; exploit. Here are a few things you need to tweak in order to improve OpenSSH server security.&lt;br /&gt;&lt;span id="more-5489"&gt;&lt;/span&gt;&lt;/p&gt; &lt;h2&gt;Default Config Files and SSH Port&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;&lt;strong&gt;/etc/ssh/sshd_config &lt;/strong&gt;- OpenSSH server configuration file.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;/etc/ssh/ssh_config&lt;/strong&gt; - OpenSSH client configuration file.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;~/.ssh/&lt;/strong&gt; - Users ssh configuration directory.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;~/.ssh/authorized_keys&lt;/strong&gt; or  &lt;strong&gt;~/.ssh/authorized_keys&lt;/strong&gt; -  Lists the public keys (RSA or DSA) that can be used to log into the user’s account&lt;/li&gt;&lt;li&gt;&lt;strong&gt; /etc/nologin&lt;/strong&gt; - If this file exists, sshd refuses to let anyone except root log in.&lt;/li&gt;&lt;li&gt;&lt;strong&gt; /etc/hosts.allow&lt;/strong&gt; and &lt;strong&gt;/etc/hosts.deny&lt;/strong&gt; : Access controls lists that should be enforced by tcp-wrappers are defined here.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;SSH default port &lt;/strong&gt;: TCP 22&lt;/li&gt;&lt;/ul&gt; &lt;div id="attachment_5556" class="wp-caption aligncenter" style="width: 600px;"&gt;&lt;a href="http://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html/ssh-session" rel="attachment wp-att-5556"&gt;&lt;img src="http://files.cyberciti.biz/uploads/tips/2009/07/ssh-session.png" alt="SSH Session in Action" title="SSH Session in Action" class="size-full wp-image-5556" width="590" height="365" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;SSH Session in Action&lt;/p&gt;&lt;/div&gt; &lt;h2&gt;#1: Disable OpenSSH Server&lt;/h2&gt; &lt;p&gt;Workstations and laptop can work without OpenSSH server. If you need not to provide the remote login and file transfer capabilities of SSH, disable and remove the SSHD server. CentOS / RHEL / Fedora Linux user can disable and remove openssh-server with yum command:&lt;br /&gt;&lt;code&gt;# chkconfig sshd off&lt;br /&gt;# yum erase openssh-server&lt;/code&gt;&lt;br /&gt;Debian / Ubuntu Linux user can disable and remove the same with apt-get command:&lt;br /&gt;&lt;code&gt;# apt-get  remove openssh-server&lt;/code&gt;&lt;br /&gt;You may need to update your iptables script to remove ssh exception rule. Under CentOS / RHEL / Fedora edit the files /etc/sysconfig/iptables and /etc/sysconfig/ip6tables. Once done &lt;a href="http://www.cyberciti.biz/faq/howto-rhel-linux-open-port-using-iptables/"&gt;restart iptables&lt;/a&gt; service:&lt;br /&gt;&lt;code&gt;# service iptables restart&lt;br /&gt;# service ip6tables restart&lt;/code&gt;&lt;/p&gt; &lt;h2&gt;#2: Only Use SSH Protocol 2 &lt;/h2&gt; &lt;p&gt;SSH protocol version 1 (SSH-1) has man-in-the-middle attacks problems and security vulnerabilities. SSH-1 is obsolete and should be avoided at all cost. Open sshd_config file and make sure the following line exists:&lt;/p&gt; &lt;pre class="ini"&gt;Protocol &lt;span style=""&gt;2&lt;/span&gt;&lt;/pre&gt; &lt;h2&gt;#3: Limit Users' SSH Access&lt;/h2&gt; &lt;p&gt;By default all systems user can login via SSH using their password or public key. Sometime you create UNIX / Linux user account for ftp or email purpose. However, those user can login to system using ssh. They will have full access to system tools including compilers and scripting languages such as Perl, Python which can open network ports and do many other fancy things. One of my client has really outdated php script and an attacker was able to create a new account on the system via a php script. However, attacker failed to get into box via ssh because it wasn't in AllowUsers. &lt;/p&gt; &lt;p&gt;Only allow root, vivek and jerry user to use the system via SSH, add the following to sshd_config:&lt;/p&gt; &lt;pre class="ini"&gt;AllowUsers root vivek jerry&lt;/pre&gt; &lt;p&gt;Alternatively, you can allow all users to login via SSH but deny only a few users, with the following line:&lt;/p&gt; &lt;pre class="ini"&gt;DenyUsers saroj anjali foo&lt;/pre&gt; &lt;p&gt;You can also &lt;a href="http://www.cyberciti.biz/tips/linux-pam-configuration-that-allows-or-deny-login-via-the-sshd-server.html"&gt;configure Linux PAM&lt;/a&gt; allows or deny login via the sshd server. You can allow &lt;a href="http://www.cyberciti.biz/tips/openssh-deny-or-restrict-access-to-users-and-groups.html"&gt;list of group name&lt;/a&gt; to access or deny access to the ssh.&lt;/p&gt; &lt;h2&gt;#4:  Configure Idle Log Out Timeout Interval&lt;/h2&gt; &lt;p&gt;User can login to server via ssh and you can set an idel timeout interval to avoid unattended ssh session. Open sshd_config and make sure following values are configured:&lt;/p&gt; &lt;pre class="ini"&gt;ClientAliveInterval &lt;span style=""&gt;300&lt;/span&gt;&lt;br /&gt;ClientAliveCountMax &lt;span style=""&gt;0&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;You are setting an idle timeout interval in seconds (300 secs = 5 minutes). After this interval has passed, the idle user will be automatically kicked out (read as logged out). See &lt;a href="http://www.cyberciti.biz/faq/linux-unix-login-bash-shell-force-time-outs/"&gt;how to automatically log BASH / TCSH / SSH users&lt;/a&gt; out after a period of inactivity for more details. &lt;/p&gt; &lt;h2&gt;#5: Disable .rhosts Files&lt;/h2&gt; &lt;p&gt;Don't read the user's ~/.rhosts and ~/.shosts files. Update sshd_config with the following settings:&lt;/p&gt; &lt;pre class="ini"&gt;IgnoreRhosts yes&lt;/pre&gt; &lt;p&gt;SSH can emulate the behavior of the obsolete rsh command, just disable insecure access via RSH.&lt;/p&gt; &lt;h2&gt;#6: Disable Host-Based Authentication&lt;/h2&gt; &lt;p&gt;To disable host-based authentication, update sshd_config with the following option:&lt;/p&gt; &lt;pre class="ini"&gt;HostbasedAuthentication no&lt;/pre&gt; &lt;h2&gt;#7: Disable root Login via SSH&lt;/h2&gt; &lt;p&gt;There is no need to login as root via ssh over a network. Normal users can use su or sudo (recommended) to gain root level access. This also make sure you get full auditing information about who ran privileged commands on the system via sudo. To disable root login via SSH, update sshd_config with the following line:&lt;/p&gt; &lt;pre class="ini"&gt;PermitRootLogin no&lt;/pre&gt; &lt;p&gt;However, bob made &lt;a href="http://archives.neohapsis.com/archives/openbsd/2005-03/2878.html" target="_blank"&gt;excellent&lt;/a&gt; point:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;Saying "don't login as root" is horseshit. It stems from the days when people sniffed the first packets of sessions so logging in as yourself and su-ing decreased the chance an attacker would see the root pw, and decreast the chance you got spoofed as to your telnet host target, You'd get your password spoofed but not root's pw. Gimme a break. this is 2005 - We have ssh, used properly it's secure. used improperly none of this 1989 will make a damn bit of difference. -Bob&lt;/p&gt;&lt;/blockquote&gt; &lt;h2&gt;#8: Enable a Warning Banner&lt;/h2&gt; &lt;p&gt;Set a warning banner by updating sshd_config with the following line:&lt;/p&gt; &lt;pre class="ini"&gt;Banner /etc/issue&lt;/pre&gt; &lt;p&gt;Sample /etc/issue file:&lt;/p&gt; &lt;pre&gt;----------------------------------------------------------------------------------------------&lt;br /&gt;You are accessing a XYZ Government (XYZG) Information System (IS) that is provided for authorized use only.&lt;br /&gt;By using this IS (which includes any device attached to this IS), you consent to the following conditions:&lt;br /&gt;&lt;br /&gt;+ The XYZG routinely intercepts and monitors communications on this IS for purposes including, but not limited to,&lt;br /&gt;penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM),&lt;br /&gt;law enforcement (LE), and counterintelligence (CI) investigations.&lt;br /&gt;&lt;br /&gt;+ At any time, the XYZG may inspect and seize data stored on this IS.&lt;br /&gt;&lt;br /&gt;+ Communications using, or data stored on, this IS are not private, are subject to routine monitoring,&lt;br /&gt;interception, and search, and may be disclosed or used for any XYZG authorized purpose.&lt;br /&gt;&lt;br /&gt;+ This IS includes security measures (e.g., authentication and access controls) to protect XYZG interests--not&lt;br /&gt;for your personal benefit or privacy.&lt;br /&gt;&lt;br /&gt;+ Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching&lt;br /&gt;or monitoring of the content of privileged communications, or work product, related to personal representation&lt;br /&gt;or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work&lt;br /&gt;product are private and confidential. See User Agreement for details.&lt;br /&gt;----------------------------------------------------------------------------------------------&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;Above is standard sample, consult your legal team for exact user agreement and legal notice details.&lt;/p&gt; &lt;h2&gt;#8: Firewall SSH Port # 22&lt;/h2&gt; &lt;p&gt;You need to firewall ssh port # 22 by updating iptables or pf firewall configurations. Usually, OpenSSH server must only accept connections from your LAN or other remote WAN sites only. &lt;/p&gt; &lt;h3&gt;Netfilter (Iptables) Configuration&lt;/h3&gt; &lt;p&gt; Update /etc/sysconfig/iptables (Redhat and friends specific file) to accept connection only from 192.168.1.0/24 and 202.54.1.5/29, enter:&lt;/p&gt; &lt;pre class="bash"&gt;-A RH-Firewall&lt;span style="color: rgb(0, 0, 0);"&gt;-1&lt;/span&gt;-INPUT -s &lt;span style="color: rgb(0, 0, 0);"&gt;192.168&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;.1&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;.0&lt;/span&gt;/&lt;span style="color: rgb(0, 0, 0);"&gt;24&lt;/span&gt; -m state --state NEW -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt; -j ACCEPT&lt;br /&gt;-A RH-Firewall&lt;span style="color: rgb(0, 0, 0);"&gt;-1&lt;/span&gt;-INPUT -s &lt;span style="color: rgb(0, 0, 0);"&gt;202.54&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;.1&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;.5&lt;/span&gt;/&lt;span style="color: rgb(0, 0, 0);"&gt;29&lt;/span&gt; -m state --state NEW -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt; -j ACCEPT&lt;/pre&gt; &lt;p&gt;If you've dual stacked sshd with IPv6, edit /etc/sysconfig/ip6tables (Redhat and friends specific file), enter:&lt;/p&gt; &lt;pre class="bash"&gt; -A RH-Firewall&lt;span style="color: rgb(0, 0, 0);"&gt;-1&lt;/span&gt;-INPUT -s ipv6network::/ipv6mask -m tcp -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt; -j ACCEPT&lt;/pre&gt; &lt;p&gt;Replace ipv6network::/ipv6mask with actual IPv6 ranges. &lt;/p&gt; &lt;h3&gt;*BSD PF Firewall Configuration&lt;/h3&gt; &lt;p&gt;If you are using PF firewall update &lt;a href="http://bash.cyberciti.biz/firewall/pf-firewall-script/"&gt;/etc/pf.conf&lt;/a&gt; as follows:&lt;/p&gt; &lt;pre&gt;pass in on $ext_if inet proto tcp from {192.168.1.0/24, 202.54.1.5/29} to $ssh_server_ip port ssh flags S/SA synproxy state&lt;/pre&gt; &lt;h2&gt;#9: Change SSH Port and Limit IP Binding&lt;/h2&gt; &lt;p&gt;By default SSH listen to all available interfaces and IP address on the system. Limit ssh port binding and change ssh port (by default brute forcing scripts only try to connects to port # 22). To bind to 192.168.1.5 and 202.54.1.5 IPs and to port 300, add or correct the following line:&lt;/p&gt; &lt;pre class="ini"&gt;Port &lt;span style=""&gt;300&lt;/span&gt;&lt;br /&gt;ListenAddress &lt;span style=""&gt;192.168&lt;/span&gt;&lt;span style=""&gt;.1&lt;/span&gt;&lt;span style=""&gt;.5&lt;/span&gt;&lt;br /&gt;ListenAddress &lt;span style=""&gt;202.54&lt;/span&gt;&lt;span style=""&gt;.1&lt;/span&gt;&lt;span style=""&gt;.5&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;A better approach to use proactive approaches scripts such as  fail2ban or denyhosts (see below).&lt;/p&gt; &lt;h2&gt;#10: Use Strong SSH Passwords and Passphrase&lt;/h2&gt; &lt;p&gt;It cannot be stressed enough how important it is to use strong user passwords and passphrase for your keys. Brute force attack works because you use dictionary based passwords. You can force users to avoid &lt;a href="http://www.cyberciti.biz/tips/linux-check-passwords-against-a-dictionary-attack.html"&gt;passwords against a dictionary&lt;/a&gt; attack and  use &lt;a href="http://www.cyberciti.biz/faq/unix-linux-password-cracking-john-the-ripper/"&gt;john the ripper tool&lt;/a&gt; to find out existing weak passwords. Here is a sample random password generator (put in your ~/.bashrc):&lt;/p&gt; &lt;pre class="bash"&gt;genpasswd&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;(&lt;/span&gt;&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;)&lt;/span&gt; &lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;&lt;br /&gt; &lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;local&lt;/span&gt; &lt;span style="color: rgb(0, 120, 0);"&gt;l=&lt;/span&gt;$&lt;span style="color: rgb(0, 0, 0);"&gt;1&lt;/span&gt;&lt;br /&gt;       &lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;[&lt;/span&gt; &lt;span style="color: rgb(255, 0, 0);"&gt;"$l"&lt;/span&gt; == &lt;span style="color: rgb(255, 0, 0);"&gt;""&lt;/span&gt; &lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;]&lt;/span&gt; &amp;amp;&amp;amp; &lt;span style="color: rgb(0, 120, 0);"&gt;l=&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;20&lt;/span&gt;&lt;br /&gt;      &lt;span style="color: rgb(194, 12, 185); font-weight: bold;"&gt;tr&lt;/span&gt; -&lt;span style="color: rgb(194, 12, 185); font-weight: bold;"&gt;dc&lt;/span&gt; A-Za-z0-9_ &lt; /dev/urandom | &lt;span style="color: rgb(194, 12, 185); font-weight: bold;"&gt;head&lt;/span&gt; -c &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;l&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; | &lt;span style="color: rgb(194, 12, 185); font-weight: bold;"&gt;xargs&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;Run it:&lt;br /&gt;&lt;code&gt;genpasswd 16&lt;/code&gt;&lt;br /&gt;Output:&lt;/p&gt; &lt;pre&gt;uw8CnDVMwC6vOKgW&lt;/pre&gt; &lt;h2&gt;#11:  Use Public Key Based Authentication&lt;/h2&gt; &lt;p&gt;Use public/private key pair with password protection for the private key. See how to use &lt;a href="http://www.cyberciti.biz/tips/ssh-public-key-based-authentication-how-to.html"&gt;RSA&lt;/a&gt; and &lt;a href="http://www.cyberciti.biz/faq/ssh-password-less-login-with-dsa-publickey-authentication/"&gt;DSA key&lt;/a&gt; based authentication. Never ever use passphrase free key (passphrase key less) login.&lt;/p&gt; &lt;h2&gt;#12:  Use  Keychain Based Authentication&lt;/h2&gt; &lt;p&gt;keychain is a special bash script designed to make key-based authentication incredibly convenient and flexible. It offers various security benefits over passphrase-free keys. See how to setup and use &lt;a href="http://www.cyberciti.biz/faq/ssh-passwordless-login-with-keychain-for-scripts/"&gt;keychain software&lt;/a&gt;.&lt;/p&gt; &lt;h2&gt;#13: Chroot SSHD (Lock Down Users To Their Home Directories)&lt;/h2&gt; &lt;p&gt;By default users are allowed to browse the server directories such as /etc/, /bin and so on. You can protect ssh, using os based chroot or use &lt;a href="http://www.cyberciti.biz/tips/rhel-centos-linux-install-configure-rssh-shell.html"&gt;special tools such as rssh&lt;/a&gt;. With the release of OpenSSH 4.8p1 or 4.9p1, you no longer have to rely on third-party hacks such as rssh or complicated chroot(1) setups to lock users to their home directories. See &lt;a href="http://www.debian-administration.org/articles/590" target="_blank"&gt;this blog post&lt;/a&gt; about new ChrootDirectory directive to lock down users to their home directories.&lt;/p&gt; &lt;h2&gt;#14: Use TCP Wrappers&lt;/h2&gt; &lt;p&gt;TCP Wrapper is a host-based Networking ACL system, used to filter network access to Internet. OpenSSH does supports TCP wrappers. Just update your /etc/hosts.allow file as follows to allow SSH only from 192.168.1.2 172.16.23.12 :&lt;/p&gt; &lt;pre&gt;sshd : 192.168.1.2 172.16.23.12 &lt;/pre&gt; &lt;p&gt;See this &lt;a href="http://www.cyberciti.biz/faq/tcp-wrappers-hosts-allow-deny-tutorial/"&gt;FAQ about setting and using TCP wrappers&lt;/a&gt; under Linux / Mac OS X and UNIX like operating systems.&lt;/p&gt; &lt;h2&gt;#15: Disable Empty Passwords&lt;/h2&gt; &lt;p&gt;You need to explicitly disallow remote login from accounts with empty passwords, update sshd_config with the following line:&lt;/p&gt; &lt;pre class="ini"&gt;PermitEmptyPasswords no&lt;/pre&gt; &lt;h2&gt;#16: Thwart SSH Crackers (Brute Force Attack)&lt;/h2&gt; &lt;p&gt;Brute force is a method of defeating a cryptographic scheme by trying a large number of possibilities using a single or distributed computer network. To prevents brute force attacks against SSH, use the following softwares:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.cyberciti.biz/faq/block-ssh-attacks-with-denyhosts/"&gt;DenyHosts&lt;/a&gt; is a Python based security tool for SSH servers. It is intended to prevent brute force attacks on SSH servers by monitoring invalid login attempts in the authentication log and blocking the originating IP addresses. &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.fail2ban.org/" target="_blank"&gt;Fail2ban&lt;/a&gt; is a similar program that prevents brute force attacks against SSH.&lt;/li&gt;&lt;li&gt;&lt;a href="http://sshguard.sourceforge.net/" target="_blank"&gt;security/sshguard-pf&lt;/a&gt; protect hosts from brute force attacks against ssh and other services using pf.&lt;/li&gt;&lt;li&gt;&lt;a href="http://sshguard.sourceforge.net/" target="_blank"&gt;security/sshguard-ipfw&lt;/a&gt; protect hosts from brute force attacks against ssh and other services using ipfw.&lt;/li&gt;&lt;li&gt;&lt;a href="http://sshguard.sourceforge.net/" target="_blank"&gt;security/sshguard-ipfilter&lt;/a&gt; protect hosts from brute force attacks against ssh and other services using ipfilter.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.bsdconsulting.no/tools/" target="_blank"&gt;security/sshblock&lt;/a&gt; block abusive SSH login attempts.&lt;/li&gt;&lt;li&gt;&lt;a href="http://anp.ath.cx/sshit/" target="_blank"&gt;security/sshit&lt;/a&gt; checks for SSH/FTP bruteforce and blocks given IPs.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.aczoom.com/cms/blockhosts/" target="_blank"&gt;BlockHosts&lt;/a&gt; Automatic blocking of abusive IP hosts.&lt;/li&gt;&lt;li&gt;&lt;a href="http://blinkeye.ch/dokuwiki/doku.php/projects/blacklist" target="_blank"&gt;Blacklist&lt;/a&gt; Get rid of those bruteforce attempts.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.rfxn.com/projects/brute-force-detection/" target="_blank"&gt;Brute Force Detection&lt;/a&gt; A modular shell script for parsing application logs and checking for authentication failures. It does this using a rules system where application specific options are stored including regular expressions for each unique auth format.&lt;/li&gt;&lt;li&gt;&lt;a href="https://savannah.nongnu.org/projects/ipqbdb/" target="_blank"&gt; IPQ BDB filter&lt;/a&gt; May be considered as a fail2ban lite.&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;#17: Rate-limit Incoming Port # 22 Connections&lt;/h2&gt; &lt;p&gt;Both netfilter  and pf provides rate-limit option to perform simple throttling on incoming connections on port # 22.&lt;/p&gt; &lt;h3&gt;Iptables Example&lt;/h3&gt; &lt;p&gt;The following example will drop incoming connections which make more than 5 connection attempts upon port 22 within 60 seconds:&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;#!/bin/bash&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;inet_if=&lt;/span&gt;eth1&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;ssh_port=&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -I INPUT -p tcp --dport &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;ssh_port&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -i &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state NEW -m recent  --&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;set&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -I INPUT -p tcp --dport &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;ssh_port&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -i &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state NEW -m recent  --update --seconds &lt;span style="color: rgb(0, 0, 0);"&gt;60&lt;/span&gt; --hitcount &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt; -j DROP&lt;br /&gt; &lt;/pre&gt; &lt;p&gt;Call above script from your iptables scripts. Another config option:&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT  -i &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -p tcp --dport &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;ssh_port&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state NEW -m limit --limit &lt;span style="color: rgb(0, 0, 0);"&gt;3&lt;/span&gt;/min --limit-burst &lt;span style="color: rgb(0, 0, 0);"&gt;3&lt;/span&gt; -j ACCEPT&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT  -i &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -p tcp --dport &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;ssh_port&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state ESTABLISHED -j ACCEPT&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A OUTPUT -o &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -p tcp --sport &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;ssh_port&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state ESTABLISHED -j ACCEPT&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# another one line example&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# &lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT -i &lt;span style="color: rgb(0, 120, 0);"&gt;$&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;{&lt;/span&gt;inet_if&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt; -m state --state NEW,ESTABLISHED,RELATED -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt; -m limit --limit &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt;/minute --limit-burst &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt;-j ACCEPT&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;See iptables man page for more details.&lt;/p&gt; &lt;h3&gt;*BSD PF Example&lt;/h3&gt; &lt;p&gt;The following will limits the maximum number of connections per source to 20 and rate limit the number of connections to 15 in a 5 second span. If anyone breaks our rules add them to our abusive_ips table and block them for making any further connections. Finally, flush keyword kills all states created by the matching rule which originate from the host which exceeds these limits.&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;sshd_server_ip=&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;"202.54.1.5"&lt;/span&gt;&lt;br /&gt;table &lt;abusive_ips&gt; persist&lt;br /&gt;block &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;in&lt;/span&gt; quick from &lt;abusive_ips&gt;&lt;br /&gt;pass &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;in&lt;/span&gt; on &lt;span style="color: rgb(0, 120, 0);"&gt;$ext_if&lt;/span&gt; proto tcp to &lt;span style="color: rgb(0, 120, 0);"&gt;$sshd_server_ip&lt;/span&gt; port &lt;span style="color: rgb(194, 12, 185); font-weight: bold;"&gt;ssh&lt;/span&gt; flags S/SA keep state &lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;(&lt;/span&gt;max-src-conn &lt;span style="color: rgb(0, 0, 0);"&gt;20&lt;/span&gt;, max-src-conn-rate &lt;span style="color: rgb(0, 0, 0);"&gt;15&lt;/span&gt;/&lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt;, overload &lt;abusive_ips&gt; flush&lt;span style="color: rgb(122, 8, 116); font-weight: bold;"&gt;)&lt;/span&gt;&lt;/pre&gt; &lt;h2&gt;#18: Use Port Knocking&lt;/h2&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Port_knocking" target="_blank"&gt;Port knocking&lt;/a&gt; is a method of externally opening ports on a firewall by generating a connection attempt on a set of prespecified closed ports. Once a correct sequence of connection attempts is received, the firewall rules are dynamically modified to allow the host which sent the connection attempts to connect over specific port(s). A sample port Knocking example for ssh using iptables:&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -N stage1&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A stage1 -m recent --remove --name knock&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A stage1 -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;3456&lt;/span&gt; -m recent --&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;set&lt;/span&gt; --name knock2&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -N stage2&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A stage2 -m recent --remove --name knock2&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A stage2 -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;2345&lt;/span&gt; -m recent --&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;set&lt;/span&gt; --name heaven&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -N door&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A door -m recent --rcheck --seconds &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt; --name knock2 -j stage2&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A door -m recent --rcheck --seconds &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt; --name knock -j stage1&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A door -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;1234&lt;/span&gt; -m recent --&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;set&lt;/span&gt; --name knock&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT -m --state ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT -p tcp --dport &lt;span style="color: rgb(0, 0, 0);"&gt;22&lt;/span&gt; -m recent --rcheck --seconds &lt;span style="color: rgb(0, 0, 0);"&gt;5&lt;/span&gt; --name heaven -j ACCEPT&lt;br /&gt;&lt;span style="color: rgb(0, 120, 0);"&gt;$IPT&lt;/span&gt; -A INPUT -p tcp --syn -j doo&lt;/pre&gt; &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.cipherdyne.org/fwknop/" target="_blank"&gt;fwknop&lt;/a&gt; is an implementation that combines port knocking and passive OS fingerprinting.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.debian-administration.org/articles/268" target="_blank"&gt;Multiple-port knocking&lt;/a&gt; Netfilter/IPtables only implementation.&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;#19:  Use Log Analyzer&lt;/h2&gt; &lt;p&gt;Read your logs using &lt;a href="http://nixcraft.com/linux-software/477-howto-linux-monitor-logfiles.html"&gt;logwatch&lt;/a&gt; or &lt;a href="http://logcheck.org/" target="_blank"&gt;logcheck&lt;/a&gt;. These tools make your log reading life easier. It will go through your logs for a given period of time and make a report in the areas that you wish with the detail that you wish. Make sure LogLevel is set to INFO or DEBUG in sshd_config:&lt;/p&gt; &lt;pre&gt;LogLevel INFO&lt;/pre&gt; &lt;h2&gt;#20: Patch OpenSSH and Operating Systems&lt;/h2&gt; &lt;p&gt;It is recommended that you use tools such as &lt;a href="http://www.cyberciti.biz/faq/rhel-centos-fedora-linux-yum-command-howto/"&gt;yum&lt;/a&gt;, &lt;a href="http://www.cyberciti.biz/tips/linux-debian-package-management-cheat-sheet.html"&gt;apt-get&lt;/a&gt;, &lt;a href="http://www.cyberciti.biz/tips/howto-keep-freebsd-system-upto-date.html"&gt;freebsd-update&lt;/a&gt; and others  to keep systems up to date with the latest security patches.&lt;/p&gt; &lt;h2&gt;Other Options&lt;/h2&gt; &lt;p&gt;To hide openssh version, you need to update source code and compile openssh again. Make sure following options are enabled in sshd_config:&lt;/p&gt; &lt;pre&gt;#  Turn on privilege separation&lt;br /&gt;UsePrivilegeSeparation yes&lt;br /&gt;# Prevent the use of insecure home directory and key file permissions&lt;br /&gt;StrictModes yes&lt;br /&gt;# Turn on  reverse name checking&lt;br /&gt;VerifyReverseMapping yes&lt;br /&gt;# Do you need port forwarding?&lt;br /&gt;AllowTcpForwarding no&lt;br /&gt;X11Forwarding no&lt;br /&gt;#  Specifies whether password authentication is allowed.  The default is yes.&lt;br /&gt;PasswordAuthentication no&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;Verify your &lt;a href="http://www.cyberciti.biz/tips/checking-openssh-sshd-configuration-syntax-errors.html"&gt;sshd_config file before&lt;/a&gt; restarting / reloading changes:&lt;br /&gt;&lt;code&gt;# /usr/sbin/sshd -t&lt;/code&gt;&lt;/p&gt; &lt;p&gt;Tighter SSH security with &lt;a href="http://www.linuxjournal.com/article/8957" target="_blank"&gt;two-factor&lt;/a&gt; or &lt;a href="https://calomel.org/openssh.html" target="_blank"&gt;three-factor (or more)&lt;/a&gt; authentication.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2420201507028512198?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2420201507028512198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/top-20-openssh-server-best-security.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2420201507028512198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2420201507028512198'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/top-20-openssh-server-best-security.html' title='Top 20 OpenSSH Server Best Security Practices'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-7946836380776800894</id><published>2009-07-24T22:50:00.002-05:00</published><updated>2009-07-24T22:56:34.712-05:00</updated><title type='text'>Just thinking</title><content type='html'>So this weekend Jillian and I started pulling the weeds from our back yard. I tell you that is no easy task! After pulling all the weeds, going to spread some Weed Feed Killer all over the yard. Sprayed some Round UP, hope that helps too. Hopefully getting some grass, after this drought that we are in.&lt;br /&gt;&lt;br /&gt;We shall see!&lt;br /&gt;&lt;br /&gt;Jeff-&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-7946836380776800894?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/7946836380776800894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/just-thinking.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7946836380776800894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7946836380776800894'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/just-thinking.html' title='Just thinking'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2164005733377967394</id><published>2009-07-24T15:48:00.001-05:00</published><updated>2009-07-24T15:48:50.166-05:00</updated><title type='text'>S.A.-based company fights against cybercrime</title><content type='html'>&lt;span style="font-size:+1;"&gt;&lt;span class="vitstorydeck"&gt;San Antonio is becoming the hub for  national cyber security&lt;/span&gt;&lt;/span&gt;  &lt;span style="font-size:-1;"&gt;&lt;b&gt; &lt;h5 class="vitstorydate"&gt;&lt;span class="vitstorydate"&gt;08:13 AM CDT on Thursday, July  23, 2009&lt;/span&gt;&lt;/h5&gt;&lt;/b&gt;&lt;/span&gt; &lt;span style="font-size:-1;"&gt;&lt;b&gt;&lt;span class="vitstorybyline"&gt;Karen Grace / KENS  5&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;span class="vitstorybody"&gt;  &lt;p&gt;San Antonio is becoming the hub for national cyber security. A new report  reveals there are not enough trained people to fight attacks. &lt;/p&gt;&lt;!-- sidebar insert start --&gt; &lt;div id="videoembed-box"&gt; &lt;h4 id="videoembed-title"&gt;Video &lt;/h4&gt; &lt;script language="javascript" type="text/javascript"&gt;       var jsVideoWidgetShareUrlPath = '/video/index.html'; var        jsVideoWidgetSize = 0; var jsVideoWidgetVideoId = 382820; &lt;/script&gt;  &lt;div id="video-widget" style="width: 242px; height: 166px;"&gt; &lt;style type="text/css"&gt; #main-video{background:transparent;position:relative;top:0;left:0;height:0;width:0;margin:0;padding:0;visibility:hidden;}#video-widget{background:transparent;position:relative;top:0;left:0;height:0;width:0;margin:auto;padding:0;}#previewImage{background:transparent;position:relative;top:0;left:0;height:0;width:0;margin:0;padding:0;visibility:hidden;}#videoPlayer{position:relative;left:0;top:0;margin:0;padding:0;}#loading_container{position:relative;top:1px;left:1px;background:#fff;height:0;width:0;text-align:center;font-family:Geneva,Arial,Helvetica,sans-serif;font-size:10px;border:0;}#loading{position:relative;top:45%;} #video-image{background:#000;margin:0;padding:0;}#video-controller{margin:0;padding:0;left:0;}#shareEmail{visibility:hidden;}#showShareEmail{cursor:pointer;}#preroll_companion{height:0;width:300px;}#videoad_companion{height:0;width:300px;}#flash_section{background-image:url(/sharedcontent/video/img/gred_back.jpg);text-align:center;}#previewImg{position:relative;left:0;top:0;border:0;}.text_style_1{font-family:Geneva,Arial,Helvetica,sans-serif;text-transform:uppercase;color:#000;font-weight:bold;font-size:12px;}.flash_symbol_placer{padding-top:50px;left:40%;text-align:center;}   &lt;/style&gt;  &lt;script src="/sharedcontent/javascript/yui/2.4.1/yahoo-dom-event.js" type="text/javascript"&gt;&lt;/script&gt;  &lt;script src="/sharedcontent/javascript/yui/2.4.1/connection.js" type="text/javascript"&gt;&lt;/script&gt;  &lt;script src="/sharedcontent/video/jslib/widget_7D8270-675.js" type="text/javascript"&gt;&lt;/script&gt;  &lt;div id="main-video" style="left: 1px; visibility: visible; width: 240px; cursor: pointer; top: 1px; height: 164px;"&gt; &lt;div id="videoPlayer"&gt; &lt;div id="previewImage" style="visibility: visible; width: 240px; height: 136px; background-color: rgb(0, 0, 0);"&gt;&lt;img id="previewImg" style="left: 0px; top: 1px;" src="http://www.kens5.com/sharedcontent/newslink/thumbnail/www.kens5.com/0930/CYBERCRIME_PKG_20_6308-t240.jpg" width="240" height="135" /&gt;&lt;/div&gt;&lt;img id="video-controller" style="height: 29px;" src="/sharedcontent/video/img/controller_240_flash_ready.gif" border="0" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; &lt;div id="clipPubDate"&gt;July 23rd, 2009&lt;/div&gt; &lt;h2 id="videoembed-caption"&gt;One San Antonio company is fighting against  cybercrime. KENS 5's Karen Grace reports. &lt;/h2&gt;&lt;img class="arrow" src="/sharedcontent/video-code-tool/images/arrow.gif" /&gt; &gt;&lt;a class="arrow-more" href="/video/news-browse.html"&gt;More News video&lt;/a&gt;  &lt;ul class="videoembed-nav"&gt;&lt;li&gt;&lt;a href="/video/?nvid=382820"&gt;View larger&lt;/a&gt; &lt;/li&gt;&lt;li id="showShareEmail"&gt;&lt;a href="javascript:void(0);"&gt;E-mail clip&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/video/"&gt;More video&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt; &lt;div id="videoembed-search"&gt; &lt;div class="search-heading"&gt;Search Video: &lt;/div&gt; &lt;form class="videoembed-search-form" id="search_form" name="searchForm" action="/blcS.sc" method="get"&gt;&lt;input value="multi" name="cat" type="hidden"&gt; &gt;&lt;input class="videoembed-search-input" onfocus="this.value='';" maxlength="150" name="search"&gt; &gt;&lt;input class="videoembed-search-button" src="/sharedcontent/video-code-tool/images/searchbtn.gif" value="" type="image"&gt; &gt;  &lt;/form&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- sidebar insert end --&gt; &lt;p&gt;The government is vulnerable to hackers and cyber criminals who could  scramble the financial world and threaten national security. &lt;/p&gt; &lt;p&gt;EADS North America is based in San Antonio, and they say they're the brains  behind our nation's best weapon against cybercrimes. &lt;/p&gt; &lt;p&gt;"We provide simulators that train people how to secure a network," said Eric  Franey, director of product management and marketing for EADS North America  Defense. &lt;/p&gt; &lt;p&gt;That type of traning is desperately needed, according to a report out today  that says the federal government is at risk of being unable to fight off  terrorist and foreign government attacks on the nation's computer networks. &lt;/p&gt; &lt;p&gt;"The report card that came out today said we dont have enough experts to  adequately protect our computer systems," Franey said. "I can tell you there are  thouands of attacks a week." &lt;/p&gt; &lt;p&gt;And while you may think this type of espionage doesn't hit home, the experts  say think again. &lt;/p&gt; &lt;p&gt;"Cybersecurity is serous for everyone at this point," Franey said. "State and  local governments are being attacked." &lt;/p&gt; &lt;p&gt;The company will also work closely with the 24th Air force, a cyber command  headquarters that is also coming to San Antonio next year. &lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2164005733377967394?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2164005733377967394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/sa-based-company-fights-against.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2164005733377967394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2164005733377967394'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/sa-based-company-fights-against.html' title='S.A.-based company fights against cybercrime'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-4237622336739776043</id><published>2009-07-21T16:36:00.000-05:00</published><updated>2009-07-21T16:37:07.897-05:00</updated><title type='text'>Apollo 11 command module is released to open source</title><content type='html'>&lt;h3 class="blogTitle"&gt;Virtual Apollo Computer for developers&lt;/h3&gt;  &lt;p&gt;Posted by: &lt;strong&gt;Siobhan Chapman&lt;/strong&gt; &lt;script language="javascript" type="text/javascript"&gt; SHARETHIS.addEntry({  title:'Apollo 11 command module is released to open source',  summary:'',  icon: 'http://path.to/icon'  }, {button:true} ); &lt;/script&gt;&lt;span id="sharethis_0"&gt;&lt;a st_page="home" href="javascript:void(0)" title="ShareThis via email, AIM, social bookmarking and networking sites, etc." class="stbutton stico_default"&gt;&lt;span st_page="home" class="stbuttontext"&gt;ShareThis&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;   &lt;hr /&gt;  &lt;p&gt; The software that helped take humans to the moon has been released to the developer open source community to commemorate the fortieth anniversary of the Apollo 11 mission. &lt;/p&gt;  &lt;p&gt; &lt;img src="http://www.computerworlduk.com/cmsdata/blogentries/2371/apollo%20large.jpg" alt="Apollo 11 command module is released to open source" title="" class="inlineearticleimage" border="0" /&gt; &lt;/p&gt;  &lt;p&gt; The Apollo 11 program was made up of two different spacecraft, the &lt;a href="http://en.wikipedia.org/wiki/Command_Module"&gt;Command Module (CM)&lt;/a&gt;, used to get the three astronauts to the moon and back, and the &lt;a href="http://en.wikipedia.org/wiki/Apollo_Lunar_Module"&gt; Lunar Module (LM)&lt;/a&gt;, used to land two of the astronauts on the moon. &lt;/p&gt;  &lt;p&gt; An on-board &lt;a href="http://en.wikipedia.org/wiki/Apollo_Guidance_Computer"&gt;Apollo guidance computer (AGC)&lt;/a&gt; was the principal computer for all Apollo missions. On any Apollo mission, there were two AGCs, one for the Command Module, and one for the Lunar Module, but they ran different software because the tasks the spacecraft had to perform were different. "Software" was also different to today, and was effectively built using paper-tape rolls and thick cardstock that was punched with special holes. &lt;/p&gt;  &lt;p&gt;Developers of the Virtual AGC and AGS project scanned and transcribed the hard-copy scanned images of the code from both spaceships from the MIT Museum, to create an open source-based emulator of the Apollo Guidance Computer. The resulting Virtual AGC software public domain executable code is designed to work in Linux, in Windows XP, and in Mac OS X 10.3 or later. &lt;/p&gt;  &lt;p&gt; The team behind the Virtual AGC project have said the emulator is not a flight simulator, but an accurate recreation of the functionality of the computers which were installed in the Apollo vehicles. But the code can be used as a component for other developers to create a flight simulator, if they so wish. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-4237622336739776043?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/4237622336739776043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/apollo-11-command-module-is-released-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4237622336739776043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4237622336739776043'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/07/apollo-11-command-module-is-released-to.html' title='Apollo 11 command module is released to open source'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8645363303736208082</id><published>2009-06-07T16:50:00.000-05:00</published><updated>2009-06-07T16:51:14.107-05:00</updated><title type='text'>Tweeting via Pidgin on Ubuntu</title><content type='html'>&lt;a href="http://pidgin.im/"&gt;Pidgin&lt;/a&gt; is a multi-featured instant messaging desktop client that is very popular among Linux users. It supports a wide range of chat networks like Yahoo!, AIM, Google Talk, ICQ, and IRC. You can even &lt;a href="http://www.junauza.com/2008/08/using-pidgin-to-send-and-receive-text.html"&gt;send and receive SMS (Text Messages) for free via Pidgin&lt;/a&gt;. So if it can do all these, does it support everybody's favorite micro-blogging platform Twitter?&lt;br /&gt;&lt;br /&gt;--Yes it does. Thanks to a plugin called &lt;a href="http://code.google.com/p/microblog-purple/"&gt;microblog-purple&lt;/a&gt; you will now be able to send and receive tweets via Pidgin.&lt;br /&gt;&lt;br /&gt;For Ubuntu users, here's a simple tutorial on installing this Twitter plugin on Pidgin:&lt;br /&gt;&lt;br /&gt;1. Depending on your Ubuntu version, add these software repositories:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;deb http://ppa.launchpad.net/sugree/ppa/ubuntu hardy main&lt;/span&gt; &lt;span style="font-style: italic;"&gt;deb-src http://ppa.launchpad.net/sugree/ppa/ubuntu hardy main&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;deb http://ppa.launchpad.net/sugree/ppa/ubuntu intrepid main&lt;/span&gt; &lt;span style="font-style: italic;"&gt;deb-src http://ppa.launchpad.net/sugree/ppa/ubuntu intrepid main&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;deb http://ppa.launchpad.net/sugree/ppa/ubuntu jaunty main&lt;/span&gt; &lt;span style="font-style: italic;"&gt;deb-src http://ppa.launchpad.net/sugree/ppa/ubuntu jaunty main&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;You can easily add software sources by opening Synaptic Package Manager, and then going to Settings --&gt; Repositories --&gt; Third-Party Software:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_UqUwVPikChs/Sii166ZdxPI/AAAAAAAAJHY/EtHADOIlEQU/s1600-h/twitter-pidgin1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 321px;" src="http://3.bp.blogspot.com/_UqUwVPikChs/Sii166ZdxPI/AAAAAAAAJHY/EtHADOIlEQU/s400/twitter-pidgin1.jpg" alt="" id="BLOGGER_PHOTO_ID_5343720981588198642" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;After adding the above repositories, close the Synaptic Package Manager.&lt;br /&gt;&lt;br /&gt;2. Open a terminal and type this command in order to import the key:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0CF459B8DF37ED8B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;sudo apt-get update&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3.  Install the microblog-purple plugin with this command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;sudo apt-get install pidgin-microblog&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;4. After installation, we can now enable the microblog-purple plugin by opening Pidgin, and then going to Tools --&gt; Plugins. Make sure to check "Twitgin":&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_UqUwVPikChs/Sii17Ofap-I/AAAAAAAAJHg/-l9u3RTTq6A/s1600-h/twitter-pidgin2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 317px; height: 400px;" src="http://1.bp.blogspot.com/_UqUwVPikChs/Sii17Ofap-I/AAAAAAAAJHg/-l9u3RTTq6A/s400/twitter-pidgin2.jpg" alt="" id="BLOGGER_PHOTO_ID_5343720986981869538" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;5. We can now add Twitter from the list of protocols. To do this, simply open the "Manage Accounts" window, add an account, and select TwitterIM from the "Protocol" drop-down menu:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UqUwVPikChs/Sii17BEdhYI/AAAAAAAAJHo/RJ9aRXeScaE/s1600-h/twitter-pidgin3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 277px; height: 400px;" src="http://4.bp.blogspot.com/_UqUwVPikChs/Sii17BEdhYI/AAAAAAAAJHo/RJ9aRXeScaE/s400/twitter-pidgin3.jpg" alt="" id="BLOGGER_PHOTO_ID_5343720983379150210" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;6. Proceed by providing your Twitter username and password:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_UqUwVPikChs/Sii17WpC9FI/AAAAAAAAJHw/eEkKdO7eMeM/s1600-h/twitter-pidgin4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 326px; height: 400px;" src="http://2.bp.blogspot.com/_UqUwVPikChs/Sii17WpC9FI/AAAAAAAAJHw/eEkKdO7eMeM/s400/twitter-pidgin4.jpg" alt="" id="BLOGGER_PHOTO_ID_5343720989169742930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;7. You can now start tweeting via Pidgin!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_UqUwVPikChs/Sii17aX86hI/AAAAAAAAJH4/3cJeBszo1zM/s1600-h/twitter-pidgin5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 315px;" src="http://4.bp.blogspot.com/_UqUwVPikChs/Sii17aX86hI/AAAAAAAAJH4/3cJeBszo1zM/s400/twitter-pidgin5.jpg" alt="" id="BLOGGER_PHOTO_ID_5343720990171785746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Note that you can also use these commands inside the Pidgin Twitter window:&lt;br /&gt;&lt;br /&gt;/replies - get all replies to you&lt;br /&gt;/refresh - get new tweets instantly&lt;br /&gt;/tag, /btag, /untag - automatically tag all your message&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8645363303736208082?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8645363303736208082/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/06/tweeting-via-pidgin-on-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8645363303736208082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8645363303736208082'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/06/tweeting-via-pidgin-on-ubuntu.html' title='Tweeting via Pidgin on Ubuntu'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_UqUwVPikChs/Sii166ZdxPI/AAAAAAAAJHY/EtHADOIlEQU/s72-c/twitter-pidgin1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2815260450284245473</id><published>2009-05-15T00:25:00.000-05:00</published><updated>2009-05-15T00:26:00.829-05:00</updated><title type='text'>Monitoring E-Mail with Nagios</title><content type='html'>&lt;p&gt;Have you ever felt like you were being ignored? Have you ever felt like you were talking but no one was listening? Well, that's how it feels when your e-mail system is broken and you don't know it.&lt;/p&gt; &lt;p&gt;During the past week, I've had a couple system problems that prevented people from receiving e-mail messages that my wife or I sent. The sad part was that we didn't know the messages weren't being delivered. We'd receive a message asking a question, and we'd reply to the sender thinking nothing of it. A few days later, we'd get a phone call from the person asking whether we ever were going to respond.&lt;/p&gt; &lt;p&gt;In our case, two situations were conspiring against us: a change in Comcast's firewall policy and a change in Yahoo's mail delivery policy.&lt;/p&gt; &lt;p&gt;It all began when my wife started complaining that something was wrong with the e-mail system because she'd not heard back from a friend whom she had sent a message the previous day. I sent a quick e-mail to a friend of mine, got a response, and informed my wife that “it worked for me,” and chalked it up to her friend not being responsive.&lt;/p&gt; &lt;p&gt;Then, just to demonstrate to her that the mail server was healthy, I asked the server to print out its mail queue. Crap! There were 55 messages in the queue waiting to be delivered. Of course, by this time, even I had noticed that the volume of incoming spam had gone down to none. So, Houston, we had a problem.&lt;/p&gt; &lt;p&gt;After several years of running my own mail server on my home machine connected to the Internet via Comcast, Comcast decided to implement a new firewall policy and started blocking incoming SMTP (tcp/25) connections on its residential users' networks. Of course, I wasn't informed of the change, because I don't use Comcast's e-mail system! Previously, we would send e-mail from our workstations, and our mail server would forward the message through Comcast's smarthost; incoming messages came directly to our server. This configuration had worked for years. But, with the new firewall policy, something broke. Some of our messages were being delivered, and some weren't. I'm speculating that the ones not delivered were going through servers that did sending address verification, and as they couldn't connect back to my mail server to validate my e-mail address, they refused delivery.&lt;/p&gt; &lt;p&gt;So, I decided to take the inexpensive way out. I could have spent an extra $20 a month and gotten a business account with Comcast, which I eventually did, but I didn't at first. I created a VPN tunnel from my home machine to one of my servers on the open Internet. Then, I moved my DNS pointers to point to that machine and had it forward incoming messages through the VPN. I configured my home server to use that machine as its smarthost rather than Comcast's server. Aside from the blatant violation of Comcast's Acceptable Use Policy, this seemed like it would work pretty well.&lt;/p&gt; &lt;p&gt;Then, the other shoe dropped.&lt;/p&gt; &lt;p&gt;My wife and I quickly realized that this was working much better, but it still wasn't quite right. People my wife emailed on a daily basis weren't receiving her messages. The common denominator was that all of these people were using Yahoo e-mail accounts. So, I manually forced delivery of one e-mail messages and saw that Yahoo was deferring delivery due to questionable traffic patterns. And, that made sense; I was trying to deliver 55 deferred messages, probably all at once.&lt;/p&gt; &lt;p&gt;It's important to note that I monitor my e-mail server, and the Exim daemon never sent an alarm, so merely monitoring a service isn't enough. Instead of monitoring the service itself, it's better to monitor the server's function, which is what the rest of this article is about.&lt;/p&gt; &lt;p&gt;I was hesitant to write another article on Nagios, but e-mail is becoming more and more critical, and when it does break, it breaks in strange ways.&lt;/p&gt; &lt;p&gt;Of course, I monitor my Exim daemon as well as my server's route to the Internet. I use a Nagios service check for SMTP, like this:&lt;/p&gt; &lt;pre&gt;define service {&lt;br /&gt;       use generic-service&lt;br /&gt;       name                    smtp&lt;br /&gt;       host_name               host.example.com&lt;br /&gt;       notification_options    w,c,r&lt;br /&gt;       service_description     E-Mail SMTP Server&lt;br /&gt;       check_command           check_smtp&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; I use a similar check to monitor my Internet gateway. But, as bad as the e-mail situation became, neither of these alarms would have indicated a problem. So, rather than monitoring to see whether a process is running, I set out to begin monitoring the server's critical functions, e-mail transport and delivery. &lt;/p&gt; &lt;p&gt;The first problem I wanted to address was being informed when messages were stuck in Exim's mail queue. I actually thought I'd have to write a custom program to check for this situation. While researching the situation further, I came across a posting from someone with a similar problem. It turns out that Nagios already has a command that performs this check, and I never knew it. Nagios's check commands are in /usr/nagios/libexec/, and let me tell you, there is a lot of gold in that directory.&lt;/p&gt; &lt;p&gt;So, I created an entry in Nagios's checkcommands.cfg file, like this:&lt;/p&gt; &lt;pre&gt;define command{&lt;br /&gt;       command_name    check_mailq&lt;br /&gt;       command_line    $USER1$/check_mailq -w 3 -c 5 -v 9&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; Then, I created an entry in the services.cfg file that looked like this:&lt;/p&gt; &lt;pre&gt;define service {&lt;br /&gt;       use generic-service&lt;br /&gt;       name                    mailq&lt;br /&gt;       host_name               dominion&lt;br /&gt;       notification_options    w,c,r&lt;br /&gt;       service_description     SMTP Mail Queue&lt;br /&gt;       check_command           check_mailq&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; Finally, I restarted Nagios and tested the new configuration by shutting down my server's outside network interface and attempting to send an e-mail message. Obviously, the mail transport operation failed and I got my alarm.&lt;/p&gt; &lt;p&gt;So at this point, I am pretty sure that if I have another problem with my e-mail system, at least I'll know it in a timely fashion. But, I thought it would be good to put in one more check.&lt;/p&gt; &lt;p&gt;It would be nice to know if my server ever finds itself on a Real-time Blocking List (RBL). Once again, Nagios has a command to check for this situation, but it comes in C source, which I couldn't get to compile. Anyway, I think I like my solution better.&lt;/p&gt; &lt;p&gt;My program looks up the server's IP address at http://www.anti-abuse.org, which, in turn, checks the IP address against several other RBLs at once. I'm probably going to configure Nagios to perform this check a few times a day, at most.&lt;/p&gt; &lt;p&gt;Here's the program:&lt;/p&gt; &lt;pre&gt;#!/usr/bin/perl&lt;br /&gt;&lt;br /&gt;open CMD, "wget -q http://www.anti-abuse.org/rblresults.php?host=192.168.1.1 -O - |";&lt;br /&gt;&lt;br /&gt;while () {&lt;br /&gt;       if (!/listed in /) { next; }&lt;br /&gt;       if (!/NOT listed in /) { $error++; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if (!$error) {&lt;br /&gt;       print "OK\n";&lt;br /&gt;       exit 0;&lt;br /&gt;} else {&lt;br /&gt;       print "CRITICAL: $error\n";&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;p&gt; As you can see, it's not that complex. It simply sends a query to Anti-abuse.org and looks for the results. I hard-coded my machine's IP address in this case, but it would be trivial to use one of Nagios' variables and send the IP address as a command-line parameter to this program. Then, the program makes sure that each of the results indicates that my machine is not listed on an RBL. If this check fails, we set a flag for later use. Finally, I created a checkcommand.cfg and services.cfg entry just as I did above.&lt;/p&gt; &lt;p&gt;Now I find myself in the awkward predicament of having written a program that I can't test. In order to test this program fully, I'd have to get my server on an RBL list, which I'm not about to do. Even so, I believe this program will work.&lt;/p&gt; &lt;p&gt;I don't know about you, but I live by e-mail, so my e-mail system simply has to work. The problems I had recently demonstrated that my monitoring policy wasn't sufficient. I believe that the new policy would have alerted me to the situation in a timely fashion. But, as is always the case, you can't test for everything, so I'm sure I'm missing something.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2815260450284245473?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2815260450284245473/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/monitoring-e-mail-with-nagios.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2815260450284245473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2815260450284245473'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/monitoring-e-mail-with-nagios.html' title='Monitoring E-Mail with Nagios'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8762777087936862941</id><published>2009-05-15T00:08:00.000-05:00</published><updated>2009-05-15T00:10:03.246-05:00</updated><title type='text'>Cloud computing with Linux thin clients</title><content type='html'>&lt;p&gt;Cloud computing has been covered extensively in a number of venues and from                 many points of view. For embedded Linux engineers and aficionados, one                 exciting aspect of cloud computing is the sudden interest in thin Linux                 clients.&lt;/p&gt;              &lt;p&gt;The basic concept of cloud computing is the use of resources accessed over                 the Internet. Combined with clients of limited capability, cloud computing                 becomes broadly similar to client-server computing over a LAN using dumb                 terminals or once-vogue thin clients. (The reference to "thin" meant these                 devices had little or no processing power of their own, relying instead on                 the processing power of the server.)&lt;/p&gt;              &lt;p&gt;Because a great deal of data had to traverse the network, the limiting                 factor was bandwidth. When graphical thin clients became popular in the                 mid-1990s, their use was still largely limited to LANs because of                 bandwidth requirements. The Internet simply wasn't fast enough. But even                 with this limitation, the benefits of centralization—particularly                 hardware cost, as computers were expensive and thin terminals were                 cheap—made it worth the trade-off.&lt;/p&gt;              &lt;p&gt;&lt;a name="network_computer"&gt;&lt;span class="atitle"&gt;Network computing&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;This trade-off has disappeared with the rapid growth of readily available                 high-speed Internet access and the ever-increasing capacity of the                 Internet backbone itself. The resulting shift to higher throughput makes                 all kinds of interesting technology feasible.&lt;/p&gt;              &lt;p&gt;It is now possible to use a Web browser to perform tasks on a remote server                 that were previously the sole domain of software hosted on a local                 machine—even graphics-intensive operations such as page layout or                 image editing. A large number of companies are creating services to meet                 the demand. Think of any task you perform locally, and chances are good                 that some company somewhere is providing that service online, probably at                 no cost.&lt;/p&gt;              &lt;p&gt;This paradigm has also paved the way for new methods of accessing                 information over networks, including entirely new classes of software and                 devices. Terminals are no longer dumb, and clients are no longer very                 thin. For some, the definition of "thin" has grown to include any system                 that can access the Internet, regardless of its overall capabilities:                 cellular phones, new devices such as netbooks and mobile Internet devices                 (MIDs), even re-purposed, older desktop and laptop computers. All clients                 are thin when the server is as thick, rich, and connected as the Internet                 itself.&lt;/p&gt;              &lt;p&gt;Most industry analysts agree that the use of thin                 clients—particularly cellular phones—is rising                 dramatically. In fact, thin clients are expected to be the primary method                 of accessing the Internet for a majority of people in the world within the                 next few                 years.&lt;/p&gt;              &lt;p&gt;The network has finally become the computer, as John Gage predicted back in                 1984.&lt;/p&gt;              &lt;div class="ibm-alternate-rule"&gt;&lt;hr /&gt;&lt;/div&gt;&lt;p class="ibm-ind-link ibm-back-to-top"&gt;&lt;a href="http://www.ibm.com/developerworks/linux/library/l-thin-client-cloud/index.html#ibm-pcon" class="ibm-anchor-up-link"&gt;Back to top&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a name="bottom_line"&gt;&lt;span class="atitle"&gt;The bottom line&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;Usefulness, however, is not always the primary factor that determines                 wide-scale adoption. A more accurate determination can be made in terms of                 absolute cost—especially when adoption is considered in developing                 countries—as well as relative cost in relation to value. A                 client's thinness bears a direct relationship to its cost, because less                 capable systems are less expensive to produce. Similarly, the cost of                 cloud-based software is directly related to its large-scale adoption.&lt;/p&gt;              &lt;p&gt;&lt;a name="create_markets"&gt;&lt;span class="smalltitle"&gt;Creative markets and the                 cost-value ratio&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;Cloud computing, along with supporting technology like thin clients, is                 driving organizations to consider creative methods of financing and                 marketing. For example, One Laptop Per Child (OLPC) produces extremely                 inexpensive devices (currently in the US$200 range), structure the                 software around education, and market to governments of developing                 countries rather than to individuals in order to create educational                 opportunities in countries that previously had no Internet access or                 technology education at all. This kind of activity, although eventually                 profitable for the company, is also beneficial to the world in                 general.&lt;/p&gt;              &lt;p&gt;OLPC's story also points out the importance of considering cost in relation                 to value. Consider the total cost of a "thick" client. Think of a                 technical writer at a laptop computer in a coffee house. This laptop may                 contain all the resources available to complete the project—a word                 processor, page-layout program, diagramming tools for graphical insets and                 illustrations, and conversion tools for XML and PDF—all in the                 self-contained universe of that laptop, which may cost US$2,000 and have                 similar capabilities to a desktop machine. The software could cost as much                 as the system itself, resulting in a US$4,000 total investment.&lt;/p&gt;              &lt;p&gt;In contrast, that same writer in the same coffee house may work on a thin                 client—a much smaller, resource-constrained system that literally                 costs one-tenth as much as the expensive laptop. Thanks to the software                 and storage available in the cloud, this thin client may have no moving                 parts, a very simple processor, and just enough resources to run a modern                 Web browser and a fast network connection, but the writer has as                 many—possibly even more—resources at hand than the local                 user, as well as the safety of knowing that his or her work will survive                 even if the battery dies or the laptop itself is stolen.&lt;/p&gt;              &lt;p&gt;The software available in the cloud can produce documents of the same                 quality with similar levels of control over the end product, yet it is                 absolutely free, subsidized by corporate adoption, by advertising, or by                 some other creative monetization process. Total investment by the user:                 US$200.&lt;/p&gt;              &lt;div class="ibm-alternate-rule"&gt;&lt;hr /&gt;&lt;/div&gt;&lt;p class="ibm-ind-link ibm-back-to-top"&gt;&lt;a href="http://www.ibm.com/developerworks/linux/library/l-thin-client-cloud/index.html#ibm-pcon" class="ibm-anchor-up-link"&gt;Back to top&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a name="penguin_cloud"&gt;&lt;span class="atitle"&gt;Penguins in the clouds&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;The best operating environment for a thin client designed around cloud                 computing has the following characteristics:&lt;/p&gt;              &lt;ul&gt;&lt;li&gt;Highly customizable&lt;/li&gt;&lt;li&gt;An inexpensive or even free operating system&lt;/li&gt;&lt;li&gt;All necessary applications inexpensive or free&lt;/li&gt;&lt;li&gt;Networking built into the operating system core&lt;/li&gt;&lt;li&gt;Small enough to fit into tiny devices&lt;/li&gt;&lt;li&gt;Flexible and powerful enough to run full laptops&lt;/li&gt;&lt;li&gt;Miserly enough to conserve battery life to a maximum degree&lt;/li&gt;&lt;/ul&gt;              &lt;p&gt;Linux meets all of these criteria. It is taking over in the mobile space,                 the enterprise space, and the embedded space, including dedicated consumer                 devices such as book readers and set-top boxes. And with virtualization,                 Linux can also run applications built for the Windows®, Mac OS X,                 and other operating systems.&lt;/p&gt;              &lt;p&gt;&lt;a name="linux_cloud"&gt;&lt;span class="smalltitle"&gt;Linux: the operating system for                 the cloud&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;Linux has matured and become viable as an embedded operating system; its                 freedom—both in terms of cost and royalty-free                 licensing—has revolutionized a market that once was dominated by                 only a few players who demanded stiff per-unit royalties. Linux now has                 real-time support as well as structured driver support with a flexibility                 never dreamed of for proprietary real-time operating systems, and the                 availability of relevant applications is unprecedented. Linux is the basis                 behind at least four new netbook operating systems, leads the explosive                 growth in smart phones, and is slated to continue to absorb market share                 over the next 5 to 10 years.&lt;/p&gt;              &lt;p&gt;The flexibility, developer control, power-management facilities, and                 overall stability of Linux also make it well suited to older, recycled                 systems. You can give older machines a new life by loading Linux instead                 of (or in addition to) the host operating system.&lt;/p&gt;              &lt;p&gt;&lt;a name="apps_cloud"&gt;&lt;span class="smalltitle"&gt;Applications for accessing the                 cloud&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;What about applications? Something beyond the operating system is required                 in order to gain access to the cloud, and cost must be considered here, as                 well. The cloud has made thin clients possible, but the key to making them                 inexpensive is limiting the cost of the software to run them.&lt;/p&gt;              &lt;p&gt;As most developers know, some of the most powerful network-oriented                 applications available are completely free, including Web browsers (such                 as Firefox, Opera, and Chrome), e-mail software (such as Thunderbird and                 Evolution), instant messaging (such as Pidgin and Trillian), and                 multi-platform application environments (such as Java™                 technology). The combination of just these four application types alone                 would make a formidable thin client, all completely free.&lt;/p&gt;              &lt;p&gt;Note, however, that free, open source operating systems and applications do                 not mean that you can make a device completely without cost. As noted open                 source developer Jamie Zawinski famously said, "Free software is only free                 if your time has no value." You must accept a certain amount of work to                 design and implement systems based on free software, just as you must do                 when evaluating proprietary software. However, because the base product is                 free and its source code is available, the value gained for that time is                 far higher for free software than for paid software, even if the process                 itself takes a little longer.&lt;/p&gt;              &lt;p&gt;It is no wonder that there are over 100,000 embedded Linux developers                 currently, and the number is growing.&lt;/p&gt;              &lt;div class="ibm-alternate-rule"&gt;&lt;hr /&gt;&lt;/div&gt;&lt;p class="ibm-ind-link ibm-back-to-top"&gt;&lt;a href="http://www.ibm.com/developerworks/linux/library/l-thin-client-cloud/index.html#ibm-pcon" class="ibm-anchor-up-link"&gt;Back to top&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a name="thin_clients_exist"&gt;&lt;span class="atitle"&gt;What thin clients currently                 exist?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;This section describes several types of thin clients on the market today.                 Many of these clients are new devices still finding their niches in the                 hearts of consumers and enterprises. All share a few common features: they                 have little storage and processing power of their own relative to the                 functions they are designed to perform, they are all designed around cloud                 computing, and they all run operating systems based on Linux and other                 open source software.&lt;/p&gt;              &lt;p&gt;&lt;a name="netbooks"&gt;&lt;span class="smalltitle"&gt;Netbooks&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;A &lt;i&gt;netbook&lt;/i&gt; is a small, underpowered (by modern standards), yet fully                 functional laptop, usually supporting wireless networking. Netbooks are                 designed to be used as thin clients, and many have no fans or disk                 drives.&lt;/p&gt;              &lt;p&gt;Examples include the OLPC XO, the Asus EEE PC, and the MSI Wind. Most run                 full-scale Linux distributions like Fedora or Ubuntu, although some have                 distributions developed for them specifically, like OLPC's Linux-based                 Sugar operating system, which was developed by educators as a learning                 environment. The Sugar interface is also available to run on a standard                 Windows or Apple system (see &lt;a href="http://www.ibm.com/developerworks/linux/library/l-thin-client-cloud/index.html#resources"&gt;Resources&lt;/a&gt; for links                 to more information).&lt;/p&gt;              &lt;p&gt;&lt;a name="mid"&gt;&lt;span class="smalltitle"&gt;MIDs&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;A mobile Internet device (MID) is a very small-scale device with a                 touchscreen and, optionally, a thumb-sized keyboard. Also known as                 ultra-mobile PCs (UMPCs), MIDs support wireless networking and are                 designed specifically for mobile use. (They are roughly the size of                 cellular phones.) The principal difference between netbooks and MIDs is                 size, because many use the same processors, although MIDs are generally                 less capable: they have less storage, less memory, and smaller                 screens.&lt;/p&gt;              &lt;p&gt;Examples include the Nokia N810, the Sony Vaio P, and the Acer Aspire ONE                 series. Nearly all devices known as MIDs run some variant of Linux. The                 Nokia device in particular runs Maemo, a combined kernel and middleware                 platform whose user environment is relatively constrained and optimized in                 order to keep resources available for applications, although some                 developers have created alternative desktop environments. Also available                 is Ubuntu MID Edition, which can be built together with Moblin on                 Intel®-based middleware sets, to yield a powerful operating                 environment.&lt;/p&gt;              &lt;p&gt;&lt;a name="smart_phones"&gt;&lt;span class="smalltitle"&gt;Smart phones&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;These overgrown cellular phones, which started out as enterprise devices                 capable of reading e-mail and browsing the Web, have exploded in                 popularity. Many come with thumb keyboards and fast, always-on Internet                 connections because of the simultaneous massive growth of 2.5G and 3G                 cellular telephone data networks.&lt;/p&gt;              &lt;p&gt;Examples of smart phones with keyboards include the new Palm Pre, the HTC                 G1, and the OpenMoko project. Some without keyboards include the Motorola                 Krave ZN4, the Samsung Anycall SCH-i859, and the Emblaze Mobile Edelweiss,                 and the Purple Magic reference design from French company Purple Magic.                 All of these phones are based on Linux.&lt;/p&gt;              &lt;p&gt;Many new phone designs running variants of Linux have recently been                 announced. Linux distros designed specifically for smart phones include                 Android (a Google product) and software based on LiMo, a smart phone                 standards organization.&lt;/p&gt;              &lt;p&gt;&lt;a name="dedicated_devices"&gt;&lt;span class="smalltitle"&gt;Dedicated devices&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;Some dedicated devices also rely on the network for their primary                 functions. Electronic book readers must have some method of downloading                 books: The Amazon Kindle uses a cellular-based network connection to                 connect directly to Amazon's server. (Note that the Kindle runs Linux.)                 Other dedicated, network-capable devices include the TiVo digital video                 recorder (DVR) and the Roku Netflix Player video-streaming set-top box,                 both of which run Linux.&lt;/p&gt;              &lt;p&gt;&lt;a name="hybrid"&gt;&lt;span class="smalltitle"&gt;Hybrid devices&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;There is a new device entering the market that might best be called a                     &lt;i&gt;hybrid cloud computer.&lt;/i&gt; It is a standard office laptop with an                 interesting twist: a thin Linux-based client built directly into the                 hardware that shares the keyboard, screen, and network connection. It may                 seem strange to have two computers in one case, but the utility becomes                 apparent when the thin client turns on and connects instantly like a                 cellular phone, stays on for up to 18 hours with a standard battery, and                 goes to sleep so the user can boot into the larger machine whenever                 necessary. It is a true cloud machine with a local backup.&lt;/p&gt;              &lt;p&gt;The only current hybrid device is the Dell Latitude E4200/E4400 series (the                 capability is called &lt;i&gt;Latitude ON&lt;/i&gt;), but more such devices are                 planned in the near future.&lt;/p&gt;              &lt;div class="ibm-alternate-rule"&gt;&lt;hr /&gt;&lt;/div&gt;&lt;p class="ibm-ind-link ibm-back-to-top"&gt;&lt;a href="http://www.ibm.com/developerworks/linux/library/l-thin-client-cloud/index.html#ibm-pcon" class="ibm-anchor-up-link"&gt;Back to top&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a name="green_penguins"&gt;&lt;span class="atitle"&gt;Green penguins, green                 clouds&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;              &lt;p&gt;There are environmental benefits to both cloud computing and the use of                 thin clients based on Linux.&lt;/p&gt;              &lt;p&gt;Cloud computing centralizes resources, which means that all the hard                 processing happens on large, fast machines somewhere out there "in the                 cloud." Some companies—Google in particular—have taken                 this concept to heart by locating server farms physically close to                 power-generating stations, as they have in Oregon and in Eemshaven, The                 Netherlands (near a large set of windmills). Because much of the                 efficiency of electrical power is lost in transport, this is good for the                 planet as well as for the company. Google has also (famously) patented a                 floating wave-powered server farm, which would not only be co-located with                 its power source but would also be totally sustainable.&lt;/p&gt;              &lt;p&gt;There are additional benefits to thin Linux clients. First, they are                 "thin," meaning that they contain low-powered hardware and thus use much                 less electricity than expensive laptops. Second, they run Linux, which has                 many advantages related to power management, even on older hardware.&lt;/p&gt;              &lt;p&gt;Third and most importantly, Linux runs practically everywhere. Rather than                 consigning an old computer to the e-waste scrap heap, give it a new,                 inexpensive hard disk—or just boot from a CD or a USB flash drive                 (UFD)—and re-purpose the computer as a thin client.&lt;/p&gt;              &lt;p&gt;The earth will thank you.&lt;/p&gt;          &lt;!-- CMA ID: 385996 --&gt; &lt;!-- Site ID: 1 --&gt;&lt;!--XSLT stylesheet used to transform this file:  dw-article-6.0-beta.xsl--&gt;&lt;br /&gt;&lt;p&gt;&lt;a name="resources"&gt;&lt;span class="atitle"&gt;Resources&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Learn&lt;/b&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt; Read                 "&lt;a href="http://www.ibm.com/developerworks/linux/library/l-cloud-auto/?S_TACT=105AGX01&amp;amp;S_CMP=LP" onmouseover="linkQueryAppend(this)"&gt;Automating Linux Cloud Installations&lt;/a&gt;"                 (developerWorks, November 2008) to learn how to make cloud-based Linux                 installations automatic on IBM POWER systems.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt; In                 "&lt;a href="http://www.ibm.com/developerworks/linux/library/l-cloud-computing/" onmouseover="linkQueryAppend(this)"&gt;Cloud Computing with Linux&lt;/a&gt;"                 (developerWorks, February 2009), you'll get more details about using Linux                 in the cloud.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                 "&lt;a href="http://www.ibm.com/developerworks/library/ar-archman10/" onmouseover="linkQueryAppend(this)"&gt;Architectural manifesto: An introduction to the possibilities (and risks) of cloud computing&lt;/a&gt;"                 (developerWorks, February 2009) gives details about the pros and cons of                 cloud computing.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                 "&lt;a href="http://www.ibm.com/developerworks/views/architecture/libraryview.jsp?search_by=Cloud+computing+with+Amazon+Web+Services%2C+Part&amp;amp;Submit.x=0&amp;amp;Submit.y=0&amp;amp;url=%2Fdeveloperworks%2Fviews%2Farchitecture%2Flibrary.jsp" onmouseover="linkQueryAppend(this)"&gt;Cloud computing with Amazon Web Services&lt;/a&gt;"                 (developerWorks, July 2008) discusses cloud computing with an Amazon                 focus.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                 "&lt;a href="http://www.ibm.com/developerworks/library/l-embdev.html" onmouseover="linkQueryAppend(this)"&gt;Linux system  development on an embedded device&lt;/a&gt;"                 (Anand Santhanam and Vishal Kulkarni, developerWorks, March 2002): This is                 an older but still very relevant article on porting Linux to embedded                 devices, making them thin Linux clients.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt; Check out                 &lt;a href="http://www.linuxdevices.com/"&gt;Linuxdevices.com&lt;/a&gt; for news on                 embedded Linux and thin clients.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                 &lt;a href="http://meld.mvista.com/"&gt;Meld&lt;/a&gt; is an online community for                 embedded Linux developers.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt; Wikipedia's                 &lt;a href="http://en.wikipedia.org/wiki/Thin_client"&gt;thin clients&lt;/a&gt; entry                 centers mostly around enterprise thin clients but also describes the                 concepts well.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                  In the                 &lt;a href="http://www.ibm.com/developerworks/linux/" onmouseover="linkQueryAppend(this)"&gt;developerWorks Linux zone&lt;/a&gt;,                 find more resources for Linux developers, and scan our                 &lt;a href="http://www.ibm.com/developerworks/linux/library/l-top-10.html" onmouseover="linkQueryAppend(this)"&gt;most popular articles and tutorials&lt;/a&gt;.             &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                  See all                 &lt;a href="http://www.ibm.com/developerworks/views/linux/libraryview.jsp?topic_by=All+topics+and+related+products&amp;amp;sort_order=desc&amp;amp;lcl_sort_order=desc&amp;amp;search_by=linux+tip%3A&amp;amp;search_flag=true&amp;amp;type_by=All+Types&amp;amp;show_abstract=true&amp;amp;start_no=1&amp;amp;sort_by=Date&amp;amp;end_no=100&amp;amp;show_all=false" onmouseover="linkQueryAppend(this)"&gt; Linux tips&lt;/a&gt; and                 &lt;a href="http://www.ibm.com/developerworks/views/linux/libraryview.jsp?topic_by=All+topics+and+related+products&amp;amp;sort_order=desc&amp;amp;lcl_sort_order=desc&amp;amp;search_by=&amp;amp;search_flag=&amp;amp;type_by=Tutorials&amp;amp;show_abstract=true&amp;amp;sort_by=Date&amp;amp;end_no=100&amp;amp;show_all=false" onmouseover="linkQueryAppend(this)"&gt; Linux tutorials&lt;/a&gt; on developerWorks.             &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;                  Stay current with                 &lt;a href="http://www.ibm.com/developerworks/offers/techbriefings/?S_TACT=105AGX01&amp;amp;S_CMP=LP" onmouseover="linkQueryAppend(this)"&gt;developerWorks technical events and Webcasts&lt;/a&gt;.             &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;b&gt;Get products and technologies&lt;/b&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt; Some popular,                 free Linux environments suitable for thin clients include: &lt;ul&gt;&lt;li&gt;                         &lt;a href="http://www.ubuntu.com/products/mobile"&gt;Ubuntu MID Edition&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;                         &lt;a href="http://maemo.org/"&gt;Maemo&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;                         &lt;a href="http://wiki.sugarlabs.org/go/Supported_systems"&gt;OLPC's Sugar&lt;/a&gt;                     &lt;/li&gt;&lt;li&gt;&lt;a href="http://moblin.org/"&gt;Moblin&lt;/a&gt; (&lt;b&gt;Note:&lt;/b&gt; Moblin is                         not an operating system but middleware that can be packaged with                         many Linux distributions.)&lt;/li&gt;&lt;/ul&gt;            &lt;br /&gt;&lt;/li&gt;&lt;li&gt;                  With                 &lt;a href="http://www.ibm.com/developerworks/downloads/" onmouseover="linkQueryAppend(this)"&gt;IBM trial software&lt;/a&gt;,                 available for download directly from developerWorks, build your next development                 project on Linux.             &lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;b&gt;Discuss&lt;/b&gt;&lt;/p&gt;                  Get involved in the                 &lt;a href="http://www.ibm.com/developerworks/community?S_TACT=105AGX01&amp;amp;S_CMP=LP" onmouseover="linkQueryAppend(this)"&gt; My developerWorks community&lt;/a&gt;; with your personal profile and custom home page, you                  can tailor developerWorks to your interests and interact with other developerWorks users.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8762777087936862941?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8762777087936862941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/cloud-computing-with-linux-thin-clients.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8762777087936862941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8762777087936862941'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/cloud-computing-with-linux-thin-clients.html' title='Cloud computing with Linux thin clients'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8424776890007535543</id><published>2009-05-11T20:09:00.000-05:00</published><updated>2009-05-11T20:10:24.459-05:00</updated><title type='text'>Obama vows antitrust crackdown</title><content type='html'>&lt;p&gt;NEW YORK (CNNMoney.com) -- President Obama's top antitrust official said Monday that the administration will aggressively crack down on antitrust violations, reversing a Bush-era policy that had weakened the government's ability to take on monopolies. &lt;/p&gt;&lt;p&gt;"As antitrust enforcers, we can no longer sit on the sidelines," said Assistant Attorney General Christine Varney, speaking Monday at the Center for American Progress in Washington.&lt;/p&gt;&lt;p&gt;As part of her remarks, Varney retracted a September 2008 report that amended Section 2 of the Sherman Antitrust Act. Section 2 deemed it illegal to make any attempt at creating a monopoly but the amendment had loosened those rules.&lt;/p&gt;&lt;p&gt;"The report ... raised too many hurdles to government antitrust enforcement," Varney said. "Withdrawing the report is a shift in philosophy and the clearest way to let everyone know that the Antitrust Division will be aggressively pursuing cases where monopolists try to use their dominance in the marketplace to stifle competition and harm consumers." &lt;/p&gt;&lt;p&gt;Though the report had followed more than a year of hearings conducted by the Justice Department and the Federal Trade Commission, the FTC never actually signed the document. &lt;/p&gt;&lt;p&gt;&lt;b&gt;Changing landscape: &lt;/b&gt;The Bush administration brought historically few antitrust cases to trial. But Varney said those days are over. &lt;/p&gt;&lt;p&gt;She promised a return to "tried and true case law and Supreme Court precedent." For example, Varney said the United States could start seeing more cases like the 1998-2001 United States vs. Microsoft case in which the software giant was found to have forced out Internet browser competition like Netscape and Opera.&lt;/p&gt;&lt;p&gt;There's a good chance that the Justice Department's decision will not only lead to more antitrust complaints but also to a more receptive ear, said Joe Angland, partner in White &amp;amp; Case's antitrust practice. &lt;/p&gt;&lt;p&gt;"The administration signaled that, in certain areas, it will adopt stricter rules to deal with dominant firms," he said. "It will likely lead to more investigations of the firms' abilities to deal with competitors."&lt;/p&gt;&lt;p&gt;But Angland added that the decision does not herald a return to the "bad old days" of the 1950s and '60s, when the government aimed to take down corporations it deemed too large. He said the repeal of the report likely means a return to Clinton-era policies which he described as "stricter, but not anti-business."&lt;/p&gt;&lt;p&gt;Angland also believes that the Obama administration is not looking to target any specific companies or sectors. Instead, the shift will likely lead to more investigations of loyalty discounts and refusals to deal with competitors -- two areas in which the Supreme Court has not issued a ruling.&lt;/p&gt;&lt;p&gt;"The administration can't change Supreme Court decisions; they can only step in where there is not a ruling," said Angland.&lt;/p&gt;&lt;p&gt;Varney will be delivering the same speech Tuesday at the U.S. Chamber of Commerce, which represents a broad spectrum of companies.&lt;/p&gt;&lt;p&gt;"The chamber is all for competition in the marketplace, but without knowing what the new standard is, without prescribed policies, it's tough to articulate whether the administration's plans are favorable or unfavorable position for businesses," said Sean Heather, executive director of global regulatory cooperation at the Chamber of Commerce. "Enforcement of policy needs to be grounded in sound economic analysis and hard evidence of harm to consumers," he added.&lt;/p&gt;&lt;p&gt;&lt;b&gt;European shift:&lt;/b&gt; After Bush became president in 2001, many plaintiffs started opting to take antitrust cases to European courts.&lt;/p&gt;&lt;p&gt;Among the bigger cases, Microsoft (&lt;a href="http://money.cnn.com/quote/quote.html?symb=MSFT&amp;amp;source=story_quote_link"&gt;MSFT&lt;/a&gt;, &lt;a href="http://money.cnn.com/magazines/fortune/fortune500/2009/snapshots/3063.html?source=story_f500_link"&gt;Fortune 500&lt;/a&gt;) was fined $1.2 billion by the European Commission in February 2008 after it was found to be pricing out rivals and refusing to comply with the court's previous antitrust decision.&lt;/p&gt;&lt;p&gt;Similarly, European Union antitrust regulators are expected to say Wednesday that Intel Corp. (&lt;a href="http://money.cnn.com/quote/quote.html?symb=INTC&amp;amp;source=story_quote_link"&gt;INTC&lt;/a&gt;, &lt;a href="http://money.cnn.com/magazines/fortune/fortune500/2009/snapshots/642.html?source=story_f500_link"&gt;Fortune 500&lt;/a&gt;) unfairly paid computer makers to delay or even cancel products that contained chips made by rival AMD (&lt;a href="http://money.cnn.com/quote/quote.html?symb=AMD&amp;amp;source=story_quote_link"&gt;AMD&lt;/a&gt;, &lt;a href="http://money.cnn.com/magazines/fortune/fortune500/2009/snapshots/756.html?source=story_f500_link"&gt;Fortune 500&lt;/a&gt;), according to reports.&lt;/p&gt;&lt;p&gt;Varney, a former FTC commissioner under the Clinton administration, said the U.S. Justice Department plans to closely align itself with the European Union to streamline antitrust regulation. "I don't think you'll get a better result from one jurisdiction than another," she said.&lt;/p&gt;&lt;p&gt;Angland said the Justice Department's new antitrust enforcement will slow the movement of cases to European courts, but not end it completely.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Too big to fail...really?&lt;/b&gt; Varney said a major failure of the previous administration was allowing corporations to grow to such an extent that they essentially did become too big to fail. That's because many had become so intertwined with other businesses within their industry that a failure would have posed a systemic risk to the entire sector.&lt;/p&gt;&lt;p&gt;"Too big to fail [is] a failure of antitrust," Varney said. "The recent developments in the marketplace should make it clear that we can no longer rely upon the marketplace alone to ensure that competition and consumers will be protected." &lt;/p&gt;Varney suggested a "back-to-basics" approach to antitrust enforcement. "When companies compete, you get better programs at lower prices," she said.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8424776890007535543?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8424776890007535543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/obama-vows-antitrust-crackdown.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8424776890007535543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8424776890007535543'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/obama-vows-antitrust-crackdown.html' title='Obama vows antitrust crackdown'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2530057407101961562</id><published>2009-05-10T15:50:00.001-05:00</published><updated>2009-05-10T15:51:39.697-05:00</updated><title type='text'>Portable Ubuntu, Windows Live Together in Perfect Harmony</title><content type='html'>By Jack M. Germain&lt;br /&gt;&lt;!--/byline--&gt;LinuxInsider  &lt;br /&gt; &lt;!--date--&gt;05/08/09 4:00 AM PT&lt;!--/date--&gt;   &lt;p class="story-summary"&gt;PC users who want to have an Ubuntu machine without eighty-sixing Windows completely often configure their systems to run both -- though a reboot is sometimes required. Not so with Portable Ubuntu. The app starts up an instance of Hardy Heron within Windows on demand. Though its window frames and menu bars appear the same as those of the user's Windows setup, it's Ubuntu through and through.&lt;/p&gt;&lt;br /&gt;&lt;p class="story-body"&gt;Want to try out Ubuntu Linux without giving up your Windows desktop? How about running Ubuntu from a &lt;a class="story-keyword-offsite" href="http://en.wikipedia.org/wiki/USB" onclick="window.open('http://en.wikipedia.org/wiki/USB'); return false;"&gt;USB&lt;/a&gt; drive on any Windows PC while still operating within Windows?&lt;/p&gt; &lt;span id="intelliTxt"&gt;&lt;p&gt;&lt;a href="http://portableubuntu.demonccc.cloudius.com.ar/" target="_blank"&gt;Portable Ubuntu&lt;/a&gt; provides both of these computing options, no setup hassles or programming skills required. You do not even have to reboot the computer or set up a dual boot environment -- and no, you do not need to install any virtual machine software to make it work.&lt;/p&gt; &lt;p&gt;Argentinean programmer Claudio Cesar Sanchez Tejeda released Portable Ubuntu in mid-April. He built upon the concept of an existing project known as  &lt;a href="http://www.colinux.org/" target="_blank"&gt;"Cooperative Linux."&lt;/a&gt; The tweaking he added created a version of the Hardy Heron Ubuntu 8.04 Linux distro that loads from the Windows desktop. Both Windows programs and Linux apps can run seamlessly on the same Windows desktop.&lt;/p&gt; &lt;p&gt;Portable Ubuntu is a fun and convenient way to learn about one of the most popular Linux desktop distributions with no risk to the Windows computer. It can be an ideal transition path from the Windows platform to the Linux world.  &lt;!--ps: 42 crid: 5933:trend_may_160-1 cc:us--&gt;  &lt;script language="JavaScript1.1" src="http://altfarm.mediaplex.com/ad/js/9966-77321-7758-3?mpt=12419885562809&amp;amp;mpvc=http://www.ectnews.com/adsys/link/%3Fcreative%3d5933%26ENN_rnd%3d12419885562809%26ENN_target="&gt; &lt;/script&gt;&lt;script language="JavaScript" type="text/javascript" src="http://cdn.eyewonder.com/100125/757270/1072705/wrapper.js?ewbust=0"&gt;&lt;/script&gt;&lt;script language="Javascript" id="ew1072705_script" type="text/javascript" src="http://cdn1.eyewonder.com/200125/757270/1072705/exp_Proxy.js"&gt;&lt;/script&gt;&lt;object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="ewad1072705" style="position: relative; top: 0px; left: 0px;" align="middle" height="600" width="240"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;param name="movie" value="http://cdn1.eyewonder.com/200125/757270/1072705/trendmicro_panorama_160x600.swf"&gt;&lt;param name="quality" value="high"&gt;&lt;param name="bgcolor" value="#FFFFFF"&gt;&lt;param name="base" value="http://cdn1.eyewonder.com/200125/757270/1072705/"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="FlashVars" value="ewbase=http://cdn1.eyewonder.com/200125/757270/1072705/&amp;amp;bwfile=bwtest.swf&amp;amp;creative=trendmicro_panorama_160x600.swf&amp;amp;vLength=&amp;amp;bw=56,90,135,300,450,600&amp;amp;buf=5,4,3,2,2,2&amp;amp;flv=&amp;amp;flvId=0&amp;amp;formatId=110&amp;amp;aInit=&amp;amp;vInit=&amp;amp;videoID=&amp;amp;videoPath=fms2.eyewonder/video/&amp;amp;executionId=1072705&amp;amp;adId=54617&amp;amp;adMode=stream&amp;amp;trkUrl=http://cdn1.eyewonder.com/200125/&amp;amp;siteID=1196&amp;amp;swfVersion=9&amp;amp;browserEngine=gecko&amp;amp;browserEngineVersion=1.8.1.20&amp;amp;opSys=windows&amp;amp;qaReportUUID=common&amp;amp;localConnectionUUID=1241988559087&amp;amp;guid=86526add-65dc-43ee-83f1-121c20077b9a&amp;amp;clickTagPrepend=%5Bewclickthru%5D&amp;amp;streamServer=eyewond.fcod.llnwd.net&amp;amp;streamAppName=a119/o1&amp;amp;streamMode=0&amp;amp;clickTag1=http%3A%2F%2Fwww.ectnews.com%2Fadsys%2Flink%2F%3Fcreative%3D5933%26ENN_rnd%3D12419885562809%26ENN_target%3Dhttp%3A%2F%2Faltfarm.mediaplex.com%2Fad%2Fck%2F9966-77321-7758-3%3Fmpt%3D12419885562809%263261827%3D1"&gt;&lt;embed id="ewembed1072705" src="http://cdn1.eyewonder.com/200125/757270/1072705/trendmicro_panorama_160x600.swf" base="http://cdn1.eyewonder.com/200125/757270/1072705/" wmode="transparent" quality="high" bgcolor="#FFFFFF" name="ewad1072705" flashvars="ewbase=http://cdn1.eyewonder.com/200125/757270/1072705/&amp;amp;bwfile=bwtest.swf&amp;amp;creative=trendmicro_panorama_160x600.swf&amp;amp;vLength=&amp;amp;bw=56,90,135,300,450,600&amp;amp;buf=5,4,3,2,2,2&amp;amp;flv=&amp;amp;flvId=0&amp;amp;formatId=110&amp;amp;aInit=&amp;amp;vInit=&amp;amp;videoID=&amp;amp;videoPath=fms2.eyewonder/video/&amp;amp;executionId=1072705&amp;amp;adId=54617&amp;amp;adMode=stream&amp;amp;trkUrl=http://cdn1.eyewonder.com/200125/&amp;amp;siteID=1196&amp;amp;swfVersion=9&amp;amp;browserEngine=gecko&amp;amp;browserEngineVersion=1.8.1.20&amp;amp;opSys=windows&amp;amp;qaReportUUID=common&amp;amp;localConnectionUUID=1241988559087&amp;amp;guid=86526add-65dc-43ee-83f1-121c20077b9a&amp;amp;clickTagPrepend=%5Bewclickthru%5D&amp;amp;streamServer=eyewond.fcod.llnwd.net&amp;amp;streamAppName=a119/o1&amp;amp;streamMode=0&amp;amp;clickTag1=http%3A%2F%2Fwww.ectnews.com%2Fadsys%2Flink%2F%3Fcreative%3D5933%26ENN_rnd%3D12419885562809%26ENN_target%3Dhttp%3A%2F%2Faltfarm.mediaplex.com%2Fad%2Fck%2F9966-77321-7758-3%3Fmpt%3D12419885562809%263261827%3D1" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://adobe.com/go/getflashplayer" align="middle" height="600" width="240"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;div class="story-advertisement"&gt;&lt;noscript&gt;&lt;/noscript&gt;&lt;!--/ps: 42 crid: 5933:trend_may_160-1 cc:us--&gt;  &lt;/div&gt; &lt;h2 class="subhead"&gt; Better Than Live CD &lt;/h2&gt; &lt;p&gt; Portable Ubuntu offers some convenient improvements over running Ubuntu from a live &lt;a class="story-keyword-offsite" href="http://en.wikipedia.org/wiki/CD" onclick="window.open('http://en.wikipedia.org/wiki/CD'); return false;"&gt;CD&lt;/a&gt; session. To load Ubuntu as the complete operating environment in a computer, users must reboot the computer from the CD drive. Once loaded, users can either install Ubuntu to the hard drive or run the Linux OS (operating system) from the CD.&lt;/p&gt; &lt;p&gt;Not so with Portable Ubuntu. The Linux environment loads within Windows and runs as an isolated process. All configuration changes are saved to a file in an encrypted folder on the computer's hard drive or USB drive. No speed issues exist because hard drives and USB drives provide faster read access.&lt;/p&gt; &lt;p&gt;With a live CD session, all features of Ubuntu are the same except program updates, and configuration changes are not permanent. So you have to reset them each time you start another live session. Of course, some of the peppiness of Linux is lost to the slower process of reading from the CD. &lt;/p&gt; &lt;h2 class="subhead"&gt; Looks Like Windows, Walks Like Ubuntu &lt;/h2&gt; &lt;p&gt; The only difference in the appearance of Portable Ubuntu from the dedicated Ubuntu OS is that the desktop in the Windows environment does not change. Instead of seeing the tell-tale orange Ubuntu background, the &lt;a class="story-keyword-offsite" href="http://www.microsoft.com/" onclick="window.open('http://www.microsoft.com'); return false;"&gt;Microsoft&lt;/a&gt; (Nasdaq: MSFT) &lt;a href="http://www.linuxinsider.com/story/Portable-Ubuntu-Windows-Live-Together-in-Perfect-Harmony-67016.html?wlc=1241988520" onclick=" { ENN_wo('http://www.ectnews.com/adsys/link/?crid=5949&amp;ENN_rnd=12419885562870'); return false; }" onmouseover="status='http://altfarm.mediaplex.com/ad/ck/10345-70523-1941-16'; return true;" onmouseout="status=''; return true;"&gt;&lt;img src="http://www.linuxinsider.com/images/2009/icon-inline-shop.gif" title="Save 50% on Microsoft Office for Mac 2008. Click here to learn more." alt="Save 50% on Microsoft Office for Mac 2008. Click here to learn more." border="0" height="12" width="15" /&gt;&lt;/a&gt; &lt;a class="story-keyword-search" href="http://www.linuxinsider.com/perl/search.pl?query=Microsoft&amp;amp;scope=network"&gt;&lt;img src="http://www.linuxinsider.com/images/2009/icon-inline-search.gif" title="More about Microsoft" alt="More about Microsoft" border="0" height="10" width="10" /&gt;&lt;/a&gt; Windows background remains visible. Only a series of Ubuntu windows open as Ubuntu apps are accessed from a standard Ubuntu menu bar that docks on the Microsoft Windows desktop.&lt;/p&gt; &lt;p&gt;The Ubuntu menu bar can be moved anywhere on the Windows desktop. Even the title bars on the opened Ubuntu windows have the look and functionality of a standard Microsoft window.&lt;/p&gt; &lt;p&gt;For example, I run several display enhancement programs on my Windows XP system to add Vista-like functionality. Some of these add-on features in XP show as additional symbols at the top of the title bar on opened windows. They are still present in a Portable Ubuntu window even though they no longer serve any purpose in Linux. &lt;/p&gt; &lt;h2 class="subhead"&gt; No VM Process &lt;/h2&gt; &lt;p&gt; I am not a fan of dual boot configurations. I want access to different operating systems conveniently without having to reboot from one OS into another on the same computer. Plus, I often run two systems side by side. So I maintain a separate Windows laptop and Windows desktop. I also run Ubuntu on a dedicated desktop box and have a netbook that runs the Ubuntu Remix distro.&lt;/p&gt; &lt;p&gt;I also am not very fond of running a virtual machine environment to accomplish the same side-by-side OS delivery. Portable Ubuntu bridges both of these options to give me Linux access on demand without leaving my running Windows programs and data.&lt;/p&gt; &lt;p&gt;Various Linux-on-a-USB drive concoctions usually present some of the same inconveniences as dual booting. Portable Ubuntu solves that dilemma for me as well. &lt;/p&gt; &lt;h2 class="subhead"&gt; Easy Installation &lt;/h2&gt; &lt;p&gt; Setting up Portable Ubuntu is quick and painless. The process requires downloading and decompressing the zipped file and then running a batch file to install the Portable Ubuntu directory on either the hard drive or other external media. You can download it  &lt;a href="http://portableubuntu.demonccc.cloudius.com.ar/" target="_blank"&gt;here&lt;/a&gt;. Select the download page and choose a mirror site from the list of links.&lt;/p&gt; &lt;p&gt;Clicking on the "Run Portable Ubuntu" file (create a desktop icon for easy access) starts the Ubuntu session. All running programs in Windows remain unaffected.&lt;/p&gt; &lt;p&gt;A green arrow appears in the system tray on the Windows desktop when the process starts. Clicking it will open a terminal window to allow you to monitor the startup process. Click the arrow again to close the terminal window without hampering the OS startup within Microsoft Windows.&lt;/p&gt; &lt;p&gt;A splash screen appears for a short interval and then is replaced by the Ubuntu menu bar. Click on the Ubuntu menu items to load Linux apps. &lt;/p&gt; &lt;h2 class="subhead"&gt; Light on Resources &lt;/h2&gt; &lt;p&gt; Unlike running a shared VM environment, Portable Windows causes very little drain on system resources because it does not split available system resources between the installed OS and a virtual machine OS.&lt;/p&gt; &lt;p&gt;My Windows programs still ran without hesitation. The Ubuntu apps were as speedy as on my dedicated Linux desktop and netbook computers.&lt;/p&gt; &lt;p&gt;I was particularly impressed with Portable Ubuntu's ability to run without interfering with system performance. I run  &lt;a href="http://www.dexpot.de/index.php?lang=en" target="_blank"&gt;Dexpot&lt;/a&gt; virtual windows on my Microsoft boxes. This gives me the ability to run separate desktops so many open programs do not result in desktop clutter.&lt;/p&gt; &lt;p&gt;Even with a Web browser, a word processor, multiple security programs, file managers and graphics editors open on multiple desktops, Portable Ubuntu had no discernible impact on resources. In this regard, running Portable Ubuntu is much like my experiences with using Puppy Linux, which boots from a USB drive and runs in available system &lt;a href="http://en.wikipedia.org/wiki/RAM" target="_blank"&gt;RAM&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Portable Ubuntu has a leg up over Puppy Linux -- it runs without requiring a reboot. &lt;/p&gt; &lt;h2 class="subhead"&gt; Twisted Roots &lt;/h2&gt; &lt;p&gt; Portable Ubuntu and the CoLinux projects are two separate distributions. Portable Ubuntu is not associated with the Ubuntu Linux distro headed by &lt;a class="story-keyword-offsite" href="http://www.canonical.com/" onclick="window.open('http://www.canonical.com/'); return false;"&gt;Canonical&lt;/a&gt;, according to Tejeda. In fact, the Ubuntu community was not aware of Portable Ubuntu until its release.&lt;/p&gt; &lt;p&gt;"Portable Ubuntu was developed independently without direct involvement from the Ubuntu project. I only became aware of Portable Ubuntu recently and don't know much about it beyond what is published on its Web site," Matt Zimmerman, CTO for Canonical, told LinuxInsider.&lt;/p&gt; &lt;p&gt;At its core, Portable Ubuntu is different from the Canonical version. The developer of Portable Ubuntu designed his Linux strain to run on the  &lt;a href="http://en.wikipedia.org/wiki/Xming" target="_blank"&gt;Xming&lt;/a&gt; windowing system.&lt;/p&gt; &lt;p&gt;"I use the Colinux kernel inside Portable Ubuntu. The Colinux kernel is a Linux kernel that could run on Windows, so I included this kernel in Ubuntu and modified some files so that Ubuntu can be executed with Colinux and can use Xming, (an X server for Windows)," Tejeda told LinuxInsider. &lt;/p&gt; &lt;h2 class="subhead"&gt; Secure Environment &lt;/h2&gt; &lt;p&gt; Running Portable Ubuntu inside the Windows OS is a similar concept to using a VM shell to create a sandboxed environment. The CoLinux kernel is faster than virtualization techniques because it interacts more closely with Windows, Tejeda explained.&lt;/p&gt; &lt;p&gt;Although Portable Ubuntu can access files on the Windows platform, the process is not easily reciprocal. Windows cannot access Portable Ubuntu directly. The only way is through a Secure Shell (SSH) protocol, he said.&lt;/p&gt; &lt;p&gt;The same structure that isolates a virtual machine prevents Windows from getting into the Portal Ubuntu envelope. Portable Ubuntu communicates with Xming, which has multiwindow functionality. This functionality enables Portable Ubuntu applications to integrate on the Windows desktop via the window system of the Microsoft OS.&lt;/p&gt; &lt;p&gt;"You can't access your Portable Ubuntu file system from Windows when it is running. The only way is configuring  &lt;a href="http://en.wikipedia.org/wiki/Samba_%28software%29" target="_blank"&gt;Samba&lt;/a&gt; in Portable Ubuntu, but Samba has security settings so you can limit the access to Portable Ubuntu," said Tejeda. &lt;/p&gt; &lt;h2 class="subhead"&gt; Accessing Data &lt;/h2&gt; &lt;p&gt; Portable Ubuntu comes with  &lt;a href="http://en.wikipedia.org/wiki/Abi_word" target="_blank"&gt;AbiWord&lt;/a&gt; as its default word processor and FireFox as the Web browser. OpenOffice, by contrast, is the default word processor/office suite with Canonical's Ubuntu distro. Of course, OpenOffice and any other Debian-based Ubuntu app can be installed using the same Add/Remove service utilized by Ubuntu.&lt;/p&gt; &lt;p&gt;Windows data files can be loaded from the hard drive and saved back to that same source. However, a smidgen of configuring is needed to provide access to a USB drive or the resident CD/DVD drive on the Windows computer.&lt;/p&gt; &lt;p&gt;Here is the explanation that Tejeda provided to accomplish this: You need to know the device system number or the letter of the optical and/or USB drive. Using any text editor, locate and open the portable_ubuntu.conf file found in the Ubuntu folder.&lt;/p&gt; &lt;p&gt;Configure the storage device using either its drive letter in Windows or its device name in Linux. For instance, the CD Rom drive can be listed as E: or cdrom0. &lt;/p&gt;&lt;ol&gt;&lt;li&gt;With the letter drive: &lt;p&gt;Letter drive: E:&lt;/p&gt; &lt;p&gt;Line to add in the portable_ubuntu.conf: cofs4=E:&lt;/p&gt; &lt;p&gt;Command to use in Portable Ubuntu to access the CD drive: # mount -t cofs cofs4 /dir_to_mount&lt;/p&gt; &lt;p&gt;# cd /dir_to_mount &lt;/p&gt;&lt;/li&gt;&lt;li&gt;With the system device number: &lt;p&gt;Device number: cdrom0&lt;/p&gt; &lt;p&gt;Line to add in the portable_ubuntu.conf: cobd4=\Devices\Cdrom0&lt;/p&gt; &lt;p&gt;Command to use in Portable Ubuntu to access the CD drive: # mount -t iso9660 /dev/cobd4 /cdrom&lt;/p&gt; &lt;p&gt;# cd /cdrom&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt; &lt;/p&gt; &lt;h2 class="subhead"&gt; Final Thoughts &lt;/h2&gt; &lt;p&gt; Portable Ubuntu runs within Windows XP and Windows Vista. In theory, it will also run within Windows 7. Tejeda plans to update Portable Ubuntu on the same six-month development cycle used by the Canonical community.&lt;/p&gt; &lt;p&gt;Ubuntu package updates are handled the same way they're handled with Canonical's Ubuntu -- through the Update Manager in the System/Administration menu. One hint: Change the software source to the main server. I found that the default Argentina server could not always read the libraries in the Ubuntu repository.&lt;/p&gt; &lt;p&gt;Whether you are an experienced Linux user or just curious about Ubuntu, Portable Ubuntu is a cool way to grow out of the newbie ranks.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2530057407101961562?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2530057407101961562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/portable-ubuntu-windows-live-together.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2530057407101961562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2530057407101961562'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/portable-ubuntu-windows-live-together.html' title='Portable Ubuntu, Windows Live Together in Perfect Harmony'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-3219364041508390720</id><published>2009-05-09T19:28:00.000-05:00</published><updated>2009-05-09T19:29:13.597-05:00</updated><title type='text'>Creator of Dovecot Joins Mailtrust</title><content type='html'>&lt;div class="blogPostBody"&gt;A Little Old, but thought this should be posted!&lt;br /&gt;&lt;p&gt;Mailtrust recently hired Timo Sirainen to work at our Blacksburg office.  Timo is the creator and lead developer for &lt;a href="http://www.dovecot.org/"&gt;Dovecot&lt;/a&gt;, the open source IMAP mail server that we use here at Mailtrust, and has moved here from Finland. Mailtrust and Timo have worked together for several years, but with Timo in the US we will be able to accomplish a lot more in a much shorter timeframe&lt;/p&gt;  &lt;p&gt;We’ve asked Timo to give you all his view on his experience thus far. Check it out below:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;Posted by Timo Sirainen, Developer of Dovecot, which is arguably the highest performing open-source IMAP server for Linux/Unix.&lt;br /&gt;&lt;img src="http://www.mailtrust.com/images/blog/timo.jpg" align="right" height="277" hspace="12" width="224" /&gt;&lt;br /&gt;2009 should be a great year for Dovecot. I'll be working at Rackspace's Mailtrust office in Blacksburg, VA for the entire year. With Mailtrust's support, I'm hoping to get a lot more work done than in the last couple of years combined. In Finland, I was working at home and that didn't work too well for me (it's way too easy to start wasting time on TV). I've also paused my university studies for this year, so they won't eat my time, either.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;Mailtrust is dedicated to making Dovecot successful, and we share a lot of common ideas. Our priorities for new features are also very similar. After this year, there will be a lot more reasons to choose Dovecot. I'm learning about the complexity of running a large mail server installation with thousands of servers. Just knowing about those could help me implement new features better and get some problems solved more easily in the future.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;After being here for only 3 weeks, I think Mailtrust is pretty much the ideal company to work for. &lt;a href="http://www.mailtrust.com/employees"&gt;People love what they do&lt;/a&gt; here and they're good at it. It seems to be easy to get things done without annoying unnecessary bureaucracy. The environment is pretty relaxed—people take breaks to play Nintendo Wii, ping pong, and eat free snacks. It's easy to talk to even the top level management. There's even &lt;a href="http://www.mailtrust.com/employees/marisa"&gt;a person&lt;/a&gt; whose job is to make Mailtrust the best place to work for!&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;Interested in helping me work on Dovecot while I am in the US?   Mailtrust is &lt;a href="http://www.mailtrust.com/jobs"&gt;hiring&lt;/a&gt;!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-3219364041508390720?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/3219364041508390720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/creator-of-dovecot-joins-mailtrust.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3219364041508390720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3219364041508390720'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/creator-of-dovecot-joins-mailtrust.html' title='Creator of Dovecot Joins Mailtrust'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-7120305248958708275</id><published>2009-05-05T19:06:00.000-05:00</published><updated>2009-05-05T19:07:49.464-05:00</updated><title type='text'>12 million new IP addresses hijacked by botnets</title><content type='html'>Today the McAfee first quarter threat report revealed that cybercriminals have taken control of almost 12 million new IP addresses since January, a 50 percent increase since 2008.&lt;br /&gt;&lt;br /&gt;The United States is now home to the largest percentage of botnet-infected computers, hosting 18 percent of all zombie machines. Cybercriminals are building an army of infected, “zombie” computers to recover from last November’s takedown of a central spam-hosting ISP, according to the new report from Avert Labs.&lt;br /&gt;&lt;br /&gt;The November 2008 takedown of McColo Corp. dropped spam levels by an estimated 60 percent, but spam quantities are rising as cybercriminals create new ways to send bulk e-mails.&lt;br /&gt;&lt;br /&gt;The quick expansion of botnets threatens to boost spam levels back up. In fact, spam volumes have already recovered about 70 percent since McColo Corp. went offline. Compared with the same quarter a year ago, spam volumes are 20 percent lower in 2009 and 30 percent below the third quarter of 2008, which had the highest quarterly volumes recorded to date.&lt;br /&gt;&lt;br /&gt;“The massive expansion of these botnets provides cybercriminals with the infrastructure they need to flood the Web with malware,” said Jeff Green, senior vice president of McAfee Avert Labs. “Essentially, this is cybercrime enablement.”&lt;ul&gt;&lt;li&gt;The Koobface virus has made a resurgence, and more than 800 new variants of the virus were discovered in March alone&lt;/li&gt;&lt;li&gt;Servers hosting legitimate content have increased in popularity with malware writers to distribute malicious and illegal content&lt;/li&gt;&lt;li&gt;Cybercriminals are increasing their use of URL redirects and Web 2.0 sites to disguise their location&lt;/li&gt;&lt;li&gt;Compared to the overall landscape, the Conficker worm represents a small subset of all threat reports. Autorun malware, a vector used by certain Conficker variants, represented only 10% of all detections reported during the first quarter.&lt;/li&gt;&lt;/ul&gt;We continue to see widespread use of legitimate Web 2.0 and business-related URLs for spreading malware. Ten or more years ago, it seemed you could remain safe by simply staying away from certain content, but today threats seem to find us regardless of where we browse. Any website that can be exploited (via any of numerous vulnerabilities) will be. Administrators routinely see scans looking to exploit their servers. What is interesting is the high prevalence of these scans coming from sites and servers associated with everything from illegal software to malicious sites to anonymizers. If a high-traffic website is vulnerable, then it is not a matter of whether it will be exploited, but when.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-7120305248958708275?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/7120305248958708275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/12-million-new-ip-addresses-hijacked-by.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7120305248958708275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7120305248958708275'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/05/12-million-new-ip-addresses-hijacked-by.html' title='12 million new IP addresses hijacked by botnets'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-4654567004460320453</id><published>2009-04-26T20:34:00.000-05:00</published><updated>2009-04-26T20:35:18.943-05:00</updated><title type='text'>Is Ubuntu Bigger than Debian now?</title><content type='html'>&lt;div class="asset-meta"&gt;     &lt;span class="byline"&gt;          By Sean Michael Kerner on April 24, 2009 12:20 PM      &lt;/span&gt; &lt;/div&gt;           &lt;div class="asset-content"&gt;          &lt;div class="asset-body"&gt;             &lt;span class="mt-enclosure mt-enclosure-image"&gt;&lt;img alt="debianlogo.png" src="http://blog.internetnews.com/skerner/smk/debianlogo.png" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="61" width="50" /&gt; &lt;/span&gt;From the '&lt;i&gt;Is Debian's failure, Ubuntu's Linux success?&lt;/i&gt;' files:&lt;br /&gt;&lt;br /&gt;This week's Jaunty Jackalope release was Ubuntu's 10th release and the 9th release that I've used myself. I first became aware of Ubuntu in 2005 with the 'Hoary Hedgehog' release for only one reason, D&lt;a href="http://www.internetnews.com/dev-news/article.php/3496541"&gt;ebian Sarge was AWOL&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Debian is the basis for Ubuntu, but in some ways you can argue that Ubuntu has at this point, exceeded Debian. The great 'failure' of Debian is also it's great strength. Debian hasn't been able to put out releases in a regularly scheduled format in years -- something developers will commonly attribute to not making a release until it's ready.&lt;br /&gt;&lt;br /&gt;While Debian has struggled on release dates (&lt;i&gt;getting better latel&lt;/i&gt;y), Ubuntu comes out with its releases like clockwork. Though Debian has been tremendous strides since Sarge with its desktop installation, Ubuntu has become one of the most popular Linux distribution for the desktop period.&lt;br /&gt;&lt;br /&gt;On the server, Ubuntu is now ramping its efforts too, which is an area where Mark Shuttleworth also sees a place where Ubuntu can exceed what Debian does.&lt;br /&gt;&lt;blockquote&gt;  &lt;b&gt;"We see Debian as the system administrators choice," Shuttleworth said during a conference call announcing Jaunty. "And we see Ubuntu as bringing a level of corporate identity and backing to that platform which makes it acceptable and palatable in a large scale organizational environments."&lt;br /&gt;&lt;/b&gt;&lt;/blockquote&gt;&lt;br /&gt;        &lt;/div&gt;           &lt;div id="more" class="asset-more"&gt;             Yes, I know -- Debian is a community GNU/Linux distribution. I also know that others including Debian founder (and now Sun employee) &lt;em&gt;Ian Murdock&lt;/em&gt; tried to get Debian into commercial enterprises with his firm Progeny. There was even something called the &lt;a href="http://www.internetnews.com/ent-news/article.php/3525276"&gt;Debian Common Core Alliance (DCCA)&lt;/a&gt; at one point that was going to push comemrcial adoption. Those efforts are now gone.&lt;br /&gt;&lt;br /&gt;There is another though. HP is &lt;a href="http://www.internetnews.com/dev-news/article.php/3661481"&gt;a big backer of Debian&lt;/a&gt; and HP today has &lt;a href="http://www.internetnews.com/dev-news/article.php/3611126"&gt;commercial support &lt;/a&gt;for Debian.&lt;br /&gt;&lt;br /&gt;Debian is also very widely deployed in non-commercial instances on uncounted servers globally. Certainly there are alot of instances where a commercially supported Linux is not necessary on a server and Debian fits in well there.&lt;br /&gt;&lt;br /&gt;That strength in the community is also something that Ubuntu and Shuttleworth are banking on to grow Ubuntu's server business.&lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;"Our heritage in Debian postions us to be a very strong platform for common infrastructure type work on Linux servers inside large organizations from Government through to Universities," Shuttleworth said. "In Debian we have a foundation that is very modular perhaps more modular than any other version of Linux."&lt;br /&gt;&lt;/b&gt;&lt;/blockquote&gt;Has the apprentice become the master now?&lt;br /&gt;&lt;br /&gt;One thing is for sure, Ubuntu continues to be built on the shoulders of Debian. Depending on how you look at it that's a good thing for Debian (&lt;i&gt;or bad&lt;/i&gt;) and it's definitely a good thing for Ubuntu.         &lt;/div&gt;      &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-4654567004460320453?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/4654567004460320453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/is-ubuntu-bigger-than-debian-now.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4654567004460320453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4654567004460320453'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/is-ubuntu-bigger-than-debian-now.html' title='Is Ubuntu Bigger than Debian now?'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-1716249279114402300</id><published>2009-04-21T22:51:00.001-05:00</published><updated>2009-04-21T22:51:54.877-05:00</updated><title type='text'>Pentagon Fighter Jet Data Breach Was Avoidable</title><content type='html'>The hack into the Pentagon's computer system that led to the theft of information related to the $300 billion Joint Strike Fighter project could have been prevented, one solution provider said. &lt;p&gt; A report Tuesday by &lt;i&gt;The Wall Street Journal&lt;/i&gt; said &lt;a href="http://www.crn.com/security/216900362"&gt;cyberspies cracked into the Joint Strike Fighter project&lt;/a&gt;, the Pentagon's costliest weapons program. The report indicated that the information targeted could help adversaries mount defenses against the radar-evading fighter jet, though the most sensitive information was not breached because it is stored on computers not attached to the Internet. &lt;/p&gt;&lt;p&gt; Following the report, a Pentagon official said he was not aware of any specific concern that the attacks compromised sensitive information or technology. &lt;/p&gt;&lt;p&gt;"I'm not aware of any specific concerns," Pentagon spokesman Bryan Whitman said, according to Reuters. Whitman added he was speaking generally and not talking about specific incidents. &lt;/p&gt;&lt;p&gt; While it was unclear on Tuesday exactly how the breach was carried out, &lt;i&gt;The Wall Street Journal&lt;/i&gt; reported that intruders likely entered through vulnerabilities in the networks of the contractors involved in building the aircraft and that Pentagon insiders noted that Chinese networks are in some way involved in the cyberattack. Lockheed Martin is the project's lead contractor. Other contractors include Northrop Grumman and BAE Systems. &lt;/p&gt;&lt;p&gt;According to Aamir Lakhani, security solutions engineer with World Wide Technology, a St. Louis-based solution provider, the breach of the Joint Strike Fighter program, also known as the F-35 Lightning II project, could have been avoided. &lt;/p&gt;&lt;p&gt;"I think one of the ways this could have been prevented is by limiting what kind of information is stored on noncontrolled computers," he said. "Classified information should be stored on centralized computers. Taking advantage of cloud computing or centralized data themes could help prevent this information from leaking." &lt;/p&gt;&lt;p&gt; Lakhani said &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=network%20security&amp;amp;x=&amp;amp;y="&gt;network security&lt;/a&gt; technologies could be set up to limit when and how data is accessed from the cloud and could be designed in a way that any computer accessing the information from the cloud is accessing it from a classified network over an encrypted VPN. &lt;/p&gt;&lt;p&gt;Lakhani added that the onus is on the Pentagon to better implement and enforce end-user desktop policies to further ensure the network is impervious to such attacks and data breaches. Network Access Control (NAC) technologies could ensure computers are abiding by corporate &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=information%20security&amp;amp;x=&amp;amp;y="&gt;information security&lt;/a&gt; policies and quarantine or lock out users' machines if they are not up to snuff. &lt;/p&gt;&lt;p&gt; "Information security staff cannot rely on the good behavior of the user," he said. "It must be enforced automatically." &lt;/p&gt;&lt;p&gt; The U.S. has become increasingly concerned about potential cyberattacks. Earlier this year, U.N. Secretary-General Ban Ki-moon said cyberweapons will be added to the list of arms falling under the auspices of the U.N.'s Advisory Board on Disarmament Matters and said breaches of critical systems represent "a clear and present threat to international security." &lt;/p&gt;&lt;p&gt;Additionally, the Pentagon is developing the National Cyber Range program, part of the government's Comprehensive National Cybersecurity Initiative, which will enable the Pentagon to imitate and mimic the likely actions of cyber aggressors using the equipment hackers could use to inflict attacks. &lt;/p&gt;&lt;p&gt;Lakhani said the real problem is information leakage and that sensitive information stored on computers is getting out into the Internet. That can happen when policies that govern computer usage are not followed. Also, he said, such policies are difficult to enforce on laptops because they can be taken from classified networks and put on nonclassified networks with relative ease. Lakhani added that the data leak may not have been malicious, but the computer may have been moved to a nonclassified network for something as innocuous as viewing a YouTube &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=video&amp;amp;x=&amp;amp;y="&gt;video&lt;/a&gt; clip, which could open the machine to &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=spyware&amp;amp;x=&amp;amp;y="&gt;spyware&lt;/a&gt; and Trojans that infect a computer and transmit information over the Web. &lt;/p&gt;&lt;p&gt; "By default, many &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=peer-to-peer&amp;amp;x=&amp;amp;y="&gt;peer-to-peer&lt;/a&gt; file-sharing applications share out the entire hard drive," he said. "These laptops may be sharing classified information on P2P networks without the user ever knowing." &lt;/p&gt;&lt;p&gt;Overall, however, Lakhani said the security breach involving the Joint Strike Fighter project could have been thwarted with the right technology and end-user training on the importance of safeguarding information. &lt;/p&gt;&lt;p&gt;"The technology is out there to prevent these types of threats from happening," he said. "However, one of the biggest challenges for anyone in information security is making sure the end user is knowledgeable and understands the importance of protecting information. It really doesn't matter how good the locks on your house are if you are always going to keep the door open." &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-1716249279114402300?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/1716249279114402300/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/pentagon-fighter-jet-data-breach-was.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1716249279114402300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1716249279114402300'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/pentagon-fighter-jet-data-breach-was.html' title='Pentagon Fighter Jet Data Breach Was Avoidable'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-988897668963574433</id><published>2009-04-19T22:55:00.001-05:00</published><updated>2009-04-19T22:58:08.925-05:00</updated><title type='text'>April 15th, 2009 : Rich Miller</title><content type='html'>&lt;em class="day"&gt;&lt;br /&gt;&lt;br /&gt;April 15th, 2009 : Rich Miller &lt;/em&gt;          &lt;p&gt;In an underground bunker 100 feet beneath Stockholm lies a unique facility operated by the Swedish ISP Bahnhof. It’s become known as the “James Bond Villain Data Center” after it was featured on the &lt;a href="http://royal.pingdom.com/2008/11/14/the-worlds-most-super-designed-data-center-fit-for-a-james-bond-villain/"&gt;Pingdom web site&lt;/a&gt; last year. Dean Nelson of &lt;a href="http://www.datacenterpulse.com/"&gt;Data Center Pulse&lt;/a&gt; recently got a tour of the data center from Bahnhof CEO Jon Karlung, who provided a look at the many unusual features of the facility, a former military bunker designed to withstand a hydrogen bomb blast. Karlung has said he drew his inspiration for many of the center’s flourishes from James Bond villains (especially Ernst Blofeld), hence the waterfalls, greenhouse-style NOC, glass-enclosed conference room “floating” above the colocation floor, and blue-lit diesel engines (supposedly used in German submarines). This video runs about 9 minutes.&lt;/p&gt;&lt;object width="425" height="349"&gt;&lt;param name="movie" value="http://www.youtube.com/v/qwlATf9xse4&amp;amp;rel=0&amp;amp;border=1&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/qwlATf9xse4&amp;amp;rel=0&amp;amp;border=1&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;              &lt;div class="posttop"&gt;     &lt;h2&gt;&lt;a href="http://royal.pingdom.com/2008/11/14/the-worlds-most-super-designed-data-center-fit-for-a-james-bond-villain/" rel="bookmark" title="Permanent Link to The world’s most super-designed data center – fit for a James Bond villain"&gt;The world’s most super-designed data center – fit for a James Bond villain&lt;/a&gt;&lt;/h2&gt;     &lt;div class="postinfo"&gt;Posted in &lt;a href="http://royal.pingdom.com/category/main/" title="View all posts in Main" rel="category tag"&gt;Main&lt;/a&gt; on November 14th, 2008 by Pingdom&lt;/div&gt;    &lt;/div&gt;     &lt;div class="entry"&gt;     &lt;p&gt;This underground data center has greenhouses, waterfalls, German submarine engines, simulated daylight and can withstand a hit from a hydrogen bomb. It looks like the secret HQ of a James Bond villain.&lt;/p&gt; &lt;p&gt;And it is real. It is a newly opened high-security data center run by one of Sweden’s largest ISPs, located in an old nuclear bunker deep below the bedrock of Stockholm city, sealed off from the world by entrance doors 40 cm thick (almost 16 inches).&lt;/p&gt; &lt;p&gt;(For the curious there is plenty of more information further down.)&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3235/3029540474_1970ff02b6_o.jpg" title="Pionen data center" class="alignnone" height="385" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above: &lt;/strong&gt;The space-themed conference room is suspended about the server hall.&lt;/em&gt;&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3270/3028705939_d845580fdf_o.jpg" title="Pionen data center" class="alignnone" height="432" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above left:&lt;/strong&gt; View from the conference room (its floor is the surface of the Moon). &lt;strong&gt;Above right:&lt;/strong&gt; Power equipment.&lt;/em&gt;&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3214/3028705951_b330207194_o.jpg" title="Pionen data center" class="alignnone" height="385" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above:&lt;/strong&gt; The NOC is set in a cozy jungle setting. That light fog almost makes us think of cloud computing. Fog computing? &lt;img src="http://royal.pingdom.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /&gt; &lt;/em&gt;&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3139/3028705977_51643de3c1_o.jpg" title="Pionen data center" class="alignnone" height="385" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above:&lt;/strong&gt; Artificial waterfalls and plenty of green plants adorn the halls.&lt;/em&gt;&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3177/3029540562_2e40214ea6_o.jpg" title="Pionen data center" class="alignnone" height="272" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above left:&lt;/strong&gt; The submarine engines used for backup power. &lt;strong&gt;Above right:&lt;/strong&gt; Another view of the power equipment.&lt;/em&gt;&lt;/p&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3012/3029591204_8176531f6d_o.jpg" title="Pionen data center" class="alignnone" height="385" width="580" /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Above:&lt;/strong&gt; This map shows the layout of the data center. Original image courtesy of &lt;a href="http://www.chezalbert.com/"&gt;Albert France-Lanord Architects&lt;/a&gt; (Pingdom added the English translation).&lt;/em&gt;&lt;/p&gt; &lt;h4&gt;And here is what it used to look like&lt;/h4&gt; &lt;p&gt;&lt;img alt="" src="http://farm4.static.flickr.com/3147/3028778063_f4bc37e2b0_o.jpg" title="Pionen data center" class="alignnone" height="385" width="580" /&gt;&lt;/p&gt; &lt;p&gt;Quite a difference, isn’t it? &lt;img src="http://royal.pingdom.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /&gt; &lt;/p&gt; &lt;h4&gt;Facts about the data center&lt;/h4&gt; &lt;ul&gt;&lt;li&gt;&lt;strong&gt;Originally a nuclear bunker:&lt;/strong&gt; The data center is housed in what was originally a military bunker and nuclear shelter during the Cold War era. The facility still has the code name from its military days: Pionen White Mountains.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Located in central Stockholm below 30 meters (almost 100 ft) of bedrock:&lt;/strong&gt; The facility has 1110 sqm (11950 sq ft) of space and is located below 30 meters of solid bedrock (granite) right inside the city.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Fully redesigned in 2007-2008:&lt;/strong&gt; Pionen was completely redesigned in 2007-2008 to become the data center that it is today. More than 4,000 cubic meters (141,300 cubic ft) of solid rock was blasted away to make more room.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Can withstand a hydrogen bomb: &lt;/strong&gt;The bunker was designed to be able to withstand a near hit by a hydrogen bomb.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Houses the Network Operations Center for one of Sweden’s largest ISPs:&lt;/strong&gt; The bunker houses the NOC for all of Bahnhof’s operations. They have five data centers in Sweden, Pionen being the largest. The facility also acts as a co-location hosting center, so you can actually put your own servers here.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;German submarine engines for backup power: &lt;/strong&gt;Backup power is handled by two Maybach MTU diesel engines producing 1.5 Megawatt of power. The engines were originally designed for submarines, and just for fun the people at Pionen have also installed the warning system (sound horns) from the original German submarine.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;1.5 megawatt of cooling for the servers:&lt;/strong&gt; Cooling is handled by Baltimore Aircoil fans producing a cooling effect of 1.5 megawatt, enough for several hundred rack-mounted units.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Triple redundancy Internet backbone access:&lt;/strong&gt; The network has full redundancy with both fiber optics and extra copper lines with three different physical ways into the mountain. Pionen is one the best-connected places in northern Europe.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Work environment with simulated daylight and greenhouses: &lt;/strong&gt;For a pleasant working environment the data center has simulated daylight, greenhouses, waterfalls and a huge 2600-liter salt water fish tank.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Staff: &lt;/strong&gt;15 employees, only senior technical staff, work full time in Pionen.&lt;/li&gt;&lt;/ul&gt; &lt;h4&gt;Breaking the mold and focusing on humans&lt;/h4&gt; &lt;p&gt;We simply couldn’t resist the temptation to ask the people behind the Pionen data center what made them design such an insanely cool and unusual environment deep inside the bedrock of Stockholm.&lt;/p&gt; &lt;p&gt;Jon Karlung, CEO at Bahnhof (the ISP behind Pionen), was kind enough to take the time to speak to us here at Pingdom and explain their motivations.&lt;/p&gt; &lt;p&gt;“Rather than just concentrating on technical hardware we decided to put humans in focus,” he said. “Of course, the security, power, cooling, network, etc, are all top notch, but the people designing data centers often (always!) forget about the humans that are supposed to work with the stuff.”&lt;/p&gt; &lt;p&gt;We suspected that the unique location itself must have been a big inspiration, something which Karlung confirms.&lt;/p&gt; &lt;p&gt;“Since we got hold of this unique nuclear bunker in central Stockholm deep below the rock, we just couldn’t build it like a traditional – more boring – hosting center,” he said. “We wanted to make something different. The place itself needed something far out in design and science fiction was the natural source of inspiration in this case – plus of course some solid experience from having been a hosting provider for more than a decade.”&lt;/p&gt; &lt;h4&gt;The visual inspiration&lt;/h4&gt; &lt;p&gt;So, where to turn for visual inspiration? Apparently movies were the way to go for Pionen.&lt;/p&gt; &lt;p&gt;“I’m personally a big fan of old science fiction movies. Especially ones from the 70s like Logan’s Run, Silent Running, Star Wars (especially The Empire Strikes Back) so these were an influence,“ said Karlung. “James Bond movies have also had an impact on the design. I was actually looking for the same outfit as the villain ‘Blofeld’ in Bond and even considered getting a white cat, but that might have been going a bit far!”&lt;/p&gt; &lt;h4&gt;The marketing aspect&lt;/h4&gt; &lt;p&gt;The unique approach also helps the company to get the word out about their facility. It makes them stand out, and since the facility offers co-location hosting, they have customers who frequently visit the place and work there. These people share what they see with others.&lt;/p&gt; &lt;p&gt;“The unique design makes it a ‘talk about’ facility,” said Karlung.”If you have been inside Pionen you will for sure tell somebody else about it.”&lt;/p&gt; &lt;h4&gt;Do you know of other awesome data centers?&lt;/h4&gt; &lt;p&gt;We here at Pingdom always love it when people step up to the plate and do something different, like what Bahnhof has done with this awesome data center.&lt;/p&gt; &lt;p&gt;If you know of other data centers that are as super-designed and different as this one, please let us know in the comments since we would love to check them out. Links to pictures and information are always welcome!&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;strong&gt;A big thank you&lt;/strong&gt; to Jon Karlung at Bahnhof for providing us with extra information and taking the time to answer all our questions. You can read more &lt;a href="http://www.bahnhof.se/pionen/"&gt;about the Pionen data center at the Bahnhof website&lt;/a&gt; (in Swedish, though). &lt;/em&gt;&lt;/p&gt;         &lt;/div&gt; &lt;p align="center"&gt;&lt;object data="http://www.youtube.com/v/qwlATf9xse4&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0&amp;amp;border=1" type="application/x-shockwave-flash" height="315" width="500"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;param name="src" value="http://www.youtube.com/v/qwlATf9xse4&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0&amp;amp;border=1"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;/object&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-988897668963574433?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/988897668963574433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/april-15th-2009-rich-miller.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/988897668963574433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/988897668963574433'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/april-15th-2009-rich-miller.html' title='April 15th, 2009 : Rich Miller'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-5666072899477278297</id><published>2009-04-16T14:54:00.000-05:00</published><updated>2009-04-16T14:55:36.205-05:00</updated><title type='text'>Microsoft Improves, Rebrands Managed Security Offering</title><content type='html'>&lt;div class="date"&gt;Thursday, April 16, 2009 11:40 AM PDT&lt;/div&gt;    &lt;div class="articleBodyContent"&gt; &lt;p&gt;Microsoft is updating and rebranding its cloud-based e-mail security service, formerly known as Exchange Hosted Filtering, and spending US$75 million to beef up industry support for its new suite of security software.&lt;/p&gt;&lt;p&gt;The product is being rolled into Microsoft's Forefront security product group and will now be called Forefront Online Security for Exchange. A new version of the service, due in May, will feature improved management capabilities and will be priced at US$20 per seat per year, according to Doug Leland, general manager of Microsoft's Identity and Security Business Group.&lt;/p&gt;&lt;p&gt;The security service is based on technology Microsoft picked up in its 2005 acquisition of &lt;a href="http://www.microsoft.com/presspass/press/2005/aug05/08-31frontbridgecompletepr.mspx" target="_blank"&gt;FrontBridge Technologies&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Microsoft also plans to release a second beta update to its unified security software suite, code-named Stirling, later this week. The final version of Stirling will start to be rolled out by year's end -- six months later than previously expected -- when Microsoft releases its Forefront for Security for Exchange Server and Threat Management Gateway, the next-generation version of its Internet Security and Acceleration (ISA) Server. The other parts of the suite will follow in 2010, Microsoft says.&lt;/p&gt;&lt;p&gt;Leland has been working hard to build out the Forefront line since he took over as general manager of the division in July 2008, and part of that effort has been ensuring that other security products will work with Stirling components. This year, Microsoft plans to spend $75 million on partner programs to improve the way Stirling works with products form vendors such as Brocade, Juniper Networks, Sourcefire, TippingPoint and RSA.&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-5666072899477278297?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/5666072899477278297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/microsoft-improves-rebrands-managed.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5666072899477278297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5666072899477278297'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/microsoft-improves-rebrands-managed.html' title='Microsoft Improves, Rebrands Managed Security Offering'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2376619019299505521</id><published>2009-04-16T14:49:00.000-05:00</published><updated>2009-04-16T14:50:32.187-05:00</updated><title type='text'>Hackers develop 'memory-scraping malware' to steal PINs</title><content type='html'>&lt;p class="standfirst"&gt;They are probably watching you now and laughing&lt;/p&gt; &lt;p class="byline"&gt;By &lt;a href="http://forms.theregister.co.uk/mail_author/?story_url=/2009/04/16/pin_security_breach_survey/" title="Send email to the author"&gt;John Leyden&lt;/a&gt; • &lt;a href="http://search.theregister.co.uk/?author=John%20Leyden" class="more-by-author" title="More stories on this site by John Leyden"&gt;Get more from this author&lt;/a&gt;&lt;/p&gt; &lt;p class="dateline"&gt;Posted in &lt;a href="http://www.theregister.co.uk/security/enterprise/"&gt;Enterprise Security&lt;/a&gt;, 16th April 2009 18:39 GMT&lt;/p&gt; &lt;p id="top-text-link"&gt;&lt;a href="http://ad.doubleclick.net/clk;213390576;13533154;a?http://ad.uk.doubleclick.net/clk;213348283;34761635;i?http://www.intel.com/business/xeon/seminar.htm?TID=theregister"&gt;Join the Intel seminar. IT has companies talking&lt;/a&gt;&lt;/p&gt; &lt;div id="body"&gt; &lt;p&gt;More personal data records were breached last year than the previous four years combined, thanks to increased hacker activity rather than insider threats.&lt;/p&gt;  &lt;p&gt;Verizon's second annual Data Breach Investigations Report also found that the financial services sector accounted for 93 percent of all such record compromises during 2008. The study is based on an analysis of data involving 285 million compromised records from 90 confirmed breaches, 90 per cent of which are blamed on the activities of cybercriminals.&lt;/p&gt;  &lt;div id="article-mpu-container"&gt; &lt;div style="width: auto; height: auto;" class="ad-now" id="ad-mpu1-spot"&gt; &lt;div id="ad-mpu1"&gt;&lt;script type="text/javascript"&gt;RegAd('mpu1', 'reg.security.4159/enterprise', 'pos=top;sz=336x280', VCs);&lt;/script&gt;&lt;script type="text/javascript" src="http://ad.uk.doubleclick.net/adj/reg.security.4159/enterprise;tile=2;dcove=d;cta=0;ctb=0;ctc=redesign;sc=1;cid=;test=;pid=89403;pf=0;kw=vulnerability;kw=cybercrime;kw=security%20breaches;kw=hacking;kw=pin;cp=0;vc=sec.enterprise;pos=top;sz=336x280;ord=133853934?"&gt;&lt;/script&gt;&lt;script src="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=rb&amp;amp;c=22&amp;amp;pli=752920&amp;amp;PluID=0&amp;amp;w=336&amp;amp;h=280&amp;amp;ncu=$$http://ad.uk.doubleclick.net/click%3Bh=v8/3811/3/0/%2a/i%3B212196379%3B0-0%3B3%3B18185218%3B4252-336/280%3B30863819/30881695/1%3B%3B%7Esscs%3D%3f$$&amp;amp;ord=7661716"&gt;&lt;/script&gt;&lt;img src="http://view.atdmt.com/211/view/136619211/direct;at.mrtitp00030119/01/?ord=9551023642203786" style="position: absolute; left: 0px; top: 0px;" width="0" height="0" /&gt;&lt;script src="http://ds.serving-sys.com/BurstingCachedScripts/ebExpBanner_2_5_60.js"&gt;&lt;/script&gt;&lt;embed src="http://ds.serving-sys.com/BurstingCachedScripts//Res/Empty_Movie.swf" play="false" id="ebReportingFlash" name="ebReportingFlash" quality="high" wmode="window" allowscriptaccess="always" allowfullscreen="true" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" style="border: 0pt none ; margin: 0pt; padding: 0pt; overflow: visible; position: absolute; width: 0px; height: 0px;"&gt;&lt;/embed&gt;&lt;script src="http://ds.serving-sys.com/BurstingRes//Site-1418/Type-11/1447137_141517B1-43C1-4C69-A893-95BE0669890D.js"&gt;&lt;/script&gt;&lt;script id=""&gt;function ebBannerFlash_0_9551023642203786_DoFSCommand(command,args){ebScriptWin0_9551023642203786.gEbBanners[0].displayUnit.handleFSCommand(command,args,"ebBannerFlash_0_9551023642203786");}&lt;/script&gt;&lt;div id="ebBannerDiv_0_9551023642203786" style="border: 0pt none ; margin: 0pt; padding: 0pt; overflow: visible; display: inline;"&gt;&lt;embed style="border: 0pt none ; margin: 0pt; padding: 0pt; overflow: visible; text-align: left; width: 336px; height: 280px;" flashvars="&amp;amp;clickTag=http%3A//ds.serving-sys.com/BurstingCachedScripts//ReportPage_2_5_1.html%3FebReportURL%3Dhttp%253A//bs.serving-sys.com/BurstingPipe/BannerRedirect.asp%253FPage%253D%2526PluID%253D0%2526Pos%253D%255BebRandom%255D%2526EyeblasterID%253D1447137%2526di%253D0%24%24ebNReportURL%3Dhttp%253A//ad.uk.doubleclick.net/click%253Bh%253Dv8/3811/3/0/*/i%253B212196379%253B0-0%253B3%253B18185218%253B4252-336/280%253B30863819/30881695/1%253B%253B%257Esscs%253D%253F%24%24ebAReportURL%3D%24%24ebImpressionID%3D9551023642203786&amp;amp;clickTAG=http%3A//ds.serving-sys.com/BurstingCachedScripts//ReportPage_2_5_1.html%3FebReportURL%3Dhttp%253A//bs.serving-sys.com/BurstingPipe/BannerRedirect.asp%253FPage%253D%2526PluID%253D0%2526Pos%253D%255BebRandom%255D%2526EyeblasterID%253D1447137%2526di%253D0%24%24ebNReportURL%3Dhttp%253A//ad.uk.doubleclick.net/click%253Bh%253Dv8/3811/3/0/*/i%253B212196379%253B0-0%253B3%253B18185218%253B4252-336/280%253B30863819/30881695/1%253B%253B%257Esscs%253D%253F%24%24ebAReportURL%3D%24%24ebImpressionID%3D9551023642203786&amp;amp;ebMovie1=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-12/66771AFA-052E-428B-A640-3F8C9AB697D6.flv&amp;amp;ebMovie2=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/A8134D69-DC6B-4425-843F-CFE131571DE1.swf&amp;amp;ebMovie3=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/9F464584-D4E0-46EF-9A83-531C57675579.swf&amp;amp;ebMovie4=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/091687B6-E3C1-4033-8664-1069C26A71EF.swf&amp;amp;ebMovie5=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/4C7B0A82-E97F-4F05-BD4E-17DA9EBDE7FA.swf&amp;amp;ebMovie6=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/A37E389C-7AF6-4D77-9FA6-F09D5B568C61.swf&amp;amp;ebMovie7=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/A2EC9F26-31E2-45CD-85B8-3708FFEB9677.swf&amp;amp;ebMovie8=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/90E464B9-762F-47A9-9881-C90D290D7F8D.swf&amp;amp;ebMovie9=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/0626F18A-B574-4C0C-9E21-4712839785F8.swf&amp;amp;ebMovie10=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/81E5320A-B614-480A-8190-1DC31A4F316E.swf&amp;amp;ebMovie11=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/D1CA092F-5190-4F00-A067-40D72AB89ED6.swf&amp;amp;ebMovie12=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/F1EB235C-F814-4D51-BFB4-5B48D7B3ABEA.swf&amp;amp;ebAdXML=http://ds.serving-sys.com/BurstingRes//Site-1418/Type-20/8e09b2c4-ee7f-4c33-8716-5a8c71704e2d.xml&amp;amp;ebFSCmdHandler=ebBannerFlash_0_9551023642203786_DoFSCommand" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" menu="false" wmode="opaque" play="true" src="http://ds.serving-sys.com/BurstingRes//Site-1418/Type-2/DA46D649-168B-4FD0-8EF1-06C9AE76DF29.swf?ebDomain=www.theregister.co.uk&amp;amp;ebAdID=1447137&amp;amp;cp=http://ds.serving-sys.com/BurstingCachedScripts//Res/ebV54_&amp;amp;ebIntTime=http://ds.serving-sys.com/BurstingCachedScripts//Res/ebInteractionTimeV62_12.swf&amp;amp;ebDCPipe=http://bs.serving-sys.com/BurstingPipe/BurstingDataCapturePipe.asp&amp;amp;ebResourcePath=http://ds.serving-sys.com/BurstingRes//&amp;amp;ebCampaignID=68903&amp;amp;ebStreamingAppURL=rtmp%3A//cp16207.edgefcs.net/ondemand&amp;amp;ebStreamVirtualPath=Res/Site-1418/&amp;amp;ebAdIdentifier=gEbBanners%5B0%5D.displayUnit_1447137&amp;amp;ebLC=gEbBanners%5B0%5D.displayUnit_ebBannerFlash_1447137" name="ebBannerFlash_0_9551023642203786" id="ebBannerFlash_0_9551023642203786"&gt;&lt;/embed&gt;&lt;/div&gt; &lt;noscript&gt; &lt;/noscript&gt;&lt;/div&gt;&lt;noscript&gt;&lt;/noscript&gt; &lt;/div&gt;  &lt;p&gt;Because the survey is based on actual cases of confirmed data breaches, rather than responses to surveys or questionnaires, it provides a much more revealing insight into cybercrime trends.&lt;/p&gt; &lt;/div&gt;  &lt;p&gt;Most of the breaches (74 per cent) investigated were caused by external sources, while 32 per cent were linked to business partners. Only one in five (20 per cent) were attributed to insiders, a finding that runs against conventional wisdom in security circles. Some breaches were caused by more than one source, hence the overall figure adds up to more than 100 per cent.&lt;/p&gt;  &lt;p&gt;The study also found that the majority of breaches resulted from a combination of events rather than a single security mistake. Two in three breaches were blamed on hackers. Typically, miscreants exploited vulnerabilities to install malware onto systems for later retrieval.&lt;/p&gt;  &lt;p&gt;Two in three breaches (69 per cent) were discovered by third parties. Nearly all the records compromised (99 per cent) last year came from internet-connected systems, either servers or applications. The finding put concerns about mobile devices and portable media in context, the SANS Institute's Internet Storm Centre &lt;a href="http://isc.sans.org/diary.html?storyid=6202" target="_blank"&gt;notes&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Much has been made of the fact that some organisations who achieved compliance with the credit card industry's PCI-DSS standard wound up becoming the target of some of the highest profile hacking attacks. However, Verizon's study found that 81 per cent of organisations hit by security breached subject to PCI-DSS had been found to be non-compliant prior to the attack.&lt;/p&gt;  &lt;h3&gt;PIN down&lt;/h3&gt;  &lt;p&gt;Verizon reports that attacks targeting PIN data "exploded" last year.&lt;/p&gt;  &lt;blockquote&gt;These PIN-based attacks hit the consumer much harder than typical signature-based counterfeit attacks in which a consumer's credit card is compromised. Investigators found that PIN fraud typically leads to cash being withdrawn directly from the consumer's account - whether it is a checking, savings or brokerage account - placing a greater burden on the consumer to prove that transactions are fraudulent. &lt;p&gt;The higher monetary value commanded by PIN data has spawned a cycle of innovation in attack methodologies. Criminals have re-engineered their processes and developed new tools, such as memory-scraping malware, to steal this valuable commodity.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Bryan Sartin, director of investigative response for Verizon Business, &lt;a href="http://blog.wired.com/27bstroke6/2009/04/pins.html" target="_blank"&gt;told&lt;/a&gt; &lt;em&gt;Wired.com&lt;/em&gt; that these attacks involved assaults on both unencrypted data held on insecure systems &lt;em&gt;and&lt;/em&gt; encrypted data.&lt;/p&gt;  &lt;p&gt;"We're seeing entirely new attacks that a year ago were thought to be only academically possible," Sartin said. "What we see now is people going right to the source... and stealing the encrypted PIN blocks and using complex ways to un-encrypt the PIN blocks."&lt;/p&gt;  &lt;p&gt;Hardware security modules, which act as a form of switch for encrypted data within bank networks, are under active attack. "Essentially, the thief tricks the HSM into providing the encryption key," Sartin explained. "This is possible due to poor configuration of the HSM or vulnerabilities created from having bloated functions on the device."&lt;/p&gt;  &lt;p&gt;The class of attack has been understood in academic circles for some years (researchers at Cambridge and in Israel have published &lt;a href="http://blog.wired.com/27bstroke6/files/The_Unbearable_Lightness_of_PIN_Cracking.pdf" target="_blank"&gt;papers&lt;/a&gt; on it) but Verizon's detailed study is the first evidence that it's been used in anger.&lt;/p&gt;  &lt;h3&gt;Green cross code&lt;/h3&gt;  &lt;p&gt;Verizon analysts found - as they did in the firm's previous study, which covered 230 million compromised records from 2004 to 2007 - that nearly nine out of 10 breaches were avoidable with basic security precautions.&lt;/p&gt;  &lt;p&gt;The survey concludes with a series of common-sense recommendations on how to guard against attack - such as patching, regular auditing and robust password security - explained in greater depth in the complete report (&lt;a href="http://www.verizonbusiness.com/about/news/displaynews.xml?newsid=25282&amp;amp;mode=vzlong" target="_blank"&gt;PDF&lt;/a&gt;) and in a summary &lt;a href="http://www.verizonbusiness.com/about/news/displaynews.xml?newsid=25282&amp;amp;mode=vzlong" target="_blank"&gt;here&lt;/a&gt;. ®&lt;/p&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2376619019299505521?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2376619019299505521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/hackers-develop-memory-scraping-malware.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2376619019299505521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2376619019299505521'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/hackers-develop-memory-scraping-malware.html' title='Hackers develop &apos;memory-scraping malware&apos; to steal PINs'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8639891286884391982</id><published>2009-04-12T16:16:00.001-05:00</published><updated>2009-04-12T16:16:43.646-05:00</updated><title type='text'>Report: Conficker worm bites University of Utah</title><content type='html'>&lt;div class="postBody"&gt; &lt;p&gt; More than 700 computers at the University of Utah have been infected with the Conficker worm. &lt;/p&gt;&lt;p&gt; The hit includes computers at the university's three hospitals, the &lt;a href="http://www.google.com/hostednews/ap/article/ALeqM5glHoytrRzwnvGp8sAaLo7L4skvowD97GPM6G0"&gt;Associated Press reported&lt;/a&gt; early Sunday.  &lt;/p&gt;&lt;p&gt; University spokesman Chris Nelson said the outbreak was detected Thursday, the AP reported. By the next day, the worm had struck at the hospitals, medical school, and the nursing, pharmacy, and health colleges. &lt;/p&gt;&lt;p&gt;Patient records have not been touched, Nelson said. IT cut off Net access for up to six hours on Friday in order to isolate the virus, the AP reported. &lt;/p&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8639891286884391982?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8639891286884391982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/report-conficker-worm-bites-university.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8639891286884391982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8639891286884391982'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/report-conficker-worm-bites-university.html' title='Report: Conficker worm bites University of Utah'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-6212723832168172938</id><published>2009-04-12T16:15:00.001-05:00</published><updated>2009-04-12T16:15:54.963-05:00</updated><title type='text'>Teen takes responsibility for Twitter worms</title><content type='html'>&lt;p&gt; As a second Twitter exploit began circulating on the micro-blogging site Sunday, a teen-ager from Brooklyn told CNET News he created both worms to promote his Web site. &lt;/p&gt; &lt;div class="cnet-image-div image-medium float-right" style="width: 184px;"&gt;&lt;img class="cnet-image" src="http://i.i.com.com/cnwk.1d/i/bto/20090412/080214_worm.jpg" alt="" height="138" width="184" /&gt;&lt;/div&gt; &lt;p&gt; Much like Saturday's &lt;a title="Worm infiltrates Twitter -- Saturday, Apr 11, 2009" href="http://news.cnet.com/8301-1009_3-10217681-83.html"&gt;StalkDaily worm&lt;/a&gt;, the "Mikeyy" worm posts unwanted messages to users' pages. The "Mikeyy" worm began spreading on the micro-blogging site early Sunday, posting messages such as "Mikeyy I am done...," "MikeyyMikeyy is done.," and "Twitter please fix this, regards Mikeyy." &lt;/p&gt;&lt;p&gt;  Brooklyn resident named Michael "Mikeyy" Mooney, 17, &lt;a href="http://www.bnonews.com/news/242.html"&gt;told&lt;/a&gt; Twitter news service BNO News  that he created the worm "out of boredom." &lt;/p&gt;&lt;p&gt; "I usually like to find vulnerabilities within websites and try not to cause too much damage, but start a worm or something to give the developers an insight on the problem and while doing so, promoting myself or my website," he told the site. &lt;/p&gt;&lt;p&gt;Mooney told CNET News that the site has has been live to the public for about two weeks and has 905 members, but that it "is growing quickly because of the worm." &lt;/p&gt;&lt;p&gt; The messages circulating Saturday promoted StalkDaily.com, a short-messaging site similar to Twitter. While initially denying any responsibility for the worm, StalkDaily.com posted a message saying, "I have came clean and have accepted the responsibility for the worm..." &lt;/p&gt;&lt;p&gt; Twitter said it has closed the hole that allowed the worm to spread. &lt;/p&gt;&lt;p&gt;"We've taken steps to remove the offending updates, and to close the holes that allowed this 'worm' to spread," Twitter said in a statement Saturday. "No passwords, phone numbers, or other sensitive information were compromised as part of this attack." &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-6212723832168172938?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/6212723832168172938/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/teen-takes-responsibility-for-twitter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6212723832168172938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6212723832168172938'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/teen-takes-responsibility-for-twitter.html' title='Teen takes responsibility for Twitter worms'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2626202161009204048</id><published>2009-04-11T16:04:00.001-05:00</published><updated>2009-04-11T16:04:56.678-05:00</updated><title type='text'>Conficker also installs fake antivirus software</title><content type='html'>&lt;div class="postBody"&gt; &lt;p&gt; Researchers have discovered another feature of the Conficker worm that provides an additional clue about the intent of the creators--the worm installs malware that masquerades as antivirus software, Trend Micro said on Friday.&lt;/p&gt;&lt;p&gt; The worm, which has infected millions of Windows-based computers on the Internet, is downloading a program called Spyware Protect 2009 and displaying warning messages saying that the computer is infected and offering to clean it up for $49.95, according to the &lt;a href="http://blog.trendmicro.com/downadconficker-watch-new-variant-in-the-mix/"&gt;Trend Micro blog&lt;/a&gt;. &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="cnet-image-div image-large float-none" style="width: 500px;"&gt;&lt;img class="cnet-image" src="http://i.i.com.com/cnwk.1d/i/bto/20090410/ConfickerFakeAV.png" alt="" height="357" width="500" /&gt;&lt;p class="image-caption"&gt;If you see this pop-up message, chances are your computer is infected with Conficker. The latest feature of the widespread worm is that it installs fake antivirus software on infected machines.&lt;/p&gt;&lt;span class="image-credit"&gt;(Credit: Trend Micro)&lt;/span&gt;&lt;/div&gt;&lt;p&gt; The infection alerts repeatedly appear and experts are worried that people may be clicking on them and paying for the software just to be rid of the annoying messages, thereby handing thieves their credit card information. &lt;/p&gt;&lt;p&gt; The fake antivirus program also attempts to install a Trojan downloader that is programmed to download new versions of Spyware Protect 2009, according to &lt;a href="http://www.viruslist.com/en/weblog"&gt;Kasperky Lab's blog&lt;/a&gt;. However, the domain the Trojan downloader was being accessed from has been shut down, the blog said. &lt;/p&gt;&lt;p&gt;  The fake antivirus feature further &lt;a title="Researchers say Conficker is all about the money -- Thursday, Apr 9, 2009" href="http://news.cnet.com/8301-1009_3-10216205-83.html"&gt;bolsters the speculation that the motivation behind the worm&lt;/a&gt; is to make money and not a desire to disrupt computer or network operations.  &lt;/p&gt;&lt;p&gt; Researchers were still analyzing new component code of the worm that began being spread via peer-to-peer and being downloaded off domains that host the Waledec worm &lt;a title="Conficker wakes up, updates via P2P, drops payload -- Wednesday, Apr 8, 2009" href="http://news.cnet.com/8301-1009_3-10215678-83.html"&gt;on Wednesday&lt;/a&gt; but were finding the task difficult because the instructions are encrypted.&lt;/p&gt;&lt;p&gt;  The worm spreads via a hole in Windows that Microsoft &lt;a href="http://www.microsoft.com/technet/security/Bulletin/MS08-067.mspx"&gt;patched in October&lt;/a&gt;, as well as through removable storage devices and network shares with weak passwords. The worm disables security software and blocks access to security Web sites. &lt;/p&gt;&lt;p&gt; Despite all the news the worm has made, many computers still remain unpatched, Sophos said. Of the number of people who have used Sophos' free endpoint assessment test to check the security risk of a network since the beginning of the year, 11 percent did not have the Microsoft patch installed, according to &lt;a href="http://www.sophos.com/blogs/gc/g/2009/04/10/pcs-patched-conficker-vulnerability/"&gt;Graham Cluley's blog&lt;/a&gt; at Sophos. &lt;/p&gt;&lt;p&gt; For the month of March, 10 percent of all of the people who used the Sophos assessment tool were missing the patch, he said. The company did not divulge exactly how many people had used the tool and Cluley said the statistics cannot be extrapolated to represent the number of unpatched systems on the Internet. &lt;/p&gt;&lt;p&gt; In an indication of infection rates, IBM's Internet Security Systems group released statistics that show that the number of unique IPs infected with Conficker.C is increasing slightly.&lt;/p&gt;&lt;p&gt; Based on infections seen through monitoring devices in its IBM ISS' Managed Security Services, the number has grown from just over 64,000 on April 2 to more than 71,000 on April 8, according to the unit's &lt;a href="http://blogs.iss.net/archive/conficker-easter.html"&gt;Frequency X blog&lt;/a&gt;. &lt;/p&gt;&lt;p&gt; "We've seen around 11 percent more unique IPs in the past few days in comparison to a week ago," the blog said, also adding that the number doesn't necessarily indicate the scope of worldwide Conficker infection. &lt;/p&gt;&lt;p&gt; Nearly 60 percent of the infections monitored by IBM ISS are in Asia, followed by 18 percent each in Europe and South America, and 4 percent in North America, the statistics show. By country, China leads with 16.6 percent, followed by Brazil at 10.8 percent, Russia at 10.2 percent and Korea at 4.6 percent, according to ISS.&lt;/p&gt;&lt;p&gt;  To check if your computer is infected you can use this &lt;a href="http://www.confickerworkinggroup.org/infection_test/cfeyechart.html"&gt;Conficker Eye Chart&lt;/a&gt; or &lt;a href="http://iv.cs.uni-bonn.de/fileadmin/user_upload/werner/cfdetector/"&gt;this site at the University of Bonn&lt;/a&gt;. There is also a &lt;a href="http://download.cnet.com/8301-2007_4-10208734-12.html"&gt;Conficker removal guide&lt;/a&gt; on CNET's Download.com site. &lt;/p&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2626202161009204048?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2626202161009204048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/conficker-also-installs-fake-antivirus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2626202161009204048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2626202161009204048'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/conficker-also-installs-fake-antivirus.html' title='Conficker also installs fake antivirus software'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-4093288557970110981</id><published>2009-04-11T16:03:00.000-05:00</published><updated>2009-04-11T16:04:06.832-05:00</updated><title type='text'>China denies role on US grid hacks</title><content type='html'>&lt;div class="content"&gt;&lt;p&gt;The Chinese government is denying any involvement in the &lt;a href="http://www.vnunet.com/2240146" title="Hackers breach US electricity grid"&gt;reported infiltration&lt;/a&gt; of US electric grid systems.&lt;/p&gt;&lt;p&gt;Xinhua news agency quoted Chinese foreign ministry spokesperson Jiang Yu as saying that any sort of involvement from China in the incident "doesn't exist at all."&lt;/p&gt;&lt;/div&gt;                                            &lt;div class="content"&gt;&lt;p&gt;The denial follows a report in the Wall Street Journal which claimed that agents from China and Russia along with several other countries had infiltrated the computer systems charged with managing electricity in the US and left behind &lt;a itxtdid="8867654" target="_blank" href="http://www.vnunet.com/vnunet/news/2240236/china-denies-role-grid-hacks#" style="border-bottom: 0.075em solid darkgreen ! important; font-weight: normal ! important; font-size: 100% ! important; text-decoration: underline ! important; padding-bottom: 1px ! important; color: darkgreen ! important; background-color: transparent ! important;" classname="iAs" class="iAs"&gt;software&lt;/a&gt; payloads which could be used to control or disable electric grids in the US.&lt;/p&gt;&lt;p&gt;Security experts warned that while the incident showed glaring holes in the US &lt;a itxtdid="8526695" target="_blank" href="http://www.vnunet.com/vnunet/news/2240236/china-denies-role-grid-hacks#" style="border-bottom: 0.075em solid darkgreen ! important; font-weight: normal ! important; font-size: 100% ! important; text-decoration: underline ! important; padding-bottom: 1px ! important; color: darkgreen ! important; background-color: transparent ! important;" classname="iAs" class="iAs"&gt;security infrastructure&lt;/a&gt; and that in a time of conflict such an attack could have catastrophic effects for the country.&lt;/p&gt;&lt;p&gt;"We hope that the concerned media will prudently deal with some groundless remarks, especially those concerning accusations against China," Jiang said.&lt;/p&gt;&lt;p&gt;This is not the first time that China has been accused of hacking US computer systems. In 2007, the Pentagon &lt;a href="http://www.vnunet.com/2197972" title="US blames China for cyber attack"&gt;blamed a series of break-ins&lt;/a&gt; on hackers working for China's People's Liberation Army. Last month, the country was also &lt;a href="http://www.vnunet.com/2239400" title="Massive Chinese cyber-attack revealed"&gt;said to be behind&lt;/a&gt; a massive spying operation involving individuals in 103 countries.&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-4093288557970110981?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/4093288557970110981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/china-denies-role-on-us-grid-hacks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4093288557970110981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/4093288557970110981'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/china-denies-role-on-us-grid-hacks.html' title='China denies role on US grid hacks'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-5229857789351004327</id><published>2009-04-06T09:46:00.001-05:00</published><updated>2009-04-06T09:46:45.442-05:00</updated><title type='text'>Proposed Bill Gives Obama Power to Shut Down Internet</title><content type='html'>&lt;span id="intelliTXT"&gt;&lt;p&gt;&lt;strong&gt;A new cybersecurity bill being proposed would give the President emergency authority to halt web traffic and access private data, effectively declaring martial law on the web.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Last week, senators John Rockefeller and Olympia Snowe proposed the Cybersecurity Act that would create the Office of the National Cybersecurity Advisor. Its powers are detailed in the The Cybersecurity Act of 2009 &lt;a href="http://cdt.org/security/CYBERSEC4.pdf" title="" target="_blank"&gt;(PDF)&lt;/a&gt;, and this is where it gets very scary indeed.&lt;/p&gt; &lt;p&gt;If the President so chooses, he can call a "cybersecurity emergency" and shut down or limit any 'net traffic on a "critical" network "in the name of national security," though the bill fails to provide concrete definitions on what is "critical" or what constitutes an "emergency." &lt;/p&gt; &lt;p&gt;The Secretary of Commerce would also have the power to "access to all relevant data concerning [critical] networks without regard to any provision of law, regulation, rule, or policy restricting such access." &lt;/p&gt; &lt;p&gt;"We must protect our critical infrastructure at all costs - from our water to our electricity, to banking, traffic lights and electronic health records-the list goes on," said Senator Rockefeller in a statement. His colleague, Senator Snowe, took the metaphor further saying, "if we fail to take swift action, we, regrettably, risk a cyber-(hurricane) Katrina."&lt;/p&gt; &lt;p&gt;As you can imagine, the thought of such powers has put a number of internet advocacy groups on full alert. "The cybersecurity threat is real," said Leslie Harris, head of the Center for Democracy and Technology (CDT), "but such a drastic federal intervention in private communications technology and networks could harm both security and privacy."&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-5229857789351004327?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/5229857789351004327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/proposed-bill-gives-obama-power-to-shut.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5229857789351004327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5229857789351004327'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/proposed-bill-gives-obama-power-to-shut.html' title='Proposed Bill Gives Obama Power to Shut Down Internet'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-1725573004081223551</id><published>2009-04-03T01:06:00.000-05:00</published><updated>2009-04-03T01:07:04.794-05:00</updated><title type='text'>Viruses with trigger dates</title><content type='html'>&lt;div class="postBody"&gt; &lt;p&gt; Conficker, which was set to activate on April 1 but &lt;a title="All quiet on the Conficker front. Now what? -- Wednesday, Apr 1, 2009" href="http://news.cnet.com/8301-1009_3-10209143-83.html"&gt;failed to cause any problems&lt;/a&gt;, isn't the first virus to be programmed to take action on a certain date or time. Experts believe that worms with a trigger date &lt;a title="Conficker postmortem: Hype distracted but threat is real -- Thursday, Apr 2, 2009" href="http://news.cnet.com/8301-1009_3-10210934-83.html"&gt;can lead to panic and hype&lt;/a&gt;. Here are some others:&lt;/p&gt;&lt;p&gt; &lt;b&gt;Michelangelo&lt;/b&gt;&lt;br /&gt;The Michelangelo virus, &lt;a href="http://www.cert.org/advisories/CA-1992-02.html"&gt;first discovered in 1991&lt;/a&gt;, was triggered to launch its payload (rendering disk unusable) on computers running MS-DOS every March 6, but by 1997 it &lt;a title="No sign of Michelangelo virus yet -- Thursday, Mar 6, 1997" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/No-sign-of-Michelangelo-virus-yet/2100-1023_3-276501.html"&gt;appeared to have petered out&lt;/a&gt;. &lt;/p&gt;&lt;p&gt; &lt;b&gt;CIH&lt;/b&gt;&lt;br /&gt;The CIH, or Chernobyl, virus targeted Windows and was discovered in 1998. The original variant was set to destroy data on April 26, the birthday of the virus writer, which coincidentally happened to be the anniversary of Chernobyl disaster. Subsequent variants have different trigger dates for their payloads, including one that was set to activate on the 26th of every month but &lt;a title="CIH virus real but not epidemic -- Thursday, Aug 27, 1998" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/CIH-virus-real-but-not-epidemic/2100-1001_3-214924.html"&gt;which was not widespread&lt;/a&gt;.  &lt;/p&gt;&lt;p&gt; &lt;b&gt;Code Red&lt;/b&gt;&lt;br /&gt;The Code Red worm, &lt;a href="http://www.cert.org/advisories/CA-2001-19.html"&gt;discovered in July 2001&lt;/a&gt;, exploited a flaw in Microsoft IIS software and directed infected Web servers to launch attacks on other computers within a certain period of time. One of the sites was that of the White House, but the administration was able to &lt;a title="Code Red stopped--for now -- Friday, Jul 20, 2001" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/Code-Red-stopped--for-now/2100-1001_3-270314.html"&gt;successfully fend off the attack&lt;/a&gt; after moving the site from the targeted IP address. &lt;/p&gt;&lt;p&gt; &lt;b&gt;Klez.e&lt;/b&gt;&lt;br /&gt;Klez.e first spread via e-mail messages in February 2002 and exploited a hole in Outlook. It was set to activate on the sixth day of odd-numbered months and destroy files on infected Windows computers. However, it &lt;a title="Klez.e worm threat fizzles -- Wednesday, Mar 6, 2002" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/Klez.e-worm-threat-fizzles/2100-1001_3-853532.html"&gt;caused little or no damage&lt;/a&gt; because in the month between when it surfaced and when it was first due to activate on March 6, 2002, PC users were able to update their antivirus software. &lt;/p&gt;&lt;p&gt; &lt;b&gt;Blaster&lt;/b&gt;&lt;br /&gt;Blaster, or MSBlast, began spreading August 11, 2003, about three weeks after Microsoft announced a serious hole in Windows. The worm exploited the hole and was programmed to launch a denial of service attack on a Microsoft update Web site on August 15, 2003, but the company &lt;a title="Microsoft kills Net address to foil worm -- Friday, Aug 15, 2003" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/Microsoft-kills-Net-address-to-foil-worm/2100-1002_3-5064433.html"&gt;killed the Internet address to thwart it&lt;/a&gt;. In the code, the worm writer exhorted Bill Gates to "stop making money and fix your software!!"&lt;/p&gt;&lt;p&gt; &lt;b&gt;MyDoom&lt;/b&gt;&lt;br /&gt;Discovered in January 2004, the MyDoom virus targeted Windows PCs and was originally triggered to launch a denial of service attack against the Web site of the SCO Group between February 1 and February 12, 2004. The attack &lt;a title="MyDoom downs SCO site -- Monday, Feb 2, 2004" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/MyDoom-downs-SCO-site/2100-7349_3-5151572.html"&gt;crippled SCO Group's site&lt;/a&gt;, forcing the company to move to an alternate site. A second variant launched a DDOS attack on Microsoft's site, but that &lt;a title="Microsoft shrugs off MyDoom attack -- Tuesday, Feb 3, 2004" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/Microsoft-shrugs-off-MyDoom-attack/2100-7349_3-5152702.html"&gt;had little impact&lt;/a&gt;. SCO Group and Microsoft both offered $250,000 rewards for information leading to the arrest of the creators of the variant targeting their site. (Microsoft is also &lt;a href="http://news.cnet.com/microsoft-offers-$250000-reward-for-conficker-arrest/"&gt;offering a $250,000 reward in the Conficker case&lt;/a&gt;.) &lt;/p&gt;&lt;p&gt; &lt;b&gt;Kama Sutra&lt;/b&gt;&lt;br /&gt;The Kama Sutra worm, also called Nyxem, spread via e-mail and infected Windows PCs when the e-mail, typically sexually suggestive, was opened. It was programmed to delete files on infected machines on February 3, 2006, but &lt;a title="Kama Sutra worm threat shrivels -- Friday, Feb 3, 2006" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/Kama-Sutra-worm-threat-shrivels/2100-7349_3-6034706.html"&gt;failed to do much damage&lt;/a&gt;. &lt;/p&gt;&lt;p&gt; &lt;b&gt;Sober&lt;/b&gt;&lt;br /&gt;A variant of the Sober Windows worm that began circulating in November 2005 was set to activate on January 5 or 6, 2006, possibly dated to coincide with the 87th anniversary of the founding of the Nazi party. It had the potential to download malicious code onto infected computers and launch a new wave of viruses, but &lt;a title="All quiet on the Sober front -- Friday, Jan 6, 2006" context="com.caucho.jsp.PageContextImpl@6e96c23d" href="http://news.cnet.com/All-quiet-on-the-Sober-front/2100-7349_3-6021988.html"&gt;was unsuccessful&lt;/a&gt;.  &lt;/p&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-1725573004081223551?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/1725573004081223551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/viruses-with-trigger-dates.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1725573004081223551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1725573004081223551'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/04/viruses-with-trigger-dates.html' title='Viruses with trigger dates'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2121801056825325371</id><published>2009-03-30T19:09:00.000-05:00</published><updated>2009-03-30T19:10:46.018-05:00</updated><title type='text'>Homeland Security Keeps Tabs On Conficker Worm</title><content type='html'>&lt;div class="storyDekFull" style="background-color: white; margin-left: 0px;"&gt; The agency's US-CERT team created worm-scanning software for federal and state government agencies, commercial vendors, and critical infrastructure owners. &lt;/div&gt;   &lt;!-- / teaser (dek) copy --&gt;                    &lt;span class="byLine" style="margin-left: 2px;"&gt;               By                                                               &lt;a href="mailto:tclaburn@techweb.com"&gt;&lt;u&gt;Thomas                                                Claburn&lt;/u&gt;&lt;/a&gt;                                                                                &lt;br /&gt;                &lt;span id="courtesyOf" style="margin-left: 2px;"&gt;                                                                                                        &lt;!-- remove http:// substring (if present) from the url --&gt;                                                                                                               &lt;a href="http://www.informationweek.com/;jsessionid=TMUE4XP4A2CPCQSNDLPCKH0CJUNN2JVN" target="_blank"&gt;                 InformationWeek                 &lt;/a&gt;                                                          &lt;/span&gt;                     &lt;/span&gt;&lt;br /&gt;     &lt;span class="storyDate" style="margin-left: 2px; line-height: 20px;"&gt;  &lt;nobr&gt;   March 30, 2009 07:45 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             &lt;/nobr&gt; &lt;/span&gt;   &lt;br /&gt;  &lt;!--body--&gt;      &lt;p&gt;     &lt;img src="http://i.cmpnet.com/infoweek/graphics_library/110x110/85182_eye2.jpg" align="right" border="0" hspace="5" vspace="5" /&gt;     &lt;span id="articleBody"&gt; &lt;div class="IntelliTXT"&gt;                                          As &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=computer&amp;amp;x=&amp;amp;y="&gt;computer&lt;/a&gt; security firms play down the risk posed by the Conficker/Downadup worm, the Department of Homeland Security on Monday released &lt;a href="http://www.dhs.gov/ynews/releases/pr_1238443907751.shtm"&gt;a DHS-developed detection tool&lt;/a&gt; to help organizations scan for computers infected by the worm. &lt;p&gt; The DHS &lt;a href="http://www.us-cert.gov/current/index.html#conficker_worm_information"&gt;US-CERT&lt;/a&gt; team created worm-scanning &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=software&amp;amp;x=&amp;amp;y="&gt;software&lt;/a&gt; for federal and state government agencies, commercial vendors, and critical &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=infrastructure&amp;amp;x=&amp;amp;y="&gt;infrastructure&lt;/a&gt; owners. It's being made available through the Government &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=Forum&amp;amp;x=&amp;amp;y="&gt;Forum&lt;/a&gt; of Incident Response and Security Teams &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=Portal&amp;amp;x=&amp;amp;y="&gt;Portal&lt;/a&gt; and to private-sector partners through various Information Sharing and Analysis Centers. &lt;/p&gt;&lt;p&gt;     &lt;/p&gt;&lt;div id="more_security_insights" style="padding-right: 15px;"&gt;  &lt;!-- DIGG BUTTON REMOVED &lt;center&gt; &lt;script type="text/javascript"&gt; digg_url = document.location + "&amp;cid=digg-submit"; digg_window = 'new'; &lt;/script&gt; &lt;script src="http://digg.com/tools/diggthis.js" type="text/javascript"&gt;&lt;/script&gt; &lt;/center&gt;&lt;br /&gt;--&gt;   &lt;h3&gt;More Security Insights&lt;/h3&gt;                             &lt;h4&gt;White Papers&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.informationweek.com/whitepaper/Security/Attacks-Breaches/the-web-hacking-incidents-database-2008-annual-r-wp1238014656684;jsessionid=TMUE4XP4A2CPCQSNDLPCKH0CJUNN2JVN?articleID=68900003&amp;amp;cid=well1_wp_sec"&gt;The Web Hacking Incidents Database 2008: Annual Report &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.informationweek.com/whitepaper/Security/End-User-Client-Security/when-less-is-more-why-small-companies-should-thi-wp1237302559395;jsessionid=TMUE4XP4A2CPCQSNDLPCKH0CJUNN2JVN?articleID=67600003&amp;amp;cid=well1_wp_sec"&gt;When Less is More: Why Small Companies Should Think Outside the (Red/Yellow) Box for Protecting Endpoints&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;                                            &lt;h4&gt;Webcasts&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.techwebonlineevents.com/ars/eventregistration.do?mode=eventreg&amp;amp;F=1001454&amp;amp;K=ON24&amp;amp;cid=well2_webc_sec" target="_new"&gt;Why Bad Security Breaches Keep Happening To Good Organizations&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.techwebonlineevents.com/ars/eventregistration.do?mode=eventreg&amp;amp;F=1001412&amp;amp;K=&amp;amp;K=4ON&amp;amp;cid=well2_webc_sec" target="_new"&gt;Best Practices for Database Security &amp;amp; Compliance&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;                                                                                                                                                                                    &lt;script language="JavaScript"&gt;     function showDesc(img){    //alert("img:"+img.alt);    //alert("length:"+img.alt.length)    //alert("extra:"+img.elementAt(img.alt.length));       var element =  document.getElementById("videoBoxDisplayAreaText");        element.innerHTML=img.alt;     } &lt;/script&gt;                                                              &lt;!--&lt;div id="videoBoxOuter"&gt;--&gt;    &lt;!--&lt;div id="videoBox"&gt;--&gt;    &lt;!--  &lt;div id="videoBoxTitle"&gt;--&gt;      &lt;h4&gt;Videos&lt;/h4&gt;&lt;br /&gt;    &lt;!-- &lt;/div&gt;--&gt;   &lt;div id="videoBoxDisplayArea"&gt;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                       &lt;!--&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                        &lt;!--&lt;valueof param="randomInt11"&gt;&lt;br /&gt;--&gt;          &lt;!--&lt;valueof param="randomInt11"&gt;&lt;br /&gt;--&gt;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             &lt;!--  index:&lt;valueof param="index"&gt;&lt;br /&gt;--&gt;                                                                                                                                                                                                                                                                                                                                                                                                                               &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                                                                                                                                                                               &lt;!-- foreach droplet--&gt;                                            &lt;a href="http://www.informationweek.com/video/security/6545571001"&gt;&lt;img src="http://brightcove.vo.llnwd.net/d5/unsecured/media/1568176135/1568176135_6549351001_IW-Sailpoint-Thumb.jpg?pubId=1568176135" alt="InformationWeek's John Foley speaks with SailPoint Technology's CEO and Founder, Mark McClain. According to McClain, SailPoint Technologies is a company that provides user access and control software, helping provide security from internal threats." onmouseover="javascript:showDesc(this);" border="0" /&gt;&lt;/a&gt;            &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                                                                                                                                                                               &lt;!-- foreach droplet--&gt;                                            &lt;a href="http://www.informationweek.com/video/security/1782590548"&gt;&lt;img src="http://brightcove.vo.llnwd.net/d6/unsecured/media/1568176135/1568176135_1784538990_SymantecFinal-T-87d3a01e9566cf5340ed48709af07f09facd15f3.jpg?pubId=1568176135" alt="Confidential information is everywhere, so it must be protected" onmouseover="javascript:showDesc(this);" border="0" /&gt;&lt;/a&gt;            &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                                                                                                                                                                                                                                                                        &lt;!-- foreach droplet--&gt;                                            &lt;a href="http://www.informationweek.com/video/infrastructure/1678225987"&gt;&lt;img src="http://brightcove.vo.llnwd.net/d6/unsecured/media/1568176135/1568176135_1678253635_soleraFinal.jpg?pubId=1568176135" alt="Instead of spending money on more security infrastructure for your virtual environment, Solera's V2P Tap promises to regenerate the virtual traffic to your existing security infrastructure, thereby protecting your investment." onmouseover="javascript:showDesc(this);" border="0" /&gt;&lt;/a&gt;            &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                   &lt;!--randomInt1:--:&lt;valueof bean="TempVar.randomNumber1"&gt;&lt;br /&gt;--&gt;                                                 &lt;!--&lt;valueof param="index"&gt;--&gt;                        &lt;!--&lt;valueof param="index1"&gt;--&gt;                                             &lt;div id="videoBoxDisplayAreaText"&gt;Instead of spending money on more security infrastructure for your virtual environment, Solera's V2P Tap promises to regenerate the virtual traffic to your existing security infrastructure, thereby protecting your investment.&lt;/div&gt; &lt;!--&lt;valueof bean="TempVar.videoDesc"&gt;--&gt; &lt;/div&gt; &lt;!--&lt;/div&gt;--&gt; &lt;!--&lt;/div&gt;--&gt;             &lt;/div&gt;     DHS expects to continue its outreach efforts in the days to come. &lt;p&gt; US-CERT director Mischel Kwon said in a statement that while other worm-mitigation tools are available, this is the only free tool available for enterprises like government agencies. &lt;/p&gt;&lt;p&gt; "Our experts at US-CERT are working around the &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=clock&amp;amp;x=&amp;amp;y="&gt;clock&lt;/a&gt; to increase our capabilities to address the cyber risk to our nation's critical networks and systems, both from this threat and all others," he said. &lt;/p&gt;&lt;p&gt; Last week, Luis Corrons, director of &lt;a href="http://www.pandasecurity.com/"&gt;PandaLabs&lt;/a&gt;, urged Internet users not to panic, as did representatives from other security companies, many of which offer worm-mitigation tools for consumers. &lt;/p&gt;&lt;p&gt; But some may panic anyway and a &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=malware&amp;amp;x=&amp;amp;y="&gt;malware&lt;/a&gt; group is ready to take their money. F-Secure &lt;a href="http://www.f-secure.com/weblog/archives/00001639.html"&gt;reports&lt;/a&gt; that the domain remove-conficker.org was registered on Monday to sell fake security software. &lt;/p&gt;&lt;p&gt; The Conficker/Downadup &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=worm&amp;amp;x=&amp;amp;y="&gt;worm&lt;/a&gt; attempts to exploit a Microsoft (NSDQ: &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=MSFT" class="stockLink"&gt;MSFT&lt;/a&gt;) Windows vulnerability that was patched (MS08-067) last October. Since then, it has been updated several times. Now in its fourth iteration, it has developed multiple avenues of infection, including USB devices. It also uses a variety of sophisticated techniques to evade detection and to maintain its command-and-control channel, including a pseudo-random &lt;a href="http://www.techweb.com/encyclopedia/defineterm.jhtml?term=algorithm&amp;amp;x=&amp;amp;y="&gt;algorithm&lt;/a&gt; for generating the domains it uses to receive commands. &lt;/p&gt;&lt;p&gt; The worm is supposed to get a code update on April 1 that may make it harder to disrupt. Infected machines previously polled 250 domains daily to see whether to execute new commands. Security researchers who have analyzed the worm's code believe that on Wednesday infected machines will start scanning 500 out of 50,000 domains for update information. &lt;/p&gt;&lt;p&gt; It's not clear whether this will cause the botnet created by the worm to take action. Until now, the botnet has been dormant. &lt;/p&gt;&lt;p&gt; Somewhere between 1 million and 2 million computers are actively infected, according to &lt;a href="http://www.f-secure.com/"&gt;F-Secure&lt;/a&gt;. At the worm's peak, almost 9 million computers were infected. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;i&gt;2009 marks the 12th year that InformationWeek will be monitoring changes in security practices through our annual research survey. &lt;a href="http://informationweek.2009strategicsecurity.sgizmo.com/"&gt;Find out more&lt;/a&gt;, and take part.&lt;br /&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-------------&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Jeff&lt;br /&gt;&lt;/p&gt;&lt;/div&gt; &lt;/span&gt;                                 &lt;/p&gt;&lt;p&gt;   &lt;/p&gt;&lt;center&gt;&lt;span class="autoPagebreak"&gt;                                                         &lt;/span&gt;&lt;/center&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2121801056825325371?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2121801056825325371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/homeland-security-keeps-tabs-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2121801056825325371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2121801056825325371'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/homeland-security-keeps-tabs-on.html' title='Homeland Security Keeps Tabs On Conficker Worm'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2930158903008026539</id><published>2009-03-29T19:18:00.000-05:00</published><updated>2009-03-29T19:20:01.283-05:00</updated><title type='text'>Cyber-Spy Network Is Uncovered</title><content type='html'>&lt;h3 class="byline"&gt;By &lt;a href="http://online.wsj.com/search/search_center.html?KEYWORDS=BEN+WORTHEN&amp;amp;ARTICLESEARCHQUERY_PARSER=bylineAND"&gt;BEN WORTHEN&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;Security researchers said they have discovered software capable of stealing information installed on computers in 103 countries, an apparently coordinated cyberattack that targeted the office of the Dalai Lama and government agencies around the world.&lt;/p&gt; &lt;p&gt;The software infected more than 1,200 computers in all, almost 30% of which are considered high-value targets, according to a report published Sunday by Information Warfare Monitor, a Toronto-based organization. Among the affected computers were those in embassies belonging to Germany, India, Romania, and Thailand, and in the ministries of foreign affairs for Barbados, Iran and Latvia.&lt;/p&gt; &lt;p&gt;The researchers said the infected computers acted as a kind of illicit information-gathering network. Researchers said they observed sensitive documents being stolen from a computer network operated by the Dalai Lama's organization, and traced the attacks to computers located in China. The report doesn't suggest who was behind the attack.&lt;/p&gt; &lt;p&gt;A separate report by researchers at Cambridge University, also published Sunday, alleges that the Chinese government or a group working closely with it is responsible for the attack on the computer in the office of the Dalai Lama.&lt;/p&gt; &lt;p&gt;Media officials at China's Ministry of Foreign Affairs and State Council Information Office declined requests for comment Sunday. The Chinese government has repeatedly denied past allegations that it sponsors cyberattacks.&lt;/p&gt; &lt;p&gt;The New York Times published an article about the reports on its Web site Saturday.&lt;/p&gt; &lt;p&gt;The apparent attacks are the latest in a series of incidents that suggest cyber-espionage is on the rise. Last year, Kevin Chilton, commander of the U.S. Strategic Command, said military computer networks are increasingly coming under attack from hackers trying to steal information, many of whom appear to have ties to China. The U.S. government has also said that military contractors have been victims of these attacks.&lt;/p&gt; &lt;p&gt;In trying to tap into government computers, attackers have been stepping up the use of sabotaged programs, sometimes called "malware." The technique is essentially the same as that used by criminals who try to break into people's home PCs to steal credit cards or other information.&lt;/p&gt; &lt;p&gt;A victim is tricked into opening an infected file attached to an email or downloading a file from a Web site. Criminals have managed to gain control over millions of computers by sending files pretending to be racy pictures of celebrities or winning lottery tickets.&lt;/p&gt; &lt;p&gt;In an espionage attack, the messages are much more targeted, says Shishir Nagaraja, one of the authors of the Cambridge study who investigated the attack on the office of the Dalai Lama. The emails appear to come from someone the recipient knows and may contain a file that recipient has been expecting.&lt;/p&gt; &lt;p&gt;"Who wouldn't open that?" says Mr. Nagaraja. The attacks "depend less on technical measures and more on abusing trust."&lt;/p&gt; &lt;p&gt;In the attacks tracked by the Canadian researchers, the installed software provided near-complete control over the victims' computers. The attackers could search for and steal sensitive files, capture passwords to Web sites, and even activate a computer's Web camera if they desired. The victims were usually unaware that someone else could control their computers.&lt;/p&gt; &lt;p&gt;Mr. Nagaraja stresses that businesses are also at risk. While the incidents uncovered by the researchers dealt mainly with government organizations, corporations could hire hackers to steal information from rivals using similar techniques.&lt;/p&gt; &lt;p&gt;Indeed, there is a precedent for such incidents. In May 2005, Michael and Ruth Haephrati were arrested and later pleaded guilty to stealing secrets from dozens of businesses in Israel by crafting fake business proposals that really contained malicious software.&lt;/p&gt; &lt;p&gt;The Haephratis would call their targets on the phone to make sure they had opened the infected files.&lt;/p&gt; &lt;p&gt;Targeted attacks are on the rise. Researchers at MessageLabs, a division of Symantec Corp., only detected about one or two targeted attacks per week in 2005. In 2008, the researchers detected 53 of these attacks a day.&lt;/p&gt; &lt;p&gt;The Canadian researchers are based at the Munk Centre for International Studies at the University of Toronto.&lt;/p&gt; &lt;cite class="tagline"&gt;—Jason Dean contributed to this article.&lt;/cite&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2930158903008026539?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2930158903008026539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/cyber-spy-network-is-uncovered.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2930158903008026539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2930158903008026539'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/cyber-spy-network-is-uncovered.html' title='Cyber-Spy Network Is Uncovered'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8311636152108460157</id><published>2009-03-29T17:55:00.001-05:00</published><updated>2009-03-29T17:59:10.357-05:00</updated><title type='text'>Worldwide Computer Worm Conficker May Strike Your Computer This Week</title><content type='html'>&lt;table style="width: 940px; height: 583px;" border="0" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width="600"&gt;&lt;div class="article-bodytext"&gt;&lt;div id="article_text"&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;This &lt;span style="font-weight: bold;"&gt;April 1st&lt;/span&gt; may be no joke.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;A potentially dangerous &lt;a itxtdid="8383888" target="_blank" href="http://www.digtriad.com/news/national_world/article.aspx?storyid=121626&amp;amp;catid=175#" style="border-bottom: 0.075em solid darkgreen ! important; font-weight: normal ! important; font-size: 100% ! important; text-decoration: underline ! important; padding-bottom: 1px ! important; color: darkgreen ! important; background-color: transparent ! important;" classname="iAs" class="iAs"&gt;Internet Worm&lt;/a&gt;, called CONFICKER, may erupt on as many as three million computers worldwide.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;This WORM already resides and lies dormant on infected PCs.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;If CONFICKER is on your computer now, you would not know it unless your &lt;a itxtdid="8384025" target="_blank" href="http://www.digtriad.com/news/national_world/article.aspx?storyid=121626&amp;amp;catid=175#" style="border-bottom: 0.075em solid darkgreen ! important; font-weight: normal ! important; font-size: 100% ! important; text-decoration: underline ! important; padding-bottom: 1px ! important; color: darkgreen ! important; background-color: transparent ! important;" classname="iAs" class="iAs"&gt;virus protection&lt;/a&gt; program detects it.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;On April 1st, the WORM will activate, go onto the internet and possibly download a more danger version of itself. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;Millions of computers in tandem may attack some internet target. Or perhaps it will steal personal information from your &lt;a itxtdid="8383844" target="_blank" href="http://www.digtriad.com/news/national_world/article.aspx?storyid=121626&amp;amp;catid=175#" style="border-bottom: 0.075em solid darkgreen ! important; font-weight: normal ! important; font-size: 100% ! important; text-decoration: underline ! important; padding-bottom: 1px ! important; color: darkgreen ! important; background-color: transparent ! important;" classname="iAs" class="iAs"&gt;computer&lt;/a&gt; and transmit it across the internet.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;We here at WFMY have answers on how to protect your computer and your personal information.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;If you clean the WORM off your computer before April 1st, the date it mutates into a more dangerous version, it is fairly easy and safe to remove the worm.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;Visit the Microsoft site, Microsoft.com, to download a free program which will kill this worm if it's on your system.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;Perhaps this is just an April Fool's hoax. Microsoft doesn't think so.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;And even if it is a joke. Why not use the next two days to run your virus protection programs to make sure your computer and personal information are not at risk.&lt;/span&gt; &lt;/p&gt; microsoft.com  &lt;div style="margin-top: 5px; margin-bottom: 10px;"&gt; &lt;strong&gt;&lt;a style="color: rgb(175, 56, 20);" target="_blank" href="http://twitter.com/digtriad"&gt;Follow digtriad on Twitter...&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Protect yourself.&lt;br /&gt;&lt;/strong&gt; &lt;/div&gt;  &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div id="pluckcomments" class="voice"&gt; &lt;!-- CODE FOR HIDING AND SHOWING COMMENTS --&gt; &lt;div style="display: none;" id="showlink"&gt;&lt;a href="javascript:showstuff()"&gt;Show Comments&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="verticalrule" width="1"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td width="339"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;script language="JavaScript" src="http://www.digtriad.com/includes/omniture/s_site_specific_code.js"&gt;&lt;/script&gt;&lt;script language="JavaScript"&gt;&lt;!-- var s_code=s.t();if(s_code)document.write(s_code)//--&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript" src="http://content.gannettonline.com/global/scripts/revsci.js"&gt;&lt;/script&gt;&lt;script type="text/javascript" src="http://js.revsci.net/gateway/gw.js?csid=J06575" charset="ISO-8859-1"&gt;&lt;/script&gt;&lt;script type="text/javascript" src="http://pix04.revsci.net/J06575/a4/0/0/pcx.js?csid=J06575&amp;amp;ko=2009_3_29__0" charset="ISO-8859-1"&gt;&lt;/script&gt;&lt;script type="text/javascript" src="http://ads.revsci.net/adserver/ako?activate&amp;amp;csid=J06575&amp;amp;ko=2009_3_29__0" charset="ISO-8859-1"&gt;&lt;/script&gt;&lt;script language="JavaScript"&gt; &lt;!--  var now = new Date();  var gciYear = now.getYear();  DM_addToLoc("zipcode", escape(s.prop30));  DM_addToLoc("age", escape((gciYear-s.prop31)));  DM_addToLoc("gender", escape(s.prop32));  DM_cat("broadcast &gt; " + escape(s.prop6) + " &gt; "  +  escape(s.prop7) );  DM_tag();   // sets the RevSci cookie in GCION domain if (rsinetsegs.length &gt; 0) {   if (!RevSci.HasSegmentCookie())   {     RevSci.Rpc.Send(RevSci.RequestUrl(rsinetsegs));     RevSci.Cookie.Set(revsci_Cookie, true);   } }  //--&gt; &lt;/script&gt;&lt;!-- start Vibrant Media IntelliTXT script section --&gt;&lt;script type="text/javascript" src="http://gannettbroadcast.us.intellitxt.com/intellitxt/front.asp?ipid=13548"&gt;&lt;/script&gt;           &lt;!-- end Vibrant Media IntelliTXT script section --&gt; &lt;form target="frame_0" method="get" action="http://sitelife.digtriad.com/ver1.0/Direct/Process" id="f0" name="f0" charset="UTF-8"&gt;&lt;input value="{&amp;quot;UniqueId&amp;quot;:0,&amp;quot;Requests&amp;quot;:[{&amp;quot;ArticleKey&amp;quot;:{&amp;quot;Key&amp;quot;:&amp;quot;20090329.wfmy.121626.article&amp;quot;}},{&amp;quot;ArticleKey&amp;quot;:{&amp;quot;Key&amp;quot;:&amp;quot;20090329.wfmy.121617.article&amp;quot;}},{&amp;quot;ArticleKey&amp;quot;:{&amp;quot;Key&amp;quot;:&amp;quot;20090329.wfmy.121612.article&amp;quot;}},{&amp;quot;ArticleKey&amp;quot;:{&amp;quot;Key&amp;quot;:&amp;quot;20090329.wfmy.121611.article&amp;quot;}},{&amp;quot;ArticleKey&amp;quot;:{&amp;quot;Key&amp;quot;:&amp;quot;20090328.wfmy.121606.article&amp;quot;}}]}" name="jsonRequest" type="hidden"&gt;&lt;input value="sitelife.digtriad.com" name="sid" type="hidden"&gt;&lt;/form&gt;&lt;div style="margin: 0pt; padding: 0pt; overflow: hidden; width: 0pt; height: 0pt; visibility: hidden;"&gt;&lt;iframe id="frame_0" name="frame_0"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;span itt_tkw="0" itt_type="0" itt_state="0" itt_kwe="0" style="border: medium none ; background: transparent none repeat scroll 0% 50%; z-index: 2147483646; display: block; position: absolute; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; text-align: left; width: 312px; height: auto; left: 362px; top: 469px; visibility: visible;" id="iTt"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8311636152108460157?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8311636152108460157/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/worldwide-computer-worm-conficker-may.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8311636152108460157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8311636152108460157'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/worldwide-computer-worm-conficker-may.html' title='Worldwide Computer Worm Conficker May Strike Your Computer This Week'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-3295296911400189025</id><published>2009-03-28T20:27:00.004-05:00</published><updated>2009-03-28T20:44:50.796-05:00</updated><title type='text'>Buying a house</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_qq900Gzpovs/Sc7SYc1t4lI/AAAAAAAAABI/xSfNU1q5360/s1600-h/stonewall.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 270px; height: 320px;" src="http://3.bp.blogspot.com/_qq900Gzpovs/Sc7SYc1t4lI/AAAAAAAAABI/xSfNU1q5360/s320/stonewall.JPG" alt="" id="BLOGGER_PHOTO_ID_5318419527471325778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So my lady and I decided about May of 2007 that after we move into our apartment we would look into getting a house. Well a year has almost gone buy and it is time to make a decision. We Did! We have been looking at houses for the longest time and found a Realtor Joann who is just the best!  A one day trip her and we found the perfect house. a Brand New D.R. Horton home in Converse, Tx. 2500sqft, 4 bedrooms, a Game Room/Media Room, 2 car garage, big walk-in closets, Big backyard, French doors, to many to add. This is a big step forward in our lives and hope for all the best. We should be able to close June 30th, 2009. It is good especially now to be a first time home buyer. Incentives are Great! Above is the floor plan. Wish us luck!&lt;br /&gt;&lt;br /&gt;Jeff -&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="file:///C:/WINDOWS/Temp/moz-screenshot.jpg" alt="" /&gt;&lt;img src="file:///C:/WINDOWS/Temp/moz-screenshot-1.jpg" alt="" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-3295296911400189025?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/3295296911400189025/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/buying-house.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3295296911400189025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3295296911400189025'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/buying-house.html' title='Buying a house'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_qq900Gzpovs/Sc7SYc1t4lI/AAAAAAAAABI/xSfNU1q5360/s72-c/stonewall.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-7415660268409670073</id><published>2009-03-20T21:26:00.002-05:00</published><updated>2009-03-20T21:31:51.196-05:00</updated><title type='text'>YAMMER</title><content type='html'>Yammer is a tool for making companies and organizations more productive through the exchange of short frequent answers to one simple question: "What are you working on?"&lt;br /&gt;&lt;br /&gt;As employees answer that question, a feed is created in one central location enabling co-workers to discuss ideas, post news, ask questions, and share links and other information. Yammer also serves as a company directory in which every employee has a profile and as a knowledge base where past conversations can be easily accessed and referenced.&lt;br /&gt;&lt;br /&gt;Anyone in a company can start their Yammer network and begin inviting colleagues. The privacy of each network is ensured by limiting access to those with a valid company email address. The basic Yammer service is free. Companies can pay to claim and administer their network&lt;br /&gt;&lt;br /&gt;&lt;embed flashvars="autoplay=false" allowfullscreen="true" allowscriptaccess="always" src="http://www.ustream.tv/flash/video/698282" type="application/x-shockwave-flash" height="320" width="400"&gt;&lt;/embed&gt;&lt;a href="http://www.ustream.tv/live" style="padding: 2px 0px 4px; background: rgb(255, 255, 255) none repeat scroll 0% 50%; width: 400px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; display: block; color: rgb(0, 0, 0); font-weight: normal; font-size: 10px; text-decoration: underline; text-align: center;" target="_blank"&gt;Live TV : Ustream&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-7415660268409670073?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/7415660268409670073/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/yammer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7415660268409670073'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7415660268409670073'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/yammer.html' title='YAMMER'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-5427976922683013737</id><published>2009-03-08T20:47:00.000-05:00</published><updated>2009-03-08T20:48:39.533-05:00</updated><title type='text'>IT Pro Gets Four Years for Building Botnets</title><content type='html'>&lt;p&gt;Robert McMillan, IDG News Service&lt;/p&gt;                   &lt;div id="articleText"&gt;      &lt;div class="date"&gt;Thursday, March 05, 2009 5:40 PM PST&lt;/div&gt;    &lt;div class="articleBodyContent"&gt; &lt;p&gt;An employee of search engine startup &lt;a href="http://www.mahalo.com/" target="_blank"&gt;Mahalo&lt;/a&gt; has been sentenced to four years in prison for infecting as many as 250,000 computers with malicious botnet computer code.&lt;/p&gt;&lt;p&gt;John Schiefer was sentenced Wednesday in federal court after previously pleading guilty to hacking, fraud and wiretapping charges. He was arrested in 2007 as part of a large U.S. Federal Bureau of Investigation enforcement action against botnet makers, called &lt;a href="http://www.fbi.gov/pressrel/pressrel07/botroast112907.htm" target="_blank"&gt;Operation Bot Roast II&lt;/a&gt;.  &lt;/p&gt;&lt;p&gt;The case marks the first time that someone has been charged with operating a botnet under federal wiretapping laws. Schiefer could have been sentenced to as much as five years in prison on the charges.&lt;/p&gt;&lt;p&gt;When they hired him, Mahalo executives didn't know about his criminal activities. In a &lt;a href="http://calacanis.com/2009/03/05/why-i-employed-a-felon/" target="_blank"&gt;blog posting,&lt;/a&gt; Mahalo founder Jason Calacanis said company CTO Mark Jeffrey had "screwed up by not doing a simple Google search on John's name," but he stood by his employee, saying there is a fine line between hackers "who put one foot over the line" and commit minor indiscretions, and others like Schiefer, who "race past it."&lt;/p&gt;&lt;p&gt;"I consider myself a fairly decent judge of character, and after spending months with John, I'm convinced he was an angry stupid kid when he launched his botnet attack (which did .000000001% of the damage it could have)," Calacanis wrote. "Now he's an adult who just wants to make a decent living, spend time with his significant other and breathe the clean air off the Pacific Ocean by our offices in Santa Monica."&lt;/p&gt;&lt;p&gt;"When he comes out, I hope to be able to offer him a job and that we can work together again," Calacanis said.&lt;/p&gt;&lt;p&gt;Schiefer built his botnet army while a consultant at 3G Communications, a small Los Angeles telecommunications company. The network, built with the help of two accomplices, was used to snoop in on Internet traffic between victims' computers and financial institutions such as PayPal, prosecutors said. Schiefer would then make purchases or simply drain his victims' bank accounts. &lt;/p&gt;&lt;p&gt;He used several partners in the scheme -- some of them minors whom he "bullied ... into participating in the crimes," prosecutors said in the suit, filed in the U.S. District Court for the Central District of California. &lt;/p&gt;&lt;p&gt;When a minor named Adam expressed reservations about claiming stolen money from PayPal, Schiefer told Adam to "quit being a bitch and claim it," the filing states.&lt;/p&gt;&lt;p&gt;Online, Schiefer was known as Acidstorm. His MSN Messenger handle also included the tagline, "Remember the name or feel the pain."&lt;/p&gt;&lt;p&gt;In another scam, a Dutch online marketing company called Simpel Internet paid him more than US$19,000 for installing the company's &lt;a href="http://allentech.net/parasite/TopConverting.html" target="_blank"&gt;TopConverting&lt;/a&gt; adware on PCs, which he did without the consent of his victims. As part of his plea agreement, Schiefer will pay $20,000 in restitution to Simpel Internet and the financial institutions he defrauded.&lt;/p&gt;&lt;p&gt;He also used the botnet to launch distributed denial of service (DDOS) attacks, and in an interview with the FBI he claimed to have knocked the Los Angeles Times' Web site offline, prosecutors said.&lt;/p&gt;&lt;p&gt;According to an FBI affidavit filed in the case, Schiefer also accessed computers at an unnamed 3G Communications client without authorization. &lt;/p&gt;&lt;p&gt;Schiefer seemed happy with the money he was making from his scams. According to evidence entered into court, another one of his instant messaging signatures read: "Crime pays, and it also has an excellent benefits package."&lt;/p&gt;&lt;p&gt;Schiefer hopes to seek future employment in the information security field, prosecutors said.&lt;/p&gt;&lt;/div&gt;     &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-5427976922683013737?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/5427976922683013737/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/it-pro-gets-four-years-for-building.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5427976922683013737'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/5427976922683013737'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/03/it-pro-gets-four-years-for-building.html' title='IT Pro Gets Four Years for Building Botnets'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-7999691153381000762</id><published>2009-02-15T15:06:00.000-06:00</published><updated>2009-02-15T15:08:15.772-06:00</updated><title type='text'>Cyber Security Community Joins Forces to Defeat Conficker Worm</title><content type='html'>&lt;span style="font-size:85%;"&gt; &lt;div id="byline"&gt;By &lt;a href="http://projects.washingtonpost.com/staff/email/brian+krebs/" title="Send an e-mail to Brian Krebs"&gt;Brian Krebs&lt;/a&gt;&lt;/div&gt; washingtonpost.com Staff Wrtier&lt;br /&gt;Friday, February 13, 2009; 3:01 PM &lt;/span&gt;&lt;p&gt; &lt;/p&gt;  &lt;span id="aptureStartContent"&gt;&lt;/span&gt; &lt;p&gt; The quarter-million dollar award &lt;a href="http://voices.washingtonpost.com/securityfix/2009/02/microsoft_offers_250000_reward.html" target=""&gt;Microsoft is offering for information&lt;/a&gt; that leads to the arrest and conviction of those responsibile for unleashing the "Conficker" worm may represent the culmination of what security experts say has been an unprecedented and collaborative response from industry, academia and Internet policy groups aimed at not just containing the spread of this worm, but also in creating a playbook for dealing with future digital pandemics. &lt;/p&gt; &lt;div id="body_after_content_column"&gt; &lt;p&gt;Estimates of how many systems infected by Conficker, a contagion that has exploited Microsoft Windows PCs over the past few months, vary widely, from 2 million to more than 10 million machines. Microsoft estimates that at least 3 million PCs worldwide remain infected. Yet, PCs sickened by Conficker have not yet been observed in facilitaing the kind of illegal online activities typically spewed by computers infected with malicious software, such as sending spam or hosting scam Web sites. &lt;/p&gt; &lt;p&gt;Rather, security experts say the worm may be the first stage of a larger attack. By using a mathematical algorithm, Conficker can tell infected systems to regularly contact a list of 250 different domain names each day. If just one of those domains is registered by the virus writer, it could be used to download an as-yet unknown secondary component to all infected systems maliciously, such as malicious software. &lt;/p&gt; &lt;div id="inline-ad" style="margin-bottom: 4px; padding-right: 10px; float: left;"&gt;&lt;div&gt;&lt;img src="http://media3.washingtonpost.com/wp-srv/hp/img/ad_label_leftjust.gif" alt="ad_icon" border="0" height="13" width="100" /&gt;&lt;/div&gt;  &lt;script&gt; if ( show_doubleclick_ad &amp;&amp; ( adTemplate &amp; INLINE_ARTICLE_AD ) == INLINE_ARTICLE_AD &amp;&amp; inlineAdGraf ) { placeAd('ARTICLE',commercialNode,20,'inline=y;!category=microsoft;',true) ; } &lt;/script&gt;&lt;iframe marginwidth="0" marginheight="0" src="http://ad.doubleclick.net/adi/wpni.technology/special/08/inlinead;dir=08node;dir=technology;dir=special;dir=08;heavy=y;inline=y;%21category=microsoft;orbit=y;pos=ad20;del=js;fromrss=n;rss=n;poe=yes;page=article;front=n;pageId=wpni-wp-dyn-content-article-2009-02-13-AR2009021302080;articleId=AR2009021302080;wpid=technologyspecial08_ar2009021302080;%21c=intrusive;cn=yes;pnode=technology;ad=bb;sz=300x250;tile=3;ord=8284503624717998?" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt; &lt;script language="javascript"&gt; &lt;!-- if ( show_doubleclick_ad &amp;&amp; ( adTemplate &amp; INLINE_ARTICLE_AD ) == INLINE_ARTICLE_AD &amp;&amp; inlineAdGraf ) { document.write('&lt;/div&gt;') ; } // --&gt; &lt;/script&gt;&lt;/div&gt;&lt;p&gt;"This worm would be a marvelous tool in hands of whoever can control it, but the real harm from it has yet to be felt, and we're trying to postpone that day," said Paul Vixie, founder of Internet Systems Consortium, a Redwood City, Calif., company whose open-source software powers millions of Internet servers around the globe. &lt;/p&gt; &lt;p&gt;For several weeks after Conficker first surfaced in November, the anti-virus community began studying and publishing their research online. Individual security researchers were then able to begin registering the 250 domains sought daily by Conficker-infected systems to ensure those machines would not receive its intended instructions. At least one researcher told washingtonpost.com that he registered a number of the domains in the names of the FBI and Microsoft. &lt;/p&gt; &lt;p&gt;But, the FBI already was investigating individuals who were found to have recently registered domains sought by Conficker-infected systems, according to Bill Woodcock, research director of Packet Clearing House, a San Francisco based non-profit organization that provides support and training to companies that manage critical Internet infrastructure. &lt;/p&gt; &lt;p&gt; "There have been law enforcement folks trying to figure out who the holders of these domains are," Woodcock said. &lt;/p&gt; &lt;p&gt; Officials for the FBI did not return calls seeking comment. &lt;/p&gt; &lt;p&gt;Phillip Porras, director of the computer security lab at SRI International, also began tracking Conficker domains in late November. Porras and his team learned they could determine sets of domains sought by Conficker host systems in the past or the future, merely by rolling back or forward the system date setting on Microsoft Windows systems that they had purposesly infected in their test lab. &lt;/p&gt; &lt;p&gt;As Porras's group began building lists of domains sought by Conficker that had already been registered, they found hundreds that traced back to security researchers and anti-virus companies that were hoping to glean intelligence about the number of systems infected with the worm. &lt;/p&gt; &lt;p&gt;"We found that lots of people had registered these domains to try and gather size estimates and to better understand the worm," Porras said. "Early on, various folks were sharing this data privately, but nothing was really that coordinated." &lt;/p&gt; &lt;p&gt;Yet, as December rolled around and the number of machines infected by the worm swelled into the millions, a consensus began to emerge within the security research community that they needed a broader coordination effort.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt; That community had only weeks before learned the consequences of inaction in the face of another mounting threat. In late November 2008, the "Srizbi botnet," a massive collection of compromised Microsoft PCs that sent billions of spam e-mails each day, was knocked offline after Internet providers shuttered the Web servers that were being used to control and update the botnet's activities. &lt;/p&gt;  &lt;p&gt;Researchers knew that Srizbi had a built-in fallback mechanism similar to the updating capabilities in Conficker, a failsafe device that could resurrect the botnet by forcing infected systems to seek out a randomly generated set of four domains that changed every 72 hours. &lt;/p&gt; &lt;p&gt;For several weeks, FireEye, a private security company in Milpitas, Calif., took it upon itself to register each of the domains that Srizbi-infected systems were told to seek out in order to allow criminals to regain control over the wayward systems. But as the costs of registering those domains mounted, the company ceased reserving them. On Nov. 25, a day after FireEye quit registering the Web site names, unknown individuals took over that task, and the Srizbi botnet was back online and blasting out spam. &lt;/p&gt; &lt;p&gt;Woodcock said many in the security community, including the Internet Corporation for Assigned Names and Numbers (ICANN), which oversees the domain registration industry, were eager to avoid a repeat of the Srizbi fiasco.&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;div id="inline-ad" style="margin-bottom: 4px; padding-right: 10px; float: left;"&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;  &lt;script&gt; if ( show_doubleclick_ad &amp;&amp; ( adTemplate &amp; INLINE_ARTICLE_AD ) == INLINE_ARTICLE_AD &amp;&amp; inlineAdGraf ) { placeAd('ARTICLE',commercialNode,20,'inline=y;!category=microsoft;',true) ; } &lt;/script&gt;&lt;iframe marginwidth="0" marginheight="0" src="http://ad.doubleclick.net/adi/wpni.technology/special/08/inlinead;dir=08node;dir=technology;dir=special;dir=08;heavy=y;inline=y;%21category=microsoft;orbit=y;pos=ad20;del=js;fromrss=n;rss=n;poe=no;page=article;front=n;pageId=wpni-wp-dyn-content-article-2009-02-13-AR2009021302080_2;articleId=AR2009021302080;wpid=technologyspecial08_ar2009021302080_2;%21c=intrusive;cn=yes;pnode=technology;ad=bb;sz=300x250;tile=3;ord=906268736348522200?" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt; &lt;script language="javascript"&gt; &lt;!-- if ( show_doubleclick_ad &amp;&amp; ( adTemplate &amp; INLINE_ARTICLE_AD ) == INLINE_ARTICLE_AD &amp;&amp; inlineAdGraf ) { document.write('&lt;/div&gt;') ; } // --&gt; &lt;/script&gt;&lt;/div&gt;&lt;p&gt; "Nobody wanted to go through a big exercise to deal with the Conficker worm and not have a process in place to make it easier the next time this happens with a different worm," Woodcock said. &lt;/p&gt; &lt;p&gt;Still, coordinating a Conficker counterpunch would require some bending of the rules that govern domain name registrations, along with unprecedented level of cooperation from foreign governments. &lt;/p&gt; &lt;p&gt;For example, "top level domains" most sought after by Conficker-infested systems -- dot-com, dot-org and dot-net -- have explict contracts with ICANN that prohibit them from unilaterally reserving Web site names, even the seemingly gibberish domains that were known to be sought out by Conficker. &lt;/p&gt; &lt;p&gt;Also, some of the domains sought by Conficker would need to be registered through registrars controlled by soverign nations that are not beholden to ICANN, such as dot-ws (Western Samoa), and dot-cn (China). &lt;/p&gt; &lt;p&gt;Rodney Joffe, senior vice president of Sterling, Va., based Neustar Inc., which has an exclusive contract with ICANN to manage dot-biz and dot-us domain registrations, said ICANN recently took the unprecedented step of allowing registrars to set aside any domains sought by Conficker systems now or in the future. &lt;/p&gt; &lt;p&gt;Joffe said ICANN was instrumental in waving those restrictions for domestic registrars, but also in convincing the Chinese and other international registrars to agree to shelve the Conficker domains. &lt;/p&gt; &lt;p&gt;"People blame ICANN when anything having to do with domain names being used for abuse comes up," Joffe said. "But this is one of those interesting instances where ICANN has been very progressive in the kinds of help they've given the registry operators. There seems to be growing, global understanding that these kinds of things don't reflect well on anyone in the industry and actually cause damage to everyone." &lt;/p&gt; &lt;p&gt;For its part, ICANN will continue to work with the registry community to refine its policies on how to deal with future domain name-based threats, said Greg Rattray, chief Internet security advisor at ICANN. &lt;/p&gt; &lt;p&gt;"We agreed with the registries that we need to look at how to do this in a coordinated, coherent fashion that enables the community to respond in accordance with the contractual policy guidelines while at the same time being operationally effective and timely," Rattray said. "We hope this can become the model for more collaborative response in the face of future threats." &lt;/p&gt; &lt;p&gt;Rick Wesson, chief executive of Support Intelligence, a security firm in San Francisco, called the international effort to contain the worm "incredible." &lt;/p&gt; &lt;p&gt;"Here we have the Chinese cooperating with the Americans on a cyber threat when so much of the rhetoric [from the U.S. government] is about concerns around the cyber threat from China," said Wesson, who was also one of the researchers who began registering Conficker domains back in November. &lt;/p&gt; &lt;p&gt;But it's too soon for the community to declare victory, Wesson said. The next domain-based worm could significantly ratchet up the number of domains, and thereby sideline a large number of Web site names that might otherwise be commercially viable and sought after by legitimate Internet users. &lt;/p&gt; &lt;p&gt;"I think we're going to have successes and we're going to have failures, and this one clearly isn't a success until Microsoft has paid a quarter of million dollars and the individuals behind this worm are in jail," Wesson said. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-7999691153381000762?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/7999691153381000762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/02/cyber-security-community-joins-forces.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7999691153381000762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7999691153381000762'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/02/cyber-security-community-joins-forces.html' title='Cyber Security Community Joins Forces to Defeat Conficker Worm'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-8615796886192895707</id><published>2009-01-25T20:15:00.002-06:00</published><updated>2009-01-25T20:31:59.758-06:00</updated><title type='text'>SLICEHOST</title><content type='html'>I just bought what you would say a slice of &lt;a href="http://www.slicehost.com/"&gt;slicehost&lt;/a&gt;. They are a Virtual Server Provider for the linux peeps out there. I bought the 512 slice version and accidentally bought it with Ubuntu, which was not the distro that I wanted. There is a SliceCHAT available to the customers which is NICE. They were able to easily guide me to the slicehost manager and reload my virtual server with the distro of my choice. I thought that was SWEET!&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Virtual Private Servers.&lt;/h3&gt;    &lt;p&gt;Our &lt;span class="caps"&gt;VPS&lt;/span&gt; slices are the ultimate mix of price, performance and power. We use the revolutionary &lt;a href="http://www.xen.org/"&gt;Xen virtualization software&lt;/a&gt; to reserve memory and &lt;span class="caps"&gt;CPU&lt;/span&gt; slots, then employ a custom built backend to manage our slices.&lt;/p&gt;&lt;br /&gt;&lt;h4&gt;Why should you consider a Slicehost &lt;span class="caps"&gt;VPS&lt;/span&gt;?&lt;/h4&gt;    &lt;p&gt;A Slicehost &lt;span class="caps"&gt;VPS&lt;/span&gt; fills the huge performance gap between entry-level, shared hosting and expensive dedicated hosting. Our 256slice will smoke any shared package you can find in terms of performance and reliability. The 1024slice rivals a fully dedicated server, at a fraction of the price. And every Slice package gives you full root access, instant reboots, one of several Linux distributions and the ability to install whatever software you want.&lt;/p&gt;    &lt;h4&gt;Unrivaled Prices.&lt;/h4&gt;    &lt;p&gt;Go ahead and shop around. You’ll find that our &lt;span class="caps"&gt;VPS&lt;/span&gt; prices trounce the competition. How did we do it? We wrote our own software and run our &lt;span class="caps"&gt;NOC&lt;/span&gt; as efficiently as possible. Our management interface handles every situation, including instant reboots, distribution setups and software reinstalls. Our competitors? They have to buy expensive hardware or man-hours to accomplish the same tasks.&lt;/p&gt;&lt;br /&gt;&lt;h4&gt;A Slicehost &lt;span class="caps"&gt;VPS&lt;/span&gt; can…&lt;/h4&gt;    &lt;ul&gt;&lt;li&gt;Serve &lt;a href="http://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt; applications using Mongrel, Apache or Lighttpd&lt;/li&gt;&lt;li&gt;Host Python applications using the &lt;a href="http://www.djangoproject.com/"&gt;Django framework&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Run &lt;a href="http://mysql.com/"&gt;MySQL&lt;/a&gt; or &lt;a href="http://www.postgresql.org/"&gt;Postgres&lt;/a&gt; databases&lt;/li&gt;&lt;li&gt;Power a Java application server&lt;/li&gt;&lt;li&gt;Serve &lt;span class="caps"&gt;PHP&lt;/span&gt; apps lightning fast&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h3&gt;We’ll take care of you.&lt;/h3&gt;    &lt;p&gt;We take three things very seriously: customers, servers and networks. Our infrastructure was built from the ground up to satisfy intense demands: the best hardware, customized software, fast networks, a world class data center and redundancy galore. If something goes wrong, we’ll fix it fast, tell you what happened and make sure it doesn’t occur again. We answer to you.&lt;/p&gt;    &lt;p&gt;When you choose Slicehost, your servers become our servers.&lt;/p&gt;    &lt;h4&gt;Hardware.&lt;/h4&gt;    &lt;ul&gt;&lt;li&gt;Quad core, 64-bit machines (8+ ghz)&lt;/li&gt;&lt;li&gt;&lt;span class="caps"&gt;RAID&lt;/span&gt;-10 disk storage&lt;/li&gt;&lt;li&gt;Hard usage caps on &lt;span class="caps"&gt;VPS&lt;/span&gt; machines&lt;/li&gt;&lt;li&gt;Gigabit network backbone&lt;/li&gt;&lt;/ul&gt;    &lt;h4&gt;Facilities.&lt;/h4&gt;    &lt;ul&gt;&lt;li&gt;Cagespace in multiple facilities including a new $7-million dollar datacenter and Switch &amp;amp; Data datacenters&lt;/li&gt;&lt;li&gt;Redundant power, &lt;span class="caps"&gt;UPS&lt;/span&gt;, cooling and fiber&lt;/li&gt;&lt;li&gt;Biometric authentication, key card access and video surveillance&lt;/li&gt;&lt;li&gt;24×7 staffed &lt;span class="caps"&gt;NOC&lt;/span&gt; and customer support&lt;/li&gt;&lt;li&gt;24×7 custom monitoring tools with email/SMS timed escalations&lt;/li&gt;&lt;/ul&gt;    &lt;h3&gt;Our Story&lt;/h3&gt;    &lt;p&gt;We’ve been doing this for a while. Until recently, our services were focused on the managed hosting needs of the business world. We never considered opening our &lt;span class="caps"&gt;NOC&lt;/span&gt; and services to smaller markets or individuals. However, the explosive growth of hosted applications, web frameworks and open source software brought colleagues to us searching for solutions. There were plenty of fly-by-night operations that would take their money and cram them onto an oversold box, but they wanted more. So we built our own management system around a cutting edge virtualization project, expanded our &lt;span class="caps"&gt;NOC&lt;/span&gt; and opened the doors.&lt;/p&gt;    &lt;p&gt;Slicehost brings the experiences, high expectations and support demands of business hosting to the consumer market. We aim to please developers – people who know their stuff. People who write software, build servers and get things done. If you’re new to web applications and hosting in general, we’re probably not the best choice for you. If you want the cheapest price, go to any of the volume driven web hosts with outsourced support. But if you know what needs to be done and want a host who will help you get there, you’re in the right place.&lt;/p&gt;&lt;br /&gt;&lt;h4&gt;Our Customers&lt;/h4&gt;    Don’t take our word for it, &lt;a href="http://www.slicehost.com/why-slicehost/testimonials"&gt;take theirs&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Try THIS out and see what you think&lt;br /&gt;&lt;br /&gt;Jeff&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-8615796886192895707?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/8615796886192895707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/slicehost.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8615796886192895707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/8615796886192895707'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/slicehost.html' title='SLICEHOST'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-3467533648297582621</id><published>2009-01-17T16:28:00.002-06:00</published><updated>2009-01-17T16:46:13.009-06:00</updated><title type='text'>Saturday @ Work</title><content type='html'>For some reason, I am not feeling so well. I guess I was ok this morning waking up. Seems like the tables have turned. Feel very much so under the weather. Although it was good because I woke up and was able to spend a little time with my &lt;em&gt;fiance&lt;/em&gt;. She has moved to an overnighth schedule cause of someone not able to do there job. So Jillian is the one that steps in and takes charge. GO SWEETIE !&lt;br /&gt;&lt;br /&gt;Pilate's is no joke, looks easy and you do not need to spend much time working out, I beg to differ. I can speak on behalf of all guys out there that will not admit that they have tried Pilate's. IT HURTS.  LOL&lt;br /&gt;&lt;br /&gt;Tuesday is the&lt;a href="http://www.youtube.com/v/7eUnTTwrxmc&amp;amp;hl=en&amp;amp;fs=1&amp;amp;autoplay=1"&gt; inaugural  for President Elect Obama&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Happy Days To All, hoping to have a great Weekend.&lt;br /&gt;&lt;br /&gt;Jeff&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-3467533648297582621?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/3467533648297582621/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/saturday-work.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3467533648297582621'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3467533648297582621'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/saturday-work.html' title='Saturday @ Work'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-3756343147607241427</id><published>2009-01-17T05:31:00.000-06:00</published><updated>2009-01-17T05:37:46.178-06:00</updated><title type='text'>Cannot Sleep</title><content type='html'>It is about ...... 5:30a.m, just thinking alot about what I want and need to do in life. Not only do I want to better myself, but as well as other around me.&lt;br /&gt;&lt;br /&gt;LANS-TECH so far is coming in great, although I feel there is something else that we need to be doing.&lt;br /&gt;&lt;br /&gt;Mailtrust is a great company, I tell you, never had as much fun working there then anywhere else. Pat Matthews, Kevin and Bill, al have inspiring stories that one day I hope to have dreams that high. Click &lt;a href="http://www.mailtrust.com/about-us/leadership"&gt;here&lt;/a&gt; to read more on the founders of MAILTRUST.&lt;br /&gt;&lt;br /&gt;Always keeping my vision and eyes wide open to any and all possiblities. One day, I will make those dreams reality.&lt;br /&gt;&lt;br /&gt;I guess night for now.&lt;br /&gt;&lt;br /&gt;Jeff-&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-3756343147607241427?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/3756343147607241427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/cannot-sleep.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3756343147607241427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/3756343147607241427'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2009/01/cannot-sleep.html' title='Cannot Sleep'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-6506662703450076498</id><published>2008-12-21T13:44:00.000-06:00</published><updated>2008-12-21T13:45:00.075-06:00</updated><title type='text'>Linux's '09 Outlook: Everywhere, Even On Windows Machines(Google News)</title><content type='html'>&lt;span id="articleBody"&gt;&lt;p&gt;It sounded like a wild hook for a story, to put it mildly: In 2009, it is said, Linux will ship on more PCs than Windows. So I sat down with Jim Zemlin of the Linux Foundation to explain his reasoning behind such a statement. He did, and I learned about great many other forward-looking insights for Linux in '09, too.&lt;/p&gt; &lt;p&gt;"The &lt;em&gt;New York Times&lt;/em&gt; recently did a piece on big-name companies like Dell (&lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=Dell" class="stockLink"&gt;Dell&lt;/a&gt;) and Hewlett-Packard (NYSE: &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=HPQ" class="stockLink"&gt;HPQ&lt;/a&gt;) all diving in the [Linux-powered] netbook space," he told me, "and on top of that there's QuickBoot, where you power on your machine and a couple of seconds later, you've booted into a Linux-powered mini-environment with network access, e-mail, and so on. The thing is, when people use this,Microsoft (NSDQ:  &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=MSFT" class="stockLink"&gt;MSFT&lt;/a&gt;) loses that much more customer experience. You're not booting &lt;em&gt;into Windows&lt;/em&gt;, so Windows becomes further from the consumer in terms of what they're using day to day. And as you get less dependent on Windows, other things rise to the fore. If every machine that ships, ships with this, that’s that much less of Windows people are using in some form. You can see then how Linux outships Windows in this sense."&lt;/p&gt; &lt;p&gt;Maybe that's a sneaky way to think about it, but I could see what he meant. Get Linux into people's hands in some form, especially in a form that allows them to do an end run around Windows, and you have that many more things that don't require the Windows ecosystem to be successful. And the time &lt;em&gt;is&lt;/em&gt; right.&lt;/p&gt; &lt;p&gt;"A lot of the stuff we've been talking about [re: the growth of Linux] has been coming true this year," Jim went on. "Major PC makers are shipping PCs without Windows as A-list items, and the OEMs now have that much more leverage with Microsoft thanks to that. Hardware drivers work more often than not, even with things like wireless network cards that used to be a problem."&lt;/p&gt; &lt;p&gt;So what are the major Linux Foundation goals for 2009?&lt;/p&gt; &lt;p&gt;"Two big things. One, to grow the market for Linux; two, to provide a market for ISVs to use Linux that's a consistent target. The people who are using Linux to build things now, like netbooks, are trying to add their own branding to them apart from 'Linux'. Asus doesn't speak about the Eee PC as being a 'Linux' machine; it's their own Asus Eee OS. The experiences we have with each brand are what they want to take credit for."&lt;/p&gt; &lt;p&gt;To my ears this sounded fairly analogous to what happens with video game consoles. The XBOX 360, the PlayStation 3, the Nintendo Wii -- the names alone speak volumes about what you're going to get and in what form.&lt;/p&gt; &lt;p&gt;"Very true. Thing is, PS3 apps don't run on an XBOX; they're all isolated. With Linux, the challenge is for people who do custom branding -- can they build and innovate on the platform and also make the kind of money needed to drive future development? Consistency is something that's really important for that, especially on the back end where the innovation appens; it helps create critical mass. And it's not optional to do that when your most direct competition in this space has a 90% market share. You don't have the luxury of &lt;em&gt;not&lt;/em&gt; working together."&lt;/p&gt; &lt;p&gt;Among the big projects and initiatives that the Foundation wants to really kick up a notch or three in '09 is Moblin, Intel (NSDQ: &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=INTC" class="stockLink"&gt;INTC&lt;/a&gt;)'s standardization platform for mobile devices. I asked how this differs from the already-out-there Android, and Jim put it this way: "Android's a Linux-based smartphone platform, but Mobil is a more traditional Linux distribution that's been specifically built for netbooks and similar devices. The two are aimed at different markets."&lt;/p&gt; &lt;p&gt;With the economy imploding like the house at the end of &lt;em&gt;Poltergeist, &lt;/em&gt;there's been a lot of talk about using open source as a way to make IT budgets meet, but such talk has always for me had the flavor of "water is wet". Surely there's some deeper significance to how open source is a smart idea in hard times, I asked.&lt;/p&gt; &lt;p&gt;Jim used an economic analogy, one that I'd myself echoed a while back in a different way. "When you go into a recession, the people who come out on top are the people who have managed their risk effectively. Who’s feeling the most pain? The people who put all their money into real estate; they’re in real trouble. Or they put all their retirement money in the stock markets, and now their 401K has bottomed out. Those are the ones who hurt the most. The people who do well are balanced in their portfolio, with a little of everything -- some bonds, some stocks, some real estate, some cash, and so on.&lt;/p&gt; &lt;p&gt;"Linux is the most massively hedged computing project in the history of computing. Look at the tech companies: the one hurting most is Sun. Why? Not just because of their strategic mistakes, but because they’re not hedged; they put everything into one basket. If you bet on Sun, which is doing badly, where are you going to be in five years? If you bet in Linux, look who’s behind that:IBM (NYSE:  &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=IBM" class="stockLink"&gt;IBM&lt;/a&gt;), Novell (NSDQ: &lt;a target="_blank" href="http://www.techweb.com/financialCenter/index.jhtml?Account=techweb&amp;amp;Page=QUOTE&amp;amp;Ticker=NOVL" class="stockLink"&gt;NOVL&lt;/a&gt;), everyone."&lt;/p&gt; &lt;p&gt;One major set of events that Jim's looking forward to -- and me along with him -- is the expansion of Linux Foundation events overseas. "In '09 we'll be holding a major international Linux get-together in Tokyo, and we're looking to provide better training, education and other support for a future Linux labor pool. We're going to focus on the big markets for this, where big decisions are being made. Linux is no longer in a position where we need to perform flanking maneuvers; we can now meet things head-on."&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-6506662703450076498?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/6506662703450076498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linuxs-09-outlook-everywhere-even-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6506662703450076498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6506662703450076498'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linuxs-09-outlook-everywhere-even-on.html' title='Linux&apos;s &apos;09 Outlook: Everywhere, Even On Windows Machines(Google News)'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-2198385355130766642</id><published>2008-12-21T13:37:00.000-06:00</published><updated>2008-12-21T13:40:03.991-06:00</updated><title type='text'>Open Vulnerability Assessment System</title><content type='html'>OpenVAS stands for Open Vulnerability Assessment System and is a complete tool for network security scanning including a graphical user front-end. I is used to  detect security problems in remote systems and applications. The OpenVAS development team consists of various interested parties from academia and commercial entities as well as individuals.&lt;br /&gt;OpenVAS derives from the Nessus project which turned into a commercial product.  All OpenVAS products are Free Software under the GNU General Public License (GNU GPL). &lt;p&gt;The OpenVAS software consists of five different parts which are provided and maintained by the OpenVAS projects. These parts are:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;OpenVAS-Server &lt;/li&gt;&lt;li&gt;OpenVAS-Libraries &lt;/li&gt;&lt;li&gt;OpenVAS-LibNASL &lt;/li&gt;&lt;li&gt;OpenVAS-Plugins &lt;/li&gt;&lt;li&gt;OpenVAS-Client&lt;/li&gt;&lt;/ul&gt;According to the &lt;a target="_blank" href="http://wald.intevation.org/frs/download.php/535/openvas-compendium-1.0.0.pdf"&gt;documentation&lt;/a&gt;, only UNIX systems are supported by OpenVAS and out of this group, Linux distributions are tested most extensively. xBSD should work but has not been extensively tested.&lt;br /&gt;Additionally OpenVAS-Client Packages for Microsoft Windows XP SP2 are available on the OpenVAS website.&lt;br /&gt;&lt;br /&gt;Please notice that there are currently two different series available for download: the stable 1.0 series and the upcoming 2.0 series. The OpenVAS developers recently have announced the release of the 2.0-rc1 versions of openvas-libraries, openvas-libnasl, openvas-server and openvas-client.&lt;br /&gt;In this step by step workshop we’ll describe how to compile, install and use OpenVAS on a Mandriva 2009 server and client. The workshop configuration could look like this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.linux-tip.net/images/stories/vpn_ssh/openvas.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Step 1: Installing Mandriva 2009 server&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We think it is not necessary to explain how to install Mandriva 2009 and recommend reading the articles below in case of problems:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.howtoforge.com/perfect-server-mandriva-2009.0-i386" target="_blank"&gt;http://www.howtoforge.com/perfect-server-mandriva-2009.0-i386&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.howtoforge.com/perfect-server-mandriva-2009.0-x86_64" target="_blank"&gt;http://www.howtoforge.com/perfect-server-mandriva-2009.0-x86_64&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We recommend using the following website to add official media and latest update recourses:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://easyurpmi.zarb.org/" target="_blank"&gt;http://easyurpmi.zarb.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The automatic media setup usually works perfect and will help you to get an up-to-date system quickly.&lt;br /&gt;&lt;br /&gt;Make sure to have the following packages available on your system. We’ll later need them to compile OpenVAS. Use the urpmi command like described in &lt;a href="http://www.linux-tip.net/cms/content/view/363/1/" target="_blank"&gt;this article&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;gcc&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libglib2.0-devel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;bison&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libopenssl0.9.8-devel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libgtk+2.0_0-devel&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Depending on your installation, you may need the following packages also. Watch for error messages during the pre-configuration process in the next step:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libgnutls-devel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libpcap-devel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;libgpgme-devel&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 2: Compiling OpenVAS from source&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After downloading the source code please be aware that the installation process might copy files to places different from the ones expected by you or the distribution you are using. This may lead to unexpected results, especially if you install releases from different series or try to remove old copies of OpenVAS if you are not careful. Because of this, you should use a prefix (i.e.&lt;span style="font-weight: bold;"&gt; ./configure prefix=/opt/openvas&lt;/span&gt;). In this case you can easily isolate all the files belonging to this particular OpenVAS version. You can also later uninstall  OpenVAS from your machine by  removing the related subdirectory.&lt;br /&gt;&lt;br /&gt;You have to compile and install the packages in the  following order:&lt;br /&gt;&lt;br /&gt;1. openvas-libraries&lt;br /&gt;2. openvas-libnasl&lt;br /&gt;3. openvas-server&lt;br /&gt;4. openvas-plugins&lt;br /&gt;5. openvas-client&lt;br /&gt;&lt;br /&gt;We recommend reading the files INSTALL and README inside the respective packages.&lt;br /&gt;Let’s start with the libraries and end with the openvas-plugins:&lt;br /&gt;&lt;br /&gt;&lt;table style="border-style: none; width: 100%; background-image: none; float: none; text-align: left; vertical-align: top; background-color: rgb(255, 255, 204);" rules="none" border="1" cellpadding="1" cellspacing="1" frame="void"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style="font-weight: bold;"&gt;mkdir /opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tar xzf openvas-libraries-2.0.0.rc1.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cd openvas-libraries-2.0.0.rc1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;./configure prefix=/opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make install&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tar xzf openvas-libnasl-2.0.0.rc1.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cd openvas-libnasl-2.0.0.rc1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;./configure prefix=/opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make install&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tar xzf openvas-server-2.0.0.rc1.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cd openvas-server-2.0.0.rc1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;./configure prefix=/opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make install&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tar xzf openvas-plugins-1.0.5.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cd openvas-plugins-1.0.5&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;./configure prefix=/opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make install&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;On your &lt;span style="text-decoration: underline;"&gt;client machine&lt;/span&gt; just compile the following package like this:&lt;br /&gt;&lt;br /&gt;&lt;table style="border-style: none; width: 100%; background-color: rgb(255, 255, 204); background-image: none; float: none; text-align: left; vertical-align: top;" rules="none" border="0" cellpadding="1" cellspacing="1" frame="void"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style="font-weight: bold;"&gt;tar xzf openvas-client-2.0.0.rc1.tar.gz&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;cd openvas-client-2.0.0.rc1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;./configure prefix=/opt/openvas&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;make install&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Change the path variable like this:&lt;br /&gt;&lt;br /&gt;Edit the root profile using your favourite editor as root and reboot your machine.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;vi  ~/.bash_profile&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Add the following line at the end:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;export PATH=$PATH:/opt/openvas/bin:/opt/openvas/sbin&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To avoid problems with the openvas libraries, we need to create this symbolic link:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;ln –s /opt/openvas/lib/libopenvasnasl.so.2  /lib&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Step 3: Prepare OpenVAS for the first run&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After installing OpenVAS-Server some additional steps are needed to get your OpenVAS installation up and running. For security reasons, communication between the OpenVAS server and client is only possible through SSL encrypted connections. In order to establish an SSL encrypted connection, the server needs to have an SSL certificate. We’ll use the command openvas-mkcert to generate it.&lt;br /&gt;In addition, a client needs to have a user account on the server. The OpenVASServer&lt;br /&gt;package provides the openvas-adduser script to simplify the creation of user accounts.&lt;br /&gt;You are able to restricted user access rights by implementing different rule. Please read the documentation for more details.&lt;br /&gt;&lt;br /&gt;Just open your favourite console and use the following commands as root. If you have problems to run it, please make sure to configure the PATH and library settings like mentioned in step 2. See the screenshots below:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;openvas-mkcert&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;openvas-adduser&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;!-- JW "Simple Image Gallery PRO" Plugin (v1.2) starts here --&gt; &lt;div id="sigid0" class="sig"&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section1/screen1.jpg" class="thickbox" rel="lightbox[sig0]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/47b2a49fa22553e9218e29090361e135.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section1/screen2.jpg" class="thickbox" rel="lightbox[sig0]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/063a8f9a6075610f93869b4b6404e3ce.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;  &lt;/div&gt; &lt;!-- JW "Simple Image Gallery PRO" Plugin (v1.2) ends here --&gt; &lt;br /&gt;&lt;p style="font-weight: bold;"&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-weight: bold;"&gt;Step 4: Performing a synchronization with a OpenVAS NVT Feed&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The OpenVAS project offers a public feed of Network Vulnerability Tests (NVTs). The feed contains all NASL plugins available in the OpenVAS source code repository and now contains more than 6000 plugins. The feed is usually updated every weekday.&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.openvas.org/nvt-feeds.html"&gt;http://www.openvas.org/nvt-feeds.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The following command will connect to the currently only available NVT feed. At the end, it will verify the md5 checksums of all synchronized files. If any of them fails, an error is reported. In this case you should retry a couple of minutes later:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;openvas-nvt-sync&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Start the sever using the following command:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;openvasd  -D&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;!-- JW "Simple Image Gallery PRO" Plugin (v1.2) starts here --&gt; &lt;/p&gt;&lt;div id="sigid1" class="sig"&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section2/Mandriva%20Linux_2009-2008-12-17-16-02-51.png" class="thickbox" rel="lightbox[sig1]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/a127d652d83a43a344ff43c78124e032.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section2/Mandriva%20Linux_2009-2008-12-17-16-06-35.png" class="thickbox" rel="lightbox[sig1]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/5391e4d86b3b8d949a939b40ca960c7a.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 5: Running the first scan using your Linux OpenVAS client&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Please use your client machine and open the OpenVAS Client using the following command:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;OpenVAS-Client&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We recommend using the Scan Assistant like shown in the pictures below. It will guide you step by step and will help you to understand the procedure. At the end, you need to connect to the OpenVAS server. Use the server hostname (or IP address) and the username and password you have created in step 3 using the openvas-adduser command.&lt;br /&gt;Once you are connected to the server, you will receive all new plug-ins available and start the scan process on the selected target.&lt;br /&gt;The system will need some time to discover security holes and will give you appropriate references to remove them. Please use the possibility to export the reports in different formats.&lt;br /&gt;&lt;br /&gt;&lt;!-- JW "Simple Image Gallery PRO" Plugin (v1.2) starts here --&gt; &lt;div id="sigid2" class="sig"&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-09-09.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/28b939742ef7c1aa9a99ad9de07d059f.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-09-30.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/0a9345d37c3436b7e99a4b364674a2a3.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-11-41.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/11af8871b34d5be9e566254858bf198c.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-12-10.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/f61761664b802bb94f49d902abc4330b.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-12-20.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/9c34d1623336a708aa1e8b6f1b5caca6.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-16-42.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/a5cd481ddacc997ca07702792cba88dd.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-17-30.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/affdb72bce81abd2edb53b796463f0e6.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-18-10.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/b0e4f023c17fde79c817ebc97510335b.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-26-57.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/915d74de3cacc02daf037f340e59a4fd.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="sig_cont"&gt;&lt;div class="sig_thumb"&gt;&lt;a href="http://www.linux-tip.net/cms/images/stories/openvas/section3/Mandriva%20Linux_2009-2008-12-17-16-27-35.png" class="thickbox" rel="lightbox[sig2]" title=""&gt;&lt;br /&gt;You are browsing images from the article:&lt;br /&gt;&lt;b&gt;Open Vulnerability Assessment System&lt;/b&gt;" target="_blank"&gt;&lt;img alt="Click image to open!" title="Click image to open!" src="http://www.linux-tip.net/cms/images/stories/temp/df0e57cffab72cbdf124551f8bf505a9.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;  &lt;/div&gt; &lt;!-- JW "Simple Image Gallery PRO" Plugin (v1.2) ends here --&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 6: Troubleshooting and additional help&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Please use the following log files to discover problems. The tail command in a separate console will help you to keep an eye on your system:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tail –f /opt/openvas/var/log/openvas/openvasd.messages&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;tail –f /opt/openvas/var/log/openvas/openvasd.dump&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The OpenVAS developers providing a mailing list you can use. To see the collection of prior postings to the list, visit the Openvas-discuss archives.&lt;br /&gt;&lt;a target="_blank" href="http://lists.wald.intevation.org/pipermail/openvas-discuss/"&gt;http://lists.wald.intevation.org/pipermail/openvas-discuss/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Read a complete OpenVAS Compendium here:&lt;/p&gt;&lt;a href="http://www.openvas.org/compendium/openvas-compendium.html" target="_blank"&gt;http://www.openvas.org/compendium/openvas-compendium.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;[Good Stuff to know for those Linux admins out there.]&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Jeff&lt;br /&gt;&lt;/div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-2198385355130766642?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/2198385355130766642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/open-vulnerability-assessment-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2198385355130766642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/2198385355130766642'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/open-vulnerability-assessment-system.html' title='Open Vulnerability Assessment System'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-1158570218149001510</id><published>2008-12-19T22:09:00.000-06:00</published><updated>2008-12-19T22:36:33.039-06:00</updated><title type='text'>linuxterminal.org - What to do?</title><content type='html'>Ok,&lt;br /&gt;&lt;br /&gt;So i had an idea of making this site a search engine something strictly for Linux. I am not to sure now. I would like to have a forum page etc... I don't have any direction on this project, so I was hoping any of you Linux gurus out there might lend a fella a helping hand.&lt;br /&gt;&lt;br /&gt;Of course the idea is using this site as a search engine looking like a terminal.&lt;br /&gt;&lt;br /&gt;Any ideas???&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Jeff&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-1158570218149001510?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/1158570218149001510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linuxterminalorg-what-to-do.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1158570218149001510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/1158570218149001510'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linuxterminalorg-what-to-do.html' title='linuxterminal.org - What to do?'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-7410833846649338284</id><published>2008-12-19T21:56:00.000-06:00</published><updated>2008-12-19T21:57:57.911-06:00</updated><title type='text'>Linux - Stop holding our kids back!</title><content type='html'>&lt;span style="font-weight: bold; font-style: italic;"&gt;"...observed one of my students with a group of other children gathered around his laptop. Upon looking at his computer, I saw he was giving a demonstration of some sort. The student was showing the ability of the laptop and handing out Linux disks.&lt;/span&gt;  &lt;span style="font-weight: bold; font-style: italic;"&gt;After confiscating the disks I called a confrence with the student and that is how I came to discover you and your organization. Mr. Starks, I am sure you strongly believe in what you are doing but I cannot either support your efforts or allow them to happen in my classroom. At this point, I am not sure what you are doing is legal. No software is free and spreading that misconception is harmful. These children look up to adults for guidance and discipline. I will research this as time allows and I want to assure you, if you are doing anything illegal, I will pursue charges as the law allows.&lt;/span&gt;  &lt;span style="font-weight: bold; font-style: italic;"&gt;Mr. Starks, I along with many others tried Linux during college and I assure you, the claims you make are grossly over-stated and hinge on falsehoods. I admire your attempts in getting computers in the hands of disadvantaged people but putting linux on these machines is holding our kids back.&lt;br /&gt;&lt;br /&gt;This is a world where Windows runs on virtually every computer and putting on a carnival show for an operating system is not helping these children at all. I am sure if you contacted Microsoft, they would be more than happy to supply you with copies of an older verison of Windows and that way, your computers would actually be of service to those receiving them..."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Karen xxxxxxxxx&lt;br /&gt;xxxxxxxxx Middle School&lt;br /&gt;AISD&lt;br /&gt;&lt;br /&gt;Hmmmm....&lt;br /&gt;&lt;br /&gt;I suppose I should, before anything else, thank you. You have given me the opportunity to show others just what a battle we face in what we do. "We" being those who advocate, support and use Free Open Source Software and Linux in particular.&lt;br /&gt;&lt;br /&gt;If you find my following words terse or less than cordial, take a breath and prepare yourself...what I have to say to you are soft strokes to your hair in comparison to what you are about to experience.&lt;br /&gt;&lt;br /&gt;First off, if there was even the slightest chance that I was doing something illegal, it would not have been done. To think that I would involve my kids in my "illegal" activities is an insult far beyond outrage. You should be ashamed of yourself for putting into print such none sense.&lt;br /&gt;&lt;br /&gt;And please...investigate to your heart's content. You are about to have your eyes opened, that is if you actually investigate anything at all. Linux is a free as-in-cost and free as-in-license operating system. It was designed specifically for those purposes. Linux is used to free people from Microsoft. The fact that you seem to believe that Microsoft is the end all and be-all is actually funny in a sad sort of way. Then again, being a good NEA member, you would spout the Union line. Microsoft has pumped tens of millions of dollars into your union. Of course you are going to "recommend" Microsoft Windows". To do otherwise would probably get you reprimanded at the least and fired at the worst. You are only doing what you've been instructed to do.&lt;br /&gt;&lt;br /&gt;You've been trained well.&lt;br /&gt;&lt;br /&gt;I don't know when you attended college Karen but the Linux of even two years ago pales in feature and ability to what there is available now...and that in turn will pale in a year's time. linux is superior to MS windows in so many ways, they are too numerous to mention here...I am weary of enumerating them. Unlike Microsoft who meters their "improvements" and then shovels them to you every five years or so for purchase; Linux releases their improvements upon their completion. We receive the newest and the best of the system when it is tested to be usable and stable. Karen, you have no idea the slavery you work under...but you don't know any better. The shame of it is, you are trapped with millions of other teachers in obeying the NEA and preaching the goodness of Windows and Microsoft. A superior, free and absolutely entertaining method of operating your computer is within reach and you are unable to grasp it.&lt;br /&gt;&lt;br /&gt;The most disturbing part of this resides in the fact that the AISD purchases millions of dollars of Microsoft Software in a year's time when that money could be better spent on educating our children. A dedicated School Teacher would recognize that fact and lobby for the change to Free Open Source Software and let the money formally spent on MS bindware be used on our kids.&lt;br /&gt;&lt;br /&gt;A teacher who cared about her students would do that.&lt;br /&gt;&lt;br /&gt;That is sad past my ability to express it to you.   Don't shackle your students in your prison Karen.&lt;br /&gt;&lt;br /&gt;Now. You give that boy his disks back. Aaron is a brilliant kid and he's learned more using Linux than he ever did using Windows. Those disks and their distribution are perfectly legal and even if he was "disruptive", you cannot keep his property. I have placed a call to the AISD Superintendent and cc'd him a complete copy of your email. It looks like we will get to meet in his office when School starts again after the holiday. I am anxious to meet a person who is this uninformed and still holds a position of authority and learnedness over our children.&lt;br /&gt;&lt;br /&gt;Ken Starks&lt;br /&gt;HeliOS Solutions&lt;br /&gt;&lt;br /&gt;All-Righty Then&lt;br /&gt;&lt;br /&gt;[Funny stuff how half the people on the face of the earth have no clue about Linux. We need to change that.]&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Jeff&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-7410833846649338284?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/7410833846649338284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linux-stop-holding-our-kids-back.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7410833846649338284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/7410833846649338284'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/linux-stop-holding-our-kids-back.html' title='Linux - Stop holding our kids back!'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5729699752846829108.post-6845349247890829663</id><published>2008-12-19T20:01:00.000-06:00</published><updated>2008-12-19T20:07:09.815-06:00</updated><title type='text'>Jeff's Terminal First Entry</title><content type='html'>Hello Folks,&lt;br /&gt;&lt;br /&gt;My name in Jeff, a little bit of what you would call a techie. I like the world of linux!!!!&lt;br /&gt;&lt;br /&gt;&lt;div class="style1" align="center"&gt;   &lt;p&gt;LINUXTERMINAL.org&lt;/p&gt;   &lt;p&gt;&lt;span class="style2"&gt;In a World without walls or fences, &lt;/span&gt;&lt;/p&gt;   &lt;p&gt;&lt;span class="style2"&gt;who needs Windows or Gates?&lt;/span&gt;&lt;/p&gt;   &lt;p&gt;&lt;span class="style2"&gt;USE LINUX! &lt;/span&gt;&lt;/p&gt;   &lt;p&gt; &lt;/p&gt;   &lt;p&gt;&lt;span class="style2"&gt;Coming Soon&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;span class="style2"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;span class="style2"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span class="style2"&gt;This is my website that I am building on my free time. Still under construction. Thinking of  making a Linux search engine. I dunno, we will see. Just want to introduce my self. Please feel free to hit me up for anything.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;br /&gt;&lt;span class="style2"&gt;&lt;/span&gt;&lt;/p&gt;Jeff &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5729699752846829108-6845349247890829663?l=jeffrangel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrangel.blogspot.com/feeds/6845349247890829663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/jeffs-terminal-first-entry.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6845349247890829663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5729699752846829108/posts/default/6845349247890829663'/><link rel='alternate' type='text/html' href='http://jeffrangel.blogspot.com/2008/12/jeffs-terminal-first-entry.html' title='Jeff&apos;s Terminal First Entry'/><author><name>Jeff Rangel</name><uri>http://www.blogger.com/profile/15454585316665950265</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://4.bp.blogspot.com/_qq900Gzpovs/SmzPj-8ux1I/AAAAAAAAABY/fHaxPxgClcM/S220/5720_1213766984760_1246356825_30646239_4784357_n.jpg'/></author><thr:total>0</thr:total></entry></feed>
