<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Phobos Technology</title>
	<atom:link href="http://wordpress.phobostechnology.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://wordpress.phobostechnology.com</link>
	<description>Network Defense and Management</description>
	<lastBuildDate>Fri, 18 May 2012 23:15:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>CentOS 6.2 Quick Networking Setup</title>
		<link>http://wordpress.phobostechnology.com/?p=141</link>
		<comments>http://wordpress.phobostechnology.com/?p=141#comments</comments>
		<pubDate>Fri, 18 May 2012 23:07:59 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[CentOS 6]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=141</guid>
		<description><![CDATA[This note is assuming you installed CentOS 6.2 Minimal. First, after you install the system, go to your network scripts folder. cd /etc/sysconfig/network-scripts Then, edit your ifcfg-int file. For this example, I&#8217;m only use eth0, but you can easily use eth1, etc. vi ifcfg-eth0 Enter the following for a static IP: DEVICE=eth0 BOOTPROTO=none ONBOOT=yes BROADCAST=broadcastIP [...]]]></description>
			<content:encoded><![CDATA[<p>This note is assuming you installed CentOS 6.2 Minimal.  </p>
<p>First, after you install the system, go to your network scripts folder.</p>
<blockquote><p>cd /etc/sysconfig/network-scripts</p></blockquote>
<p>Then, edit your ifcfg-int file.  For this example, I&#8217;m only use eth0, but you can easily use eth1, etc.  </p>
<blockquote><p>vi ifcfg-eth0</p></blockquote>
<p>Enter the following for a static IP:  </p>
<blockquote><p>DEVICE=eth0<br />
BOOTPROTO=none<br />
ONBOOT=yes<br />
BROADCAST=<em>broadcastIP</em><br />
NETWORK=<em>network address</em><br />
NETMASK=<em>netmast</em><br />
IPADDR=<em>IPAddress</em><br />
USERCTL=no</p></blockquote>
<p>Then, edit your network file.</p>
<blockquote><p>vi /etc/sysconfig/network</p></blockquote>
<p>Add your default gateway along with your local hostname.</p>
<blockquote><p>NETWORKING=yes<br />
HOSTNAME=<em>host.name</em><br />
GATEWAY=<em>gatewayIPAddress</em></p></blockquote>
<p>Open your <strong>resolv.conf</strong> file.</p>
<blockquote><p>vi /etc/resolv.conf</p></blockquote>
<p>Finally, add one (or more) DNS Servers to your resolv.conf file.</p>
<blockquote><p>nameserver 4.2.2.1<br />
nameserver 8.8.8.8
</p></blockquote>
<p>Restart your network service.</p>
<blockquote><p>service network restart</p></blockquote>
<p>You should be all set.  Perform a ping on a target IP and a target host to verify IP and DNS functionality.  </p>
<blockquote><p>[root@demobox sysconfig]# ping 4.2.2.1<br />
PING 4.2.2.1 (4.2.2.1) 56(84) bytes of data.<br />
64 bytes from 4.2.2.1: icmp_seq=1 ttl=60 time=2.92 ms<br />
64 bytes from 4.2.2.1: icmp_seq=2 ttl=60 time=2.92 ms<br />
64 bytes from 4.2.2.1: icmp_seq=3 ttl=60 time=3.05 ms<br />
64 bytes from 4.2.2.1: icmp_seq=4 ttl=60 time=3.02 ms<br />
^C<br />
&#8212; 4.2.2.1 ping statistics &#8212;<br />
4 packets transmitted, 4 received, 0% packet loss, time 3494ms<br />
rtt min/avg/max/mdev = 2.923/2.982/3.054/0.088 ms<br />
[root@demobox sysconfig]# ping google.com<br />
PING google.com (74.125.45.113) 56(84) bytes of data.<br />
64 bytes from yx-in-f113.1e100.net (74.125.45.113): icmp_seq=1 ttl=56 time=3.77 ms<br />
64 bytes from yx-in-f113.1e100.net (74.125.45.113): icmp_seq=2 ttl=56 time=3.85 ms<br />
64 bytes from yx-in-f113.1e100.net (74.125.45.113): icmp_seq=3 ttl=56 time=3.91 ms<br />
64 bytes from yx-in-f113.1e100.net (74.125.45.113): icmp_seq=4 ttl=56 time=3.90 ms<br />
^C<br />
&#8212; google.com ping statistics &#8212;<br />
4 packets transmitted, 4 received, 0% packet loss, time 3361ms<br />
rtt min/avg/max/mdev = 3.770/3.862/3.914/0.072 ms<br />
[root@demobox sysconfig]#
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco SPAN port &#8211; Examples and Usages</title>
		<link>http://wordpress.phobostechnology.com/?p=120</link>
		<comments>http://wordpress.phobostechnology.com/?p=120#comments</comments>
		<pubDate>Thu, 24 Nov 2011 02:38:18 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[SPAN]]></category>
		<category><![CDATA[switching]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=120</guid>
		<description><![CDATA[One of the many useful features that Cisco provides in its switching technology is the Switched Port ANalyzer (SPAN). It allows you to mirror traffic from a target port, set of ports, VLAN or set of VLANs to another port or VLAN. This is useful for several reasons. First, security. As a SPAN port allows [...]]]></description>
			<content:encoded><![CDATA[<p>One of the many useful features that Cisco provides in its switching technology is the Switched Port ANalyzer (SPAN).  It allows you to mirror traffic from a target port, set of ports, VLAN or set of VLANs to another port or VLAN.  This is useful for several reasons.  </p>
<p>First, security.  As a SPAN port allows you to view traffic running through your switch, you can monitor said traffic for violations and threats.  The classic example is attaching a sniffer/IDS to the span port of the switch closest to your egress point.  In the example below, you&#8217;ll want to monitor the trunk port (FE0/24) that connects the switch the edge router.</p>
<p>Second, performance monitoring.  You can use the span port in conjunction with something like TCPDump or Wireshark to monitor the packets running across the network.  You can thereby see if you duplicate or unexpected traffic, errors and other potential issues inside the network.  You can also utilize certain software tools which monitor packets and generate traffic/packet statistics (such as NTOP).  </p>
<p>Finally, troubleshooting.  You can use the SPAN port to troubleshoot network issues.  If you&#8217;re trying to ensure that multicast traffic traverses your switch, you can monitor the SPAN port with TCPDump/Wireshark to see if the traffic goes through.  While you can do the same with debug commands on the routers, sometimes it&#8217;s valuable to see the traffic as it comes across the switch directly.  </p>
<p>That&#8217;s it for a quick intro.  I&#8217;ll post more example diagrams and the configs later.  </p>
<p>Example 1:  Basic setup.  Monitoring a single port on the same VLAN.<br />
Switch Type:  Cisco 3750 running 12.2(35)SE5<br />
Target port:  FastEthernet1/0/18<br />
Monitoring Port:  FastEthernet1/0/8</p>
<p><a href="http://wordpress.phobostechnology.com/wp-content/uploads/2011/11/spanportex1.png"><img src="http://wordpress.phobostechnology.com/wp-content/uploads/2011/11/spanportex1.png" alt="" title="spanportex1" height="250" class="alignnone size-full wp-image-130" /></a></p>
<blockquote><p>Switch#conf t<br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
Switch(config)#monitor session 1 source interface fastethernet1/0/18<br />
Switch(config)#monitor session 1 destination interface fastethernet1/0/8<br />
Switch(config)#end<br />
Switch#show monitor session 1<br />
Session 1<br />
&#8212;&#8212;&#8212;<br />
Type                   : Local Session<br />
Source Ports           :<br />
    Both               : Fa1/0/18<br />
Destination Ports      : Fa1/0/8<br />
    Encapsulation      : Native<br />
          Ingress      : Disabled</p>
<p>Switch#sh int fa1/0/8<br />
FastEthernet1/0/8 is up, line protocol is down <strong>(monitoring)</strong><br />
  Hardware is Fast Ethernet, address is 001f.6c6b.0f0a (bia 001f.6c6b.0f0a)<br />
  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,<br />
     reliability 255/255, txload 1/255, rxload 1/255<br />
  Encapsulation ARPA, loopback not set<br />
  Keepalive set (10 sec)<br />
  Full-duplex, 100Mb/s, media type is 10/100BaseTX<br />
  input flow-control is off, output flow-control is unsupported<br />
  ARP type: ARPA, ARP Timeout 04:00:00<br />
  Last input never, output 00:00:23, output hang never<br />
  Last clearing of &#8220;show interface&#8221; counters never<br />
  Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0<br />
  Queueing strategy: fifo<br />
  Output queue: 0/40 (size/max)<br />
  5 minute input rate 0 bits/sec, 0 packets/sec<br />
  5 minute output rate 11000 bits/sec, 5 packets/sec<br />
     1210 packets input, 119091 bytes, 0 no buffer<br />
     Received 762 broadcasts (0 multicasts)<br />
     0 runts, 0 giants, 0 throttles<br />
     (SNIP)
</p></blockquote>
<p>To test this, fire up Wireshark on your monitoring computer.  You should be able to monitor packets from your target at this point.  As you can see in the screenshot below, I pinged 1.2.3.4 and 5.6.7.8; Wireshark picked up these packets (among others) on the monitoring computer.  </p>
<p><a href="http://wordpress.phobostechnology.com/wp-content/uploads/2011/11/WSMonCap.png"><img src="http://wordpress.phobostechnology.com/wp-content/uploads/2011/11/WSMonCap.png" alt="" title="WSMonCap" height="150" class="alignnone size-full wp-image-129" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=120</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remote Code Exploit &#8211; Windows 7 *is* vulnerable</title>
		<link>http://wordpress.phobostechnology.com/?p=117</link>
		<comments>http://wordpress.phobostechnology.com/?p=117#comments</comments>
		<pubDate>Sun, 13 Nov 2011 07:17:38 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=117</guid>
		<description><![CDATA[MS Security Bulletin MS11-083 A remote code execution vulnerability exists in the Windows TCP/IP stack due to the processing of a continuous flow of specially crafted UDP packets. An attacker who successfully exploited this vulnerability could run arbitrary code in kernel mode. An attacker could then install programs; view, change, or delete data; or create [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technet.microsoft.com/en-us/security/bulletin/ms11-083">MS Security Bulletin MS11-083</a></p>
<blockquote><p>A remote code execution vulnerability exists in the Windows TCP/IP stack due to the processing of a continuous flow of specially crafted UDP packets. An attacker who successfully exploited this vulnerability could run arbitrary code in kernel mode. An attacker could then install programs; view, change, or delete data; or create new accounts with full user rights.</p></blockquote>
<p>Bad news.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=117</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stuxnet, v1.5:  DuQu</title>
		<link>http://wordpress.phobostechnology.com/?p=115</link>
		<comments>http://wordpress.phobostechnology.com/?p=115#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:51:48 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=115</guid>
		<description><![CDATA[Symantec has a good write-up of some malware which uses the Stuxnet &#8216;engine&#8217;, available here. There&#8217;s a more detailed white paper here. In a nutshell: &#8211; Incorporates the same source code as Stuxnet, but with a different payload &#8211; Could have existed as early as late 2010 &#8211; Captures keystrokes and system info, among others [...]]]></description>
			<content:encoded><![CDATA[<p>Symantec has a good write-up of some malware which uses the Stuxnet &#8216;engine&#8217;, available <a href="http://www.symantec.com/connect/http%3A/%252Fwww.symantec.com/connect/blogs/w32_duqu_precursor_next_stuxnet">here</a>.  There&#8217;s a more detailed white paper <a href="http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/w32_duqu_the_precursor_to_the_next_stuxnet_research.pdf">here</a>.</p>
<p>In a nutshell:<br />
 &#8211; Incorporates the same source code as Stuxnet, but with a different payload<br />
 &#8211; Could have existed as early as late 2010<br />
 &#8211; Captures keystrokes and system info, among others<br />
 &#8211; Mainly targeted at manufacturers of Industrial Control Systems<br />
 &#8211; Used a stolen valid driver signing cert (which has since been revoked)</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Auto-MDIX feature</title>
		<link>http://wordpress.phobostechnology.com/?p=110</link>
		<comments>http://wordpress.phobostechnology.com/?p=110#comments</comments>
		<pubDate>Sat, 22 Oct 2011 20:03:26 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=110</guid>
		<description><![CDATA[One of the nice features Cisco includes in most, if not all, of their switches is auto-MDIX. Auto-MDIX (which stands for automatic medium-dependent interface crossover), allows you to use cross-over cables where you would have to use a straight-through, and vice versa. The switch detects the cable type and reverses its own TX/RX pair to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the nice features Cisco includes in most, if not all, of their switches is auto-MDIX.  Auto-MDIX (which stands for automatic medium-dependent interface crossover), allows you to use cross-over cables where you would have to use a straight-through, and vice versa.  The switch detects the cable type and reverses its own TX/RX pair to match. </p>
<p>The most common way to enable this feature is found below:</p>
<blockquote><p>Switch# configure terminal<br />
Switch(config)# interface gigabitethernet0/1<br />
Switch(config-if)# mdix auto<br />
Switch(config-if)# end<br />
Switch#</p></blockquote>
<p>The switch configuration guides for the three models can be found below.  </p>
<p><a href="http://www.cisco.com/en/US/docs/switches/lan/catalyst2940/software/release/12.1_22_ea11/configuration/guide/scg1.html">2940</a><br />
<a href="http://www.cisco.com/en/US/docs/switches/lan/catalyst2970/software/release/12.2_25_see/configuration/guide/scg.html">2970</a><br />
<a href="http://www.cisco.com/en/US/docs/switches/lan/catalyst3750/software/release/12.2_58_se/configuration/guide/3750scg.html">3750</a></p>
<p>You can find additional configuration guides <a href="http://www.cisco.com/cisco/web/psa/configure.html">here</a>.  Pull the guide for your specific switch and IOS version to find the exact command; the <strong>auto mdix</strong> command appears to be universal for most access switches, however.  </p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=110</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling SNMP on a Cisco Router</title>
		<link>http://wordpress.phobostechnology.com/?p=99</link>
		<comments>http://wordpress.phobostechnology.com/?p=99#comments</comments>
		<pubDate>Fri, 21 Oct 2011 18:18:12 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=99</guid>
		<description><![CDATA[A great monitoring feature that should be enabled on your Network Infrastructure is SNMP. I use it mainly to pull traffic stats from my interfaces, but you can use it in more advanced cases to send information to your monitoring system when certain events happen. To enable a simple community and activate the SNMP Server [...]]]></description>
			<content:encoded><![CDATA[<p>A great monitoring feature that should be enabled on your Network Infrastructure is SNMP.  I use it mainly to pull traffic stats from my interfaces, but you can use it in more advanced cases to send information to your monitoring system when certain events happen.</p>
<p>To enable a simple community and activate the SNMP Server on a Cisco router, enter the following:</p>
<blockquote><p>Router&gt;en<br />
Router#conf t<br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
Router(config)#sn<br />
Router(config)#snmp-server com<br />
Router(config)#snmp-server community SNMP_RO_COMMUNITY ro<br />
%SNMP-5-WARMSTART: SNMP agent on host Router is undergoing a warm start<br />
Router(config)#exit<br />
Router#</p></blockquote>
<p>You can then verify that the SNMP server is operational by executing:</p>
<blockquote><p>Router#sh snmp</p></blockquote>
<p>If the server is up and responding to SNMP requests, you should see the <strong>SNMP Packets Input</strong> counter increment at the same rate as your <strong>SNMP Packets Output</strong> counter.</p>
<p>Sample output from a 3825 and a 7206vxr is below.</p>
<blockquote><p>3825#sh snmp<br />
Chassis: XXXXXXXXXX<br />
154994 SNMP packets input<br />
0 Bad SNMP version errors<br />
12 Unknown community name<br />
0 Illegal operation for community name supplied<br />
0 Encoding errors<br />
154002 Number of requested variables<br />
0 Number of altered variables<br />
135469 Get-request PDUs<br />
19513 Get-next PDUs<br />
0 Set-request PDUs<br />
0 Input queue packet drops (Maximum queue size 1000)<br />
154982 SNMP packets output<br />
0 Too big errors (Maximum packet size 1500)<br />
980 No such name errors<br />
0 Bad values errors<br />
0 General errors<br />
154982 Response PDUs<br />
0 Trap PDUs<br />
SNMP Dispatcher:<br />
queue 0/75 (current/max), 0 dropped<br />
SNMP Engine:<br />
queue 0/1000 (current/max), 0 dropped</p>
<p>SNMP logging: disabled<br />
3825#</p></blockquote>
<p></p>
<blockquote><p>7206vxr#sh snmp<br />
Chassis: xxxxxxxxxxxxx<br />
10044977 SNMP packets input<br />
0 Bad SNMP version errors<br />
8 Unknown community name<br />
4 Illegal operation for community name supplied<br />
0 Encoding errors<br />
17715858 Number of requested variables<br />
0 Number of altered variables<br />
5504338 Get-request PDUs<br />
4437461 Get-next PDUs<br />
0 Set-request PDUs<br />
10063141 SNMP packets output<br />
0 Too big errors (Maximum packet size 1500)<br />
4 No such name errors<br />
0 Bad values errors<br />
0 General errors<br />
10044969 Response PDUs<br />
18172 Trap PDUs</p>
<p>SNMP logging: enabled<br />
Logging to xxxxxxxx, 0/10, 17954 sent, 218 dropped.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache DOS Problem</title>
		<link>http://wordpress.phobostechnology.com/?p=89</link>
		<comments>http://wordpress.phobostechnology.com/?p=89#comments</comments>
		<pubDate>Thu, 25 Aug 2011 04:16:24 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=89</guid>
		<description><![CDATA[Awesome new remote DOS against Apache servers floating in the wild. Full Disclosure Post This thing is wicked. It exploits a bad handling of the byte-range response in httpd servers, and causes them to hang, requiring intervention to kill and restart the process. Spiderlabs has a more complete write-up. Spiderlabs Entry Here&#8217;s the Apache advisory: [...]]]></description>
			<content:encoded><![CDATA[<p>Awesome new remote DOS against Apache servers floating in the wild.  </p>
<p><a href="http://seclists.org/fulldisclosure/2011/Aug/175">Full Disclosure Post</a></p>
<p>This thing is wicked.  It exploits a bad handling of the byte-range response in httpd servers, and causes them to hang, requiring intervention to kill and restart the process.  Spiderlabs has a more complete write-up.</p>
<p><a href="http://blog.spiderlabs.com/2011/08/mitigation-of-apache-range-header-dos-attack.html">Spiderlabs Entry</a></p>
<p>Here&#8217;s the Apache advisory:</p>
<p><a href="https://mail-archives.apache.org/mod_mbox/httpd-announce/201108.mbox/%3C20110824161640.122D387DD@minotaur.apache.org%3E">Advisory CVE-2011-3192</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=89</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password Rules</title>
		<link>http://wordpress.phobostechnology.com/?p=82</link>
		<comments>http://wordpress.phobostechnology.com/?p=82#comments</comments>
		<pubDate>Mon, 15 Aug 2011 23:59:34 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=82</guid>
		<description><![CDATA[XKCD had a great one the other day about password rules.]]></description>
			<content:encoded><![CDATA[<p>XKCD had a great one the other day about password rules.</p>
<p><a href="http://www.xkcd.net/936/"><img title="password_strength" src="http://wordpress.phobostechnology.com/wp-content/uploads/2011/08/password_strength.png" alt="" class="alignnone size-full wp-image-85" width="740" height="601" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=82</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IBM Developer Library Pwnage</title>
		<link>http://wordpress.phobostechnology.com/?p=77</link>
		<comments>http://wordpress.phobostechnology.com/?p=77#comments</comments>
		<pubDate>Mon, 10 Jan 2011 08:03:25 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=77</guid>
		<description><![CDATA[Looks like the IBM developer library got cracked earlier today by Hmei7.  There&#8217;s more info on their past works at Zone-H.]]></description>
			<content:encoded><![CDATA[<p>Looks like the IBM developer library got cracked earlier today by Hmei7. </p>
<p>There&#8217;s more info on their past works at <a href="http://www.zone-h.org/archive/special=1/notifier=Hmei7" target="_blank">Zone-H</a>.</p>
<p><a href="http://wordpress.phobostechnology.com/wp-content/uploads/2011/01/hax.jpg"><img class="alignnone size-full wp-image-78" title="hax" src="http://wordpress.phobostechnology.com/wp-content/uploads/2011/01/hax.jpg" alt="" width="879" height="708" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=77</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The unlearned lesson in the Wikileaks scandal</title>
		<link>http://wordpress.phobostechnology.com/?p=71</link>
		<comments>http://wordpress.phobostechnology.com/?p=71#comments</comments>
		<pubDate>Wed, 05 Jan 2011 05:27:10 +0000</pubDate>
		<dc:creator>MikeH</dc:creator>
				<category><![CDATA[Wikileaks]]></category>

		<guid isPermaLink="false">http://wordpress.phobostechnology.com/?p=71</guid>
		<description><![CDATA[There&#8217;s a major lesson that I haven&#8217;t seen anyone talk about. That is&#8230;stop being so damn secretive! I&#8217;ve looked over a few of the cables, and have tried to keep up with the news as much as possible. There&#8217;s no reason any of the ones I&#8217;ve heard about should have been classified. In fact, some [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a major lesson that I haven&#8217;t seen anyone talk about.</p>
<p>That is&#8230;stop being so damn secretive! I&#8217;ve looked over a few of the cables, and have tried to keep up with the news as much as possible. There&#8217;s no reason any of the ones I&#8217;ve heard about should have been classified. In fact, some of the more scandalous ones we, the public, HAVE to know about.</p>
<p>For example&#8230;most people suspected that the ChiCom government was behind the attack on Google. Turns out, there appears to be some hard evidence backing that suspicion. What, we, the People, don&#8217;t deserve to know when a foreign government launches an attack (cyber or otherwise) on an American company?</p>
<p>Take the one dealing with the nuclear material in Qadafi&#8217;s hands. It appears that Lybia is starting to come around, in some respects. Libia wants our trade money, but is going to dick around with transfering nuclear stockpiles out of the country for some trade concessions?</p>
<p>This is NEWS. This is the precisely the stuff that we, the Citizens, need to know about&#8230;not who won Dancing with the Stars, nor that Arnold got a parking ticket.</p>
<p>Take a lesson from the Open Source community. There are some secrets, but the entire foundation is based on openness. I think having the ability to collaborate with people working on similar projects can be an invaluable asset to any technology professional. If you build the technology right, if you design secure systems from the ground up, and if you continually strive to improve them, you have nothing to fear from having your systems exposed.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpress.phobostechnology.com/?feed=rss2&#038;p=71</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

