<?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>Kyle Anderson &#187; Myspace</title>
	<atom:link href="http://xkyle.com/tag/myspace/feed/" rel="self" type="application/rss+xml" />
	<link>http://xkyle.com</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 04:54:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Myspace Phishing Analysis</title>
		<link>http://xkyle.com/2009/02/11/myspace-phishing-analysis/</link>
		<comments>http://xkyle.com/2009/02/11/myspace-phishing-analysis/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 22:40:10 +0000</pubDate>
		<dc:creator>Kyle Anderson</dc:creator>
				<category><![CDATA[Myspace]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://xkyle.com/?p=251</guid>
		<description><![CDATA[A couple of years ago, a large list of phished Myspace accounts was leaked on the internet. I stumpled upon them and ran a very simple analysis. Check it out: root@a:/# cat myspace.hackedlist &#124; cut -f 2 -d : &#124; sort &#124; uniq -c &#124; sort -n &#124; tail -n 20 14 qwerty1 15 123456a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkyle.com/wp-content/uploads/myspace.jpeg"><img class="size-full wp-image-252 alignnone" title="myspace" src="http://xkyle.com/wp-content/uploads/myspace.jpeg" alt="" width="118" height="117" /></a></p>
<p>A couple of years ago, a large list of phished Myspace accounts was leaked on the internet.<br />
I stumpled upon them and ran a very simple analysis. Check it out:</p>
<blockquote><p>root@a:/# cat myspace.hackedlist | cut -f 2 -d : | sort | uniq -c | sort -n | tail -n 20<br />
14 qwerty1<br />
15 123456a<br />
15 babygirl1<br />
15 blink182<br />
16 123456<br />
16 123abc<br />
16 iloveyou2<br />
17 football1<br />
17 nicole1<br />
18 number1<br />
19 password<br />
23 myspace1<br />
24 fuckyou1<br />
28 iloveyou1<br />
28 monkey1<br />
29 fuckyou<br />
54 abc123<br />
74 password1</p></blockquote>
<p>The file was in the form of &#8220;Username:password&#8221;, so the first part of that command &#8220;cuts&#8221; the second column, with the colon as the delimiter. Then it is piped through sort, which sorts the list alphabetcially, then the uniq -c command, which counts the number of times that a word shows up, then I sort it again to get the most freqent passwords, and tail the last 20 lines.</p>
<p>It is interesting to see that a lot of these passwords just tack &#8220;1&#8243; on to them. And of course blink182 was all the rage back then aparently&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://xkyle.com/2009/02/11/myspace-phishing-analysis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Myspace Friend Maps</title>
		<link>http://xkyle.com/2006/05/22/myspace-friend-maps/</link>
		<comments>http://xkyle.com/2006/05/22/myspace-friend-maps/#comments</comments>
		<pubDate>Mon, 22 May 2006 21:54:02 +0000</pubDate>
		<dc:creator>Kyle Anderson</dc:creator>
				<category><![CDATA[LaserTag]]></category>
		<category><![CDATA[Myspace]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://xkyle.com/?p=6</guid>
		<description><![CDATA[Ok, I have a seceret: I am a Myspace sellout. Everyone around me was like ooh yea, check out my myspace! Or Ooo, your myspace is sooo cool. Or, Wow, your myspace cures cancer. Well, so I made one, and added friends. I soon realized that Myspace.com is interesting. (Although it sucks too. Ads everywhere, [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I have a seceret: I am a <a href="http://www.myspace.com">Myspace</a> sellout. Everyone around me was like ooh yea, check out my myspace! Or Ooo, your myspace is sooo cool. Or, Wow, your myspace cures cancer. Well, so I made <a href="http://www.myspace.com/routerihardlyknowher">one</a>, and added friends. I soon realized that Myspace.com is interesting. (Although it sucks too. Ads everywhere, people&#8217;s pages are often littered with cpu sucking garbage and animated gifs and crappy css.)</p>
<p>But the Myspace chain bullitens or picture comments are not what makes Myspace.com interesting. Its is the social network map that is what is interesting. But how can I see the big picture? And what does it look like? In my search on how to do this, I came across <a href="http://www.washedashore.com/people/friendster/">Ben Discoe&#8217;s website</a> and read about his work with a similar website: <a href="http://www.friendster.com/">friendster</a>. I decided on a similar approach.</p>
<p>First, because I do not have direct access to Myspace.com&#8217;s database of friends, I would have to create my own local database, and then write a spider to crawl around and populate it. So I did. I wrote it in what I know best, are you ready people: bash scripting. You can look at it for yourself in the download below, its called myspace.robot. Basically it parses a myspace profile, grabs friends, pictures, music, interests, as much information that can be harvested, and then inserts it into the database. This robot is called by other scripts that say oh, pick a random profile. Or I have a robot caller that calls in a tree like fashion, starting at a given place and traversing so many levels (myspace.tree).</p>
<p>Once I have the information (friends in particular). We can use this information to create a map. At first I used imagemagick to generate an image. It sucked.<img src="http://xkyle.com/wp-content/uploads/2006/07/mosaic.thumbnail.png" title="Early Attempt" id="image11" alt="Early Attempt" /></p>
<p>It took me a while to find graphviz.<a href="http://xkyle.com/wp-content/uploads/sample1.jpg" title="Friend map1" class="imagelink"><img src="http://xkyle.com/wp-content/uploads/sample1.thumbnail.jpg" alt="Friend map1" id="image25" /></a></p>
<p>Graphviz is the perfect tool for the job. I feed it the nodes, and weights between nodes. It calculated the best positions to put the nodes. It is very configurable, including different ploting algorithms, graph styles, and output formats. It take all of this and put it into a php-mysql interface for others to input their graph-making requests. My server on the backend takes the top one on the queue, grabs the appropriate profiles, creates the friend-map, then sends an email to let the user know that the map is ready!</p>
<p>A simple map that includes you and your friends turns out to be pretty large. If you want to go any deeper than that you have to use svg. (bitmaps turn very large.) But how does the program know where to put each friend, realative to the other friends in the map? Answer: It uses the &#8220;howgoodofafriendareyou&#8221; metric. The more friends you have in common with another person, the better a friend you are.<br />
I&#8217;ll have the link up in a while for the interface for others to make their own maps. You might be interested to see who myspace thinks their closest friend is.</p>
]]></content:encoded>
			<wfw:commentRss>http://xkyle.com/2006/05/22/myspace-friend-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 14/20 queries in 0.054 seconds using disk

Served from: xkyle.com @ 2010-07-31 23:35:22 -->