<?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>ServerAdmins.NET &#187; Security</title>
	<atom:link href="http://serveradmins.net/category/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://serveradmins.net</link>
	<description>Stuff for Server Admins...</description>
	<lastBuildDate>Fri, 09 Jul 2010 16:46:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>cPanel TCP and UDP ports&#8230;</title>
		<link>http://serveradmins.net/cpanel-tcp-and-udp-ports/</link>
		<comments>http://serveradmins.net/cpanel-tcp-and-udp-ports/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 03:26:40 +0000</pubDate>
		<dc:creator>chrism</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[passive]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[udp]]></category>

		<guid isPermaLink="false">http://serveradmins.net/?p=69</guid>
		<description><![CDATA[The ports necessary for creating a useful and successful firewall for a cPanel hosting machine.  This includes the UDP, TCP and Passive Port port ranges.]]></description>
			<content:encoded><![CDATA[<p>A little post here, more for reference than anything&#8230;   Here&#8217;s a list of the common ports used by cPanel for your firewall building pleasure&#8230;</p>
<p>TCP<br />
21 FTP<br />
22 SSH<br />
25 SMTP<br />
26 SMTP (Alternative port, configurable via WHM)<br />
80 HTTP<br />
110 POP3<br />
143 IMAP<br />
443 HTTPS<br />
465 SMTPS<br />
993 IMAP4<br />
995 POP3<br />
2082 cPanel (NON Encrypted)<br />
2083 cPanel (HTTPS)<br />
2086 WHM (NON Encrypted)<br />
2087 WHM (Encrypted)<br />
2095 Webmail (NON Encrypted)<br />
2096 Webmail (Encrypted)<br />
3306 MySQL (Only if allowing Remote Connections)</p>
<p>&#8211;UDP<br />
53 DNS </p>
<p>It should be noted that if you&#8217;re firewalling off your server, you should open up a portrange for the FTP PassivePort Rolloff.  Typically these are higher up ports and a wide range, such as 30000-50000.  You&#8217;ll also need to modify your FTPd configuration to use this portrange as well.  If you don&#8217;t, you&#8217;ll see issues with FTP connections dropping, successful logins, but a hang, pause or delay when dong an ls or beginning a transfer that results in a dropped connection.  Typically this will affect ftp clients that are behind a firewall/router doing NAT translations.</p>
<p>Anyway, that&#8217;s it, quick and simple. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://serveradmins.net/cpanel-tcp-and-udp-ports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Basic IPFW firewall HowTo for FreeBSD&#8230;</title>
		<link>http://serveradmins.net/a-basic-ipfw-firewall-howto-for-freebsd/</link>
		<comments>http://serveradmins.net/a-basic-ipfw-firewall-howto-for-freebsd/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:42:27 +0000</pubDate>
		<dc:creator>chrism</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[allow]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[ipfw]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://serveradmins.net/?p=65</guid>
		<description><![CDATA[How to setup and configure a basic firewall for FreeBSD using ipfw.]]></description>
			<content:encoded><![CDATA[<p>Of all the different OS&#8217;s and the multitude of firewall implementations for each, my favorite has to be FreeBSD&#8217;s IPFW ruleset.  It&#8217;s powerful, super efficient, and most of all, *EASY* to read! </p>
<p>So I&#8217;m just going to paste a sample firewall below, notate it heavily for you, and show you how to get it enabled.   </p>
<p>For newer FreeBSD builds, it&#8217;s enough to add <code>firewall_enable="YES"</code> to your /etc/rc.conf file and reboot.  This will load all the necessary kernel modules, and get you in shape.   You should know that by default FreeBSD defaults to a &#8216;default deny&#8217; policy.  This is *VERY* important to know.   What it means is that by default, your server isn&#8217;t going to open up any ports. You *WILL* be locked out if you do not have a firewall in place.  Don&#8217;t say I didn&#8217;t warn you!</p>
<p>So, with that being said, let&#8217;s get our firewall in built and in place, and then we&#8217;ll go about adding in the necessary options to ensure it comes up properly on boot.  It should noted here that you can build in a &#8220;Default to accept&#8221; option into the kernel or &#8220;firewall_type=&#8221;open&#8221; to the /etc/rc.conf to start up wide open.  This is the suggested practice as the chances are, you&#8217;re not close enough to your server to console it. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Let&#8217;s get our basic firewall going.   We&#8217;re going to open up 22 for SSH, 80 for web traffic, 25 for SMTP and 110/143 for POP3/IMAP mail.   The syntax is simple enough you should be able to customize it for your own needs, but always make sure your SSH port is accessible.  Also if you run SSH on an alternative port, you should modify that here.  You don&#8217;t want to lock yourself out now, do you?</p>
<p>So go ahead, login as root to your server, open up your text editor of choice.  For the purpose of this post, I&#8217;m going to assume you&#8217;re creating the file /etc/firewall.sh.  If not, modify where appropriate. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   You should also make sure this file is executable by root, otherwise it won&#8217;t fire off properly on reboot.</p>
<p><code><br />
#!/bin/sh</p>
<p>set -e</p>
<p>#First, let's clear out any chance of conflicting with other FreeBSD firewall configurations<br />
# and make sure we're starting from a fresh slate.</p>
<p>/sbin/sysctl net.inet.ip.forwarding=0 >/dev/null<br />
/sbin/ipfw -q list >/dev/null 2>&#038;1 || /sbin/kldload ipfw<br />
(/sbin/ipf -D) >/dev/null 2>&#038;1 || true<br />
(/sbin/kldunload ipl) >/dev/null 2>&#038;1 || true<br />
(/sbin/pfctl -d) >/dev/null 2>&#038;1 || true<br />
(/sbin/kldunload pf) >/dev/null 2>&#038;1 || true<br />
/sbin/ipfw -q /dev/stdin < < EOF<br />
flush<br />
delete set 31</p>
<p>#Open up our Loopback device.  There's almost never any reason to filter this.<br />
add allow ip from any to any via lo0</p>
<p>#Allow checking/maintenance of stateful rulesets<br />
add check-state</p>
<p>#Kill off any active/open sessions, pre-fw init.  We do this<br />
#to ensure that any connection to unauthorized ports is dealt with<br />
#and that all connections adhere to the policy...</p>
<p>add reset tcp from any to any established</p>
<p>    ##########################<br />
## Add Inbound Service Allowances ##<br />
    ##########################<br />
#Port 80: www<br />
add allow tcp from any to me 80 setup in<br />
#Port 22: SSH - Stateful connection (it's going to maintain a connection, not come and go)<br />
add allow tcp from any to me 22 setup in keep-state</p>
<p>#Port 21, and 30000-50000, FTP and Passive port rolloff.<br />
add allow tcp from any to me 21 setup in<br />
add allow tcp from any to me 30000-50000 setup in keep-state</p>
<p>#Port 53: DNS<br />
add allow udp from any to me 53 in </p>
<p>#Port 25, 110, 143.  SMTP, POP3 and IMAP<br />
add allow tcp from any to me 25 in<br />
add allow tcp from any to me 110 in<br />
add allow tcp from any to me 143 in</p>
<p>#ICMP/ping requests should be allowed through, fun stuff happens<br />
#if you don't allow this.  (see ptmu)<br />
add icmp from any to me icmptypes 8 in</p>
<p> #################################<br />
## Lets Deny some Packets. WOOOT ##<br />
 #################################</p>
<p>#These rules denies everything else, not explicitly listed above<br />
add deny tcp from any to me setup in<br />
add deny ip from any to me in</p>
<p> ##################<br />
## Outbound Ahoy! ##<br />
 ##################</p>
<p>#Wide open outbound filtering.  You could modify this section to default to deny<br />
#And then allow specific ports out.  I'm not going to do that here, but you should<br />
#be able to figure it out. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>add allow tcp from me to any setup out keep-state<br />
add allow ip from me to any out keep-state</p>
<p> ###########################<br />
## Last chain to make sure ##<br />
 ###########################</p>
<p>#One more time, just to be positive...<br />
add deny tcp from any to any setup<br />
add deny ip from any to any<br />
enable firewall<br />
EOF</p>
<p>#I set this because the default FreeBSD behavior is to keep a table open<br />
#for a session for 1 hour.  That's a LONG time on a production server.  We<br />
#Go for 10 mins here, but could be lowered drastically.</p>
<p>#Set TTL on Dynamic Rules to 10 Mins.  Formerly 1 hour.<br />
/sbin/sysctl net.inet.ip.fw.dyn_ack_lifetime=600 >/dev/null</p>
<p></code></p>
<p>Done!</p>
<p>Save your /etc/firewall.sh file, then make sure permissions are right on it&#8230;</p>
<p><code><br />
chmod 755 /etc/firewall.sh &#038;&#038; chown root:wheel /etc/firewall.sh<br />
</code></p>
<p>Open up your handy text editor again, and add the following lines to /etc/rc.conf at the bottom.</p>
<p><code><br />
firewall_enable="YES"<br />
firewal_script="/etc/firewall.sh"<br />
</code></p>
<p>Done!   </p>
<p>Please keep in mind that if you set &#8220;firewall_type=open&#8221; above, it may overrule this firewall_script variable, so it should be removed.</p>
<p>Congrats, reboot and enjoy your new firewall. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If this is something you&#8217;re interested in, leave a comment and let me know how and I can write a few more articles on more complex configurations quite easily. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://serveradmins.net/a-basic-ipfw-firewall-howto-for-freebsd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Port to PID mappings, or What process is using that port?</title>
		<link>http://serveradmins.net/port-to-pid-mappings-or-what-process-is-using-that-port/</link>
		<comments>http://serveradmins.net/port-to-pid-mappings-or-what-process-is-using-that-port/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 00:59:37 +0000</pubDate>
		<dc:creator>chrism</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[fuser]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[udp]]></category>

		<guid isPermaLink="false">http://serveradmins.net/?p=54</guid>
		<description><![CDATA[fuser is awesome for port to pid mappings or what process is using a specific port.]]></description>
			<content:encoded><![CDATA[<p>Okay, I&#8217;m lazy.  I fully admit it.   Want proof?  Instead of writing up a huge long post articulating something with awesome analogies, I&#8217;m only going to talk about one command today. </p>
<p>Fuser.</p>
<p>Why? </p>
<p>fuser is awesome.  Not awesome in a &#8220;run it and it fixes everything&#8221; way, but awesome in a &#8220;What in the hell is binding to this port??&#8221; kind of way.   Two classic scenarios where this is handy&#8230;</p>
<p>1.  Apache won&#8217;t start, &#8220;Can&#8217;t bind to port ::80&#8243; or &#8220;Can&#8217;t bind to port ::443&#8243;, etc.  This typically means something else is already tied to that port, and won&#8217;t relinquish it&#8230; </p>
<p>2.  A security scan of your machine shows something funny running on port 6667&#8230; You didn&#8217;t start this or know what it is.  </p>
<p>What to do now? Well you can sift through netstat output, but that&#8217;s, well, boring and slightly annoying.</p>
<p>netstat output<br />
<code><br />
[root@vps ~]# netstat -anp |grep 80<br />
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      3266/httpd<br />
tcp        0      0 127.0.0.1:58725             127.0.0.1:80                TIME_WAIT   -<br />
tcp        0      0 10.10.10.10:2078          192.168.1.23:63024          ESTABLISHED 18088/cpdavd - acce<br />
unix  3      [ ]         STREAM     CONNECTED     49222880 11574/dovecot-auth  /var/run/dovecot/login/default<br />
unix  2      [ ]         DGRAM                    6804658 14078/named<br />
</code></p>
<p>Okay now we see that 3266/httpd is running on 80.  Then we do this to find the process..</p>
<p><code><br />
[root@vps ~]# ps auxwww |grep 3266<br />
nobody    3266  0.0  0.3  65704  3516 ?        S    17:05   0:00 /usr/local/apache/bin/httpd -k start -DSSL<br />
root     21665  0.0  0.0   6024   640 pts/2    S+   18:51   0:00 grep 3266<br />
[root@vps ~]#<br />
</code></p>
<p>Okay there we go&#8230; </p>
<p>Now for hacked systems, this could (and probably) is fully forged for a lot of remote shells.  Going back to my previous post at http://serveradmins.net/ssh-on-nonstandard-ports-how-to-not-do-it/ which talks about priveleged ports, you could in theory have trojaned &#8216;ps&#8217;, top, etc masking that real process.  It may *look* like httpd, but bound to a port like 23425&#8230;     So dont&#8217;t trust that too much, but a bit on that in a second. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The fuser approach&#8230;</p>
<p><code><br />
[root@vps ~]# fuser -n tcp 80<br />
80/tcp:               3266  3267  3268  3269  3271 16078 18274<br />
[root@vps ~]#<br />
</code></p>
<p>Oh look at that a list of all pids bound to that port.  Nice, clean, to the point and easily parsable.    fuser rocks. <img src='http://serveradmins.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now a bit more about the masked processes&#8230; To run those down, here&#8217;s a quick tip.  Forget ps/top and your other normal utilities, /proc/ is your friend here&#8230;</p>
<p>Proc looks like this on a linux box&#8230;<br />
<code><br />
[root@vps ~]# cd /proc/<br />
[root@vps proc]# ls -al<br />
total 1<br />
dr-xr-xr-x 78 root     root        0 Jan 26 09:58 .<br />
drwxr-xr-x 24 chrismm  chrismm  1024 Feb  4 22:06 ..<br />
dr-xr-xr-x  4 root     root        0 Feb  5 05:05 1<br />
dr-xr-xr-x  4 root     root        0 Feb  5 05:05 11573<br />
dr-xr-xr-x  4 root     root        0 Feb  5 05:05 11574<br />
dr-xr-xr-x  4 dovecot  dovecot     0 Feb  5 05:05 11575<br />
dr-xr-xr-x  4 dovecot  dovecot     0 Feb  5 05:05 11576<br />
...<br />
...<br />
</code></p>
<p>These directories match the pids of the running process&#8230;   So if you have something advertising itself as &#8216;httpd&#8217; on port 234234 and you know it&#8217;s pid 3266, you&#8217;d just do the following&#8230;</p>
<p><code><br />
[root@vps proc]# cd /proc/3266<br />
[root@vps 3266]# ls -al<br />
total 0<br />
dr-xr-xr-x  4 nobody nobody 0 Feb  5 17:08 .<br />
dr-xr-xr-x 78 root   root   0 Jan 26 09:58 ..<br />
-r--------  1 root   root   0 Feb  5 18:56 auxv<br />
-r--r--r--  1 root   root   0 Feb  5 17:08 cmdline<br />
-rw-r--r--  1 root   root   0 Feb  5 18:56 coredump_filter<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 cpuset<br />
lrwxrwxrwx  1 root   root   0 Feb  5 18:54 cwd -> /<br />
-r--------  1 root   root   0 Feb  5 18:56 environ<br />
lrwxrwxrwx  1 root   root   0 Feb  5 17:10 exe -> /usr/local/apache/bin/httpd<br />
dr-x------  2 root   root   0 Feb  5 18:49 fd<br />
?r--r--r--  1 root   root   0 Feb  5 18:56 io<br />
-r--------  1 root   root   0 Feb  5 18:56 limits<br />
-rw-r--r--  1 root   root   0 Feb  5 18:56 loginuid<br />
-r--r--r--  1 root   root   0 Feb  5 18:54 maps<br />
-rw-------  1 root   root   0 Feb  5 18:56 mem<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 mounts<br />
-r--------  1 root   root   0 Feb  5 18:56 mountstats<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 numa_maps<br />
-rw-r--r--  1 root   root   0 Feb  5 18:56 oom_adj<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 oom_score<br />
lrwxrwxrwx  1 root   root   0 Feb  5 18:54 root -> /<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 schedstat<br />
-r--------  1 root   root   0 Feb  5 18:56 smaps<br />
-r--r--r--  1 root   root   0 Feb  5 17:08 stat<br />
-r--r--r--  1 root   root   0 Feb  5 17:10 statm<br />
-r--r--r--  1 root   root   0 Feb  5 17:08 status<br />
dr-xr-xr-x  3 nobody nobody 0 Feb  5 18:56 task<br />
-r--r--r--  1 root   root   0 Feb  5 18:56 wchan<br />
[root@vps 3266]#<br />
</code></p>
<p>Bam, there you go.  cwd and exe are the things you&#8217;re looking for  It shows you the dir it was spawned from (typically a users homedirectory on a shared hosting machine) and the full path/binary actually being executed (usually lame perl/php listeners)&#8230;   Also the ./fd/ folder is kind of neat as it shows you all the open file handles tied up by that pid as well.</p>
<p>Anyway, /proc/ examination too, is for another day, I just wanted to ramble on about one of my favorite, neat little single use utilities that no one else seems to know about. fuser.  Enjoy. =)</p>
]]></content:encoded>
			<wfw:commentRss>http://serveradmins.net/port-to-pid-mappings-or-what-process-is-using-that-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is not how you do it&#8230;  T-Mobile Hacked</title>
		<link>http://serveradmins.net/this-is-not-how-you-do-it-t-mobile-hacked/</link>
		<comments>http://serveradmins.net/this-is-not-how-you-do-it-t-mobile-hacked/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 22:18:05 +0000</pubDate>
		<dc:creator>chrism</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[T-Mobile Hacked Security Intrusion Credit Card Identity Theft]]></category>

		<guid isPermaLink="false">http://www.serveradmins.net/blog/?p=18</guid>
		<description><![CDATA[T-Mobile Hacked due to lame security.  ]]></description>
			<content:encoded><![CDATA[<p><a href="http://seclists.org/fulldisclosure/2009/Jun/0062.html">T-Mobile Hackers trying to sell Network and Customer data&#8230;</a></p>
<p>Wow.  That&#8217;s all I can say.  T-Mobile is hacked BIGTIME and from the looks of things, I&#8217;d say they knew about it.   Typically in these sorts of situations, the hackers will contact the company they just owned and try to buy their silence.  Now, if the company refuses, then that data gets shopped around.</p>
<p>Now, if there&#8217;s no buyer after that, the hacker isn&#8217;t just going to walk away, especially on a large scale hack like this.  They&#8217;re either going to A: Auction your data off to the highest bidder, or B: Publicly release it for the fame/glory/etc.</p>
<p>I think the biggest thing that concerns me about this, being a T-Mob customer and all, is that even after being contacted by the hackers (assumed at this point), I&#8217;ve seen ZERO notice from T-Mobile about this.   Given the scale of their operations, and the control they have over your private data, this is quite concerning.</p>
<p>Let&#8217;s think about this for just one second, here&#8217;s a bit of info T-Mobile has on you&#8230;</p>
<ul>
<li>Full Name</li>
<li>Home Address</li>
<li>Phone Number</li>
<li>Answers to private security questions (commonly reused by people from site to site)</li>
<li>Social Security Number</li>
<li>Birthdate</li>
<li>Credit Card Number</li>
<li>Credit Card Expiration Date</li>
<li>Credit Card CCV Value (possibly, vendors aren&#8217;t supposed to store, but you never know)</li>
<li>Billing address if it differs from your Main acct address.</li>
</ul>
<p>Now, that&#8217;s just the billing info alone, and if they hackers do have root access on the machines in that URL above, which contains quite a few billing machines, we can assume they have this data in some form.  Let&#8217;s look at the other data they have on you&#8230;  Here&#8217;s where things start to get even freakier than simple credit card fraud and identity theft potential of the situation.</p>
<ul>
<li>Your Phone Number</li>
<li>Your Phones IMEI (numerous repercussions from this)</li>
<li>Your Call History (Inbound and Outbound)</li>
<li>Radio Tag Number</li>
<li>GPS Tag (Yes, your phone has a GPS/Cell location unit.   Yes it can be used to track you without your knowledge)</li>
<li>Text Message History (inbound and outbound)</li>
<li>Email History</li>
<li>Access to your cam-phone pictures (most phones upload and store these online now)</li>
</ul>
<p>Now, the above list is all stuff that your cell provider logs and tracks.  We know this, it&#8217;s public knowledge, etc.  Let&#8217;s go ahead and put on the SUPAR BIG tinfoil hat now&#8230;   With the advent of government pushes into call logging/tracing/information tracking, we know for a fact that several of the big telcos already record phone calls, fully log all data communications, and have active taps on all of this information.</p>
<p>As more or less of a mental exercise, what do you think the repercussions from this hack look like now?   How far did the intrusion go, and what is the extent of the data turnover?</p>
<p>Spooky, isn&#8217;t it.  The even spookier part is that I doubt we&#8217;ll ever get a public acknowledgment from T-Mobile regarding this intrusion, any turnover of customer data, nothing.</p>
<p>If you don&#8217;t want to end up like T-Mobile, it might be time to look into a proper security audit of your network.<br />
<a href="serveradmins.NET">serveradmins.NET</a></p>
]]></content:encoded>
			<wfw:commentRss>http://serveradmins.net/this-is-not-how-you-do-it-t-mobile-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->