<?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>WebSpy Blog&#187; Cyber Crime &#8211; WebSpy Blog</title>
	<atom:link href="http://www.webspy.com.au/blogs/index.php/category/cyber-crime/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webspy.com.au/blogs</link>
	<description>For when WebSpyrians have something to say.</description>
	<lastBuildDate>Fri, 09 Dec 2011 01:18:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Detecting a distributed reflected DNS attack</title>
		<link>http://www.webspy.com.au/blogs/index.php/detecting-a-distributed-reflected-dns-attack/</link>
		<comments>http://www.webspy.com.au/blogs/index.php/detecting-a-distributed-reflected-dns-attack/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 07:52:57 +0000</pubDate>
		<dc:creator>Luke Arnold</dc:creator>
				<category><![CDATA[Cyber Crime]]></category>
		<category><![CDATA[Firewall Analysis]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Log File Analysis]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Vantage]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[cyber attack]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[drdos]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://www.webspy.com.au/blogs/?p=2047</guid>
		<description><![CDATA[The other night as I was getting ready to sleep, I received an email from the host of my personal Linux VPS saying that I had exceeded my monthly transfer quota. I didn't pay much mind to the warning, as the excess transfer was insignificant, and at that time I was too tired to care. I closed my email, got into bed and fell asleep.]]></description>
			<content:encoded><![CDATA[<p>The other night as I was getting ready to sleep, I received an email from the host of my personal Linux VPS saying that I had exceeded my monthly transfer quota. I didn&#8217;t pay much mind to the warning, as the excess transfer was insignificant, and at that time I was too tired to care. I closed my email, got into bed and fell asleep.</p>
<p><span id="more-2047"></span></p>
<p>The next morning I woke to find several more messages from my VPS host, each with a higher and more significant excess transfer than the last. At this point it occurred to me that it was unusual for my VPS to reach its quota, let alone exceed it. The excess transfer was now enough that it was going to incur significant cost, so I set about investigating the cause.</p>
<p>I downloaded some firewall logs for the previous few days from the server and imported them into Vantage. The first place I looked was in an analysis at the &#8220;Source Address&#8221; summary, to see where the activity was coming from. What I found was a single host with a disproportionately larger amount of transferred data than the other addresses listed, so I drilled down to the &#8220;Destination Port&#8221; summary for this source address to see what services it was accessing. I found that all the traffic was going to port 53 &#8211; my DNS. More accurately, the large amount of data was going <em>from</em> my DNS to the source address. Drilling down to the &#8220;Individual records&#8221; view then showed that my server was providing a large response to a small DNS request from that source address &#8211; about 20 times per second.</p>
<p>Curious about why this single machine somewhere on the Internet was bombarding my server with small DNS requests at such a high rate, I set my server&#8217;s firewall to deny packets from that address and began searching around online for any information.</p>
<p>I quickly found out that I hadn&#8217;t configured my DNS properly, and it was set to allow recursive requests, meaning that if a request came in for a domain my server wasn&#8217;t authoritative for, it would then forward the request to another DNS that could answer, or given a blank request it would respond with the full list of root servers. Running tcpdump on the VPS revealed that every request coming in was blank, and my server was responding with the full list of root servers for each request.</p>
<p>It still seemed odd that a server would be constantly sending small requests to my server and receiving large responses. Then it dawned on me; I was looking at a Distributed Reflected Denial of Service (DRDoS) attack. The source address in all the requests I had looked at was forged by the attackers, so that my server &#8211; and many other servers out there also receiving the requests &#8211; would send their responses to the forged source address in an attempt to flood its connection. The source address in my firewall logs was the target of the attack. I found more information about this specific type of attack <a title="here" href="http://isc.sans.edu/diary.html?storyid=5713" target="_blank">here</a>.</p>
<p>Having disabled recursion on my DNS, my server&#8217;s contribution to the attack was significantly reduced. However, my server was now responding with a much smaller &#8220;request denied&#8221; packet for each incoming request. I wanted some way of preventing my DNS from responding at all, so again I headed out to the Internet to see what I could find.</p>
<p>I discovered a package called &#8220;fail2ban&#8221;, which dynamically updates your firewall rules to block addresses that are abusing your server&#8217;s services. I installed it using <a title="this guide" href="http://www.debian-administration.org/article/Blocking_a_DNS_DDOS_using_the_fail2ban_package" target="_blank">this guide</a>, and immediately my bandwidth usage dropped off as it blocked further DNS requests. Even now the requests are still flooding in, but now my VPS contributes only a handful of packets towards the attack instead of the previous millions per day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webspy.com.au/blogs/index.php/detecting-a-distributed-reflected-dns-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons learned from a hacked Twitter account</title>
		<link>http://www.webspy.com.au/blogs/index.php/lessons-learned-from-a-hacked-twitter-account/</link>
		<comments>http://www.webspy.com.au/blogs/index.php/lessons-learned-from-a-hacked-twitter-account/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 07:09:12 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Cyber Crime]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips and Best Practices]]></category>
		<category><![CDATA[WebSpy]]></category>
		<category><![CDATA[WebSpy News Update]]></category>
		<category><![CDATA[direct message spam]]></category>
		<category><![CDATA[DM]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[URL shortening]]></category>
		<category><![CDATA[Web Security]]></category>

		<guid isPermaLink="false">http://www.webspy.com.au/blogs/?p=878</guid>
		<description><![CDATA[If you follow @WebSpy on Twitter, you would have received a very strange Direct Message (DM) from us yesterday. Something along the lines of "rofl this you?" or "you're on this vid!" or "I found you on here!"

Unfortunately, the WebSpy Twitter account fell victim to a phishing scam, and as a result sent phishing spam to all our Twitter followers. We are embarrassed by the incident and we apologize to all of our followers, especially the ones that clicked the link in the DM and were caught by the phishing scam themselves.

Here's a rundown of the event in the hope that it will help others know what to look out for.]]></description>
			<content:encoded><![CDATA[<p>If you follow @WebSpy on Twitter, you would have received a very strange Direct Message (DM) from us yesterday. Something along the lines of &#8220;rofl this you?&#8221; or &#8220;you&#8217;re on this vid!&#8221; or &#8220;I found you on here!&#8221;</p>
<p>Unfortunately, the WebSpy Twitter account fell victim to a phishing scam, and as a result sent phishing spam to all our Twitter followers. We are embarrassed by the incident and we apologize to all of our followers, especially the ones that clicked the link in the DM and were caught by the phishing scam themselves.</p>
<p>Here&#8217;s a rundown of the event in the hope that it will help others know what to look out for.<span id="more-878"></span></p>
<h2>What Happened?</h2>
<p>The phishing scam works like this:</p>
<ol>
<li>You receive a strange yet intriguing Direct Message from someone you follow and likely trust. <strong>This is the key element to the scams success</strong>.</li>
<li>The DM contains a link using a shortened URL such as dwarfurl.com/blah. In our case, most of them were using dwarfurl.com, wapurl.co.uk, and 3.ly</li>
<li>You click the link and get taken to what appears to be the Twitter login page. But if you look at the URL it is actually something like blogs.videos.dsfasdc.com or  videos.twitter.dsfasdc.com. <strong>Checking the URL is the key to making sure the scam doesn&#8217;t get you too!</strong></li>
<li>You enter your Twitter login details. Reports of what happens after this login page vary. You may see the Twitter fail whale, or a blank page, or a random blog.</li>
<li>Now that the phishing site has your login details, the same Direct Messages is sent to all your Twitter contacts.</li>
<li>You eventually discover what happened. You feel like a violated idiot and start scrambling to fix everything.</li>
</ol>
<h2>What to do if it happens to you</h2>
<p>If the above sounds familiar, you need to login to Twitter right now and change your password to make sure the phishing site can no longer access your account. You also need to go to the Connections tab and disable any third party applications that look suspicious. You&#8217;ll then need to update the credentials in all the twitter clients, website/blog plug-ins, and anything else that may be using your old Twitter credentials.</p>
<p>Fortunately, we were still able to login to our Twitter account and change our password and disable third party connections. Thankfully there were not any new suspicious connections that we needed to worry about.</p>
<h2>Lessons Learned</h2>
<p>Now that we&#8217;ve fixed everything and regained control of our Twitter account, it&#8217;s good to sit back and reflect on what just happened and how to avoid it in the future.</p>
<p>You&#8217;ve probably heard all of this before. We had too. But it takes an incident like this to <em>really </em>think about and address any shortfalls in your own organization. Some of our followers were also caught out by the scam and these are people that are in the tech industry and generally know about these sorts of scams. We were definitely surprised that we fell for it!  So take a moment of your time to imagine your own Twitter account was compromised in the same way, then imagine all the possible ways it could have happened. Now go and take every precaution to ensure it doesn&#8217;t happen.</p>
<p>Having now been through it, here are some tips to help you avoid the same fate in the future.</p>
<ol>
<li>Just because a Direct Message comes from someone you trust, does not mean it is trustworthy. Always use caution!</li>
<li>Educate your employees &#8211; especially those that know your company&#8217;s Twitter credentials. The main goal you want to achieve here is getting your employees into the habit of glancing at the URL in the address bar of their browser before entering ANY login details. We used our own log analysis software (Vantage) to find out who ended up on the websites in question, and then spoke to them directly to ensure they understood what to look out for.</li>
<li>Use a Twitter application that can display the actual URL behind a shortened URL before clicking on the link. For TweetDeck users, go to Settings | General, and check &#8216;Show preview information for short URLs&#8217;. Please note, however that this function only works for a few specific URL shortening services.</li>
<li>If you&#8217;re using the Twitter web page directly, use a browser and plug-in that can expand shortened URLs such as Mozilla Firefox with <a href="https://addons.mozilla.org/en-US/firefox/addon/9549" target="_blank">Long URL Please</a>.</li>
<li>Use a browser with integrated anti-phishing security (such as Firefox or Google Chrome) and keep it up to date, or ensure you have good third party anti-phishing / anti-malware software installed.</li>
<li>As always, keep your security software and OS up to date.</li>
</ol>
<p>Our friends at Sophos also have some good information about the scam that you may like to read: <a title="Phish... it's what's for dinner" href="http://www.sophos.com/blogs/sophoslabs/?p=7366" target="_blank">http://www.sophos.com/blogs/sophoslabs/?p=7366</a></p>
<h2>Sorry!</h2>
<p>An event like this makes you realize how important Twitter is to the overall public perception of a company. Our followers trust us to deliver relevant and useful content about our key areas of expertise &#8211; log file analysis and reporting. We spend a large amount of effort researching and writing content to ensure our tweets provide our followers with a good source of information. Having a breach like this certainly degrades this public perception that we work so hard at trying to maintain.</p>
<p>I would therefore like to thank all our followers who have kept with us and not clicked the &#8216;Unfollow&#8217; button. Now that everything is under control again we will continue to bring you the best content we can provide about the log analysis and surrounding industries.</p>
<p>Once again, many many apologies to all of our followers, especially those that were affected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webspy.com.au/blogs/index.php/lessons-learned-from-a-hacked-twitter-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes on E-Security Development</title>
		<link>http://www.webspy.com.au/blogs/index.php/notes-on-e-security-development/</link>
		<comments>http://www.webspy.com.au/blogs/index.php/notes-on-e-security-development/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 03:33:38 +0000</pubDate>
		<dc:creator>Asa</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Cyber Crime]]></category>
		<category><![CDATA[Tips and Best Practices]]></category>
		<category><![CDATA[E-security]]></category>
		<category><![CDATA[employee internet usage]]></category>
		<category><![CDATA[monitoring internet usage]]></category>
		<category><![CDATA[online crime]]></category>
		<category><![CDATA[online predators]]></category>
		<category><![CDATA[public proxies]]></category>
		<category><![CDATA[public proxy]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[Sophos]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wireless hospots]]></category>

		<guid isPermaLink="false">http://www.webspy.com.au/blogs/?p=638</guid>
		<description><![CDATA[Today, I had the pleasure of attending Western Australian Internet Association’s first (out of four) breakfast events. The main topic on the agenda was E-Security and a panel of expert, representing commercial, government and educational bodies, were there to shed a light on the latest developments.

The topic of E-Security is rapidly becoming of enormous significance, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I had the pleasure of attending Western Australian Internet Association’s first (out of four) breakfast events. The main topic on the agenda was E-Security and a panel of expert, representing commercial, government and educational bodies, were there to shed a light on the latest developments.<br />
<span id="more-638"></span><br />
The topic of E-Security is rapidly becoming of enormous significance, not only to the ICT industry but to the wider community.  In some countries cyber crime is an industry, employing hundreds of staff targeting more affluent countries.  At the same time our schools are adopting high-speed connectivity for all students, leading the next generation into a connected world. </p>
<p>Here’s a short summary of the main topics discussed during the event. For more information please follow the related links at the bottom of the page.</p>
<h1>Event Summary</h1>
<p><a href="http://www.sophos.com/products/enterprise/web/security-and-control/resources.html ">Sophos</a>’s Asia Pacific Managing Director initiated the event by discussing organized cyber crimes. He highlighted that online organized crime rates are escalating rapidly. Online criminals are becoming increasingly sophisticated in the techniques they use to try and scam private people and businesses alike. Unfortunately their techniques are evolving much faster than legislation and community awareness, estimated to be at least 12 months behind.</p>
<h2>Police Cyber Crime Unit</h2>
<p><img class="alignright size-full wp-image-644" title="crime-scene-istock_000004218770small2" src="http://www.webspy.com.au/blogs/wp-content/uploads/2009/10/crime-scene-istock_000004218770small2.jpg" alt="crime-scene-istock_000004218770small2" width="243" height="161" />The representative from WA’s Cyber Crime Unit expanded on the safety of children, and how Internet predators are becoming increasingly Internet savvy and often avoid getting caught by engaging in their illegal activities at work.  Nevertheless the audience was happy to learn about a recent case where the Cyber Crime Unit successfully tracked down an online predator, who had managed to stay anonymous for a long time by exclusively using his employer’s Internet resources. He worked for a very large organization, but thanks to the employer’s internal security and monitoring system he was identified before he had the chance to commit further crimes.</p>
<h2>Hiding in a Wireless Hotspot</h2>
<p>Wireless hotspots, today free at many airports, coffee shops and fast food chains, was another concern raised by the police’s Cyber Crime Unit. More often than not, the companies providing this free access to customers do not have a system in place to monitor and alert on any inappropriate or illegal activities. When this is the case it is virtually impossible to prevent predators using these networks to stay anonymous. Unfortunately, legislation, or public outcry, to address the issue is not likely to occur until an illegal activity, enabled by the anonymous use of wireless hot spots, takes place and receives media attention.</p>
<h2>At School</h2>
<p><img class="alignright size-medium wp-image-649" title="school-girl-istock_000003921899small" src="http://www.webspy.com.au/blogs/wp-content/uploads/2009/10/school-girl-istock_000003921899small-300x199.jpg" alt="school-girl-istock_000003921899small" width="300" height="199" />The representative from the educational sector continued to discuss online safety related to children and students. He highlighted that security system at schools and universities are essential, but not always enough. On many occasions students bypass the school’s firewall by using virus ridden public proxies to access blocked sites. Even students with studious intent occasionally use  public proxies to access legitimate sites that have been blocked thanks to a “block worthy” word in a corporate blog, or something of similar virtuousness.</p>
<p>The importance of educating children about the dangers of social networking was also emphasized. Children are often overconfident in their abilities to spot a predator among their peers. However, in reality, they do not fully comprehend the psychological techniques used by online prowlers to gain their trust.</p>
<h2>Best Practices</h2>
<p>To sum up, the event focused the changing landscape of the internet and internet security. In our internet dependent world everyone is at risk, whether at work, at home, or at school. The best practices, when working towards a safer e-environment, keeps changing but the proactive theme throughout the event emphasized a combination of security systems, system monitoring, education of workforce (parents, teachers, students), and an increased involvement from all levels within organizations and community.</p>
<p>Related Links:<br />
<a href="http://www.waia.asn.au">Western Australia Internet Association</a><br />
<a href="http://www.acma.gov.au">Australian Communications and Media Authority</a><br />
<a href="http://www.wiseuptoit.com.au">Wise up to IT</a><br />
<a href="http://www.cybersmartkids.com.au">Cyber Smart Kids</a><br />
<a href="http://www.staysafe.org">Stay Safe</a><br />
<a href="http://www.thinkuknow.co.uk">Think U Know</a><br />
<a href="http://www.virtualglobaltaskforce.com">Virtual Global Task Force</a><br />
<a href="http://www.sophos.com/products/enterprise/web/security-and-control/resources.html ">Sophos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webspy.com.au/blogs/index.php/notes-on-e-security-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

