<?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>Darknet - The Darkside &#187; Haydies</title>
	<atom:link href="http://www.darknet.org.uk/author/haydies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darknet.org.uk</link>
	<description>Ethical Hacking, Penetration Testing &#38; Computer Security</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:34:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Link &amp; Comment Spamming &#8211; A possible solution.</title>
		<link>http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/</link>
		<comments>http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/#comments</comments>
		<pubDate>Tue, 29 Aug 2006 02:55:41 +0000</pubDate>
		<dc:creator>Haydies</dc:creator>
				<category><![CDATA[General Hacking]]></category>
		<category><![CDATA[Spammers & Scammers]]></category>
		<category><![CDATA[Web Hacking]]></category>
		<category><![CDATA[blog-spam]]></category>
		<category><![CDATA[CAPTCHA]]></category>
		<category><![CDATA[captcha-alternative]]></category>
		<category><![CDATA[captcha-replacement]]></category>
		<category><![CDATA[comment-spam]]></category>
		<category><![CDATA[comment-spamming]]></category>
		<category><![CDATA[link-spam]]></category>
		<category><![CDATA[link-spamming]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/</guid>
		<description><![CDATA[Recently one of the sites I am developing for my self was link spammed. Some unpleasant individual decided that it would be fun to post 160 &#8216;comments&#8217; spread over all the blog posts. All the comments contained was URL&#8217;s. Even more stupid they used BB tags, but as I wrote the site it doesn&#8217;t use [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Recently one of the sites I am developing for my self was link spammed. Some unpleasant individual decided that it would be fun to post 160 &#8216;comments&#8217; spread over all the blog posts. All the comments contained was URL&#8217;s. Even more stupid they used BB tags, but as I wrote the site it doesn&#8217;t use them.</p>
<p>Any way, obviously this isn&#8217;t some thing I want, so I deleted them all with a quick bit of SQL. No one else has posted a comment to the site because like I said, its still under development.</p>
<p>However, it happened once so there is no reason to think it wont happen again. I thought about the problem for a while, and the only solution is to incorporate some kind of humanity check. Because lets face it, its not like some one sat there and entered them all in. Its was some kind of bot.</p>
<p>Now, I don&#8217;t really like the ones that ask you to type the letters from some hard to read image. I can do that, no problem but they look ugly, and if the user was colour blind, or any other sight related issue, then you buggered.</p>
<p>So, I have come up with a different solution. The idea is to ask a random question, some thing that&#8217;s so easy any every one will know the answer, but unless you can read, you wont know what the answer is.</p>
<p>While I was busy implementing this solution, and believe me it didn&#8217;t take very long, another 20 comments of a very similar nature where posted. How annoying is that?</p>
<p>The solution seems to work for now. There have been no more comments since I completed the changes, but then maybe its only time until the bot gets adjusted, time will tell. But I thought other might benefit from having it so here goes, how to add random questions to your site.</p>
<p>Oh, one thing, I am not going to list my questions here, for a start it took me a shockingly long time to think of 30 really really easy questions, and I also don&#8217;t want to give a list of the question text and answers away.</p>
<p>So &#8211; on with the show. First off you will need 2 tables, one for the questions and one to keep track of what questions you have asked each user.</p>
<p>The questions table is easy, 3 coloums. Question_id, question and answer. The question id is just a unique number, the question and answer are both varchar.</p>
<p><code>
<pre>CREATE TABLE `capture_questions` (
  `question_id` bigint(20) unsigned NOT NULL auto_increment,
  `question` varchar(255) NOT NULL default '',
  `answer` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`question_id`)
) ;</pre>
<p></code></p>
<p>Then we have the table used to store the asked questions. This is even less complicated. All you need is 2 fields, one for the question that was asked ID, and one to store the users Session ID.</p>
<p><code>
<pre>
CREATE TABLE `capture_question_asked` (
  `sid` varchar(60) NOT NULL default '0',
  `qid` bigint(20) unsigned NOT NULL default '0'
);
</pre>
<p></code></p>
<p>So far, that&#8217;s all easy enough. You fill in the question table with as many questions as you can think of, along the lines of &#8220;is the sky blue&#8221; with an answer of &#8220;yes&#8221; or perhaps &#8220;What is 25 + 30&#8243; answer, obviously &#8220;55&#8243;.</p>
<p>Of course you can create the tables and this isn&#8217;t going to do a hell of a lot. So, you&#8217;ll need a class to deal with it all. This is a copy of the code, though you will notice the use of  the functions &#8220;performQuery&#8221; and &#8220;fetchRow&#8221;, these are from my own DB layer. They replace the standard MySQL commands by using a wrapper. It makes it easy to port code from one RDBMS to the other. I personally like this solution because its light weight and simple. But it&#8217;s a bit beyond the scope of this post.</p>
<p>So, the class? Its got 2 methods: getQuestion and getAnswer. They both take the a single parameter of &#8216;sid&#8217;. This is the session id, but for compatibility it is passed in to the function so it can basically be any thing.</p>
<p><code></p>
<pre>
class captureClass extends baseClass {
  function getQuestion($sid) {
    $question = false ;

    $deleteSQL = "DELETE FROM capture_question_asked " ;
    $deleteSQL .= " WHERE sid = '$sid' " ;

    performQuery($deleteSQL) ;

    $selectQuestionSQL = "SELECT question_id, question " ;
    $selectQuestionSQL .= "FROM capture_questions " ;
    $selectQuestionSQL .= "ORDER BY rand(NOW()) LIMIT 0 , 1 " ;

    $selectQuestionQuery = performQuery($selectQuestionSQL) ;

    if ($selectQuestionQuery) {
      if ($row=fetchRow($selectQuestionQuery)) {
        $question = $row['question'] ;
        $qid = $row['question_id'] ;

        $insertSQL = "INSERT INTO capture_question_asked (sid, qid) " ;
        $insertSQL .= "VALUES ('$sid', '$qid') " ;
        performQuery($insertSQL) ;
      }
    }

    return $question ;
  }

  function getAnswer($sid) {
    $answer = '' ;

    $selectQuestionIdSQL = "SELECT qid FROM capture_question_asked " ;
    $selectQuestionIdSQL .= "WHERE sid = '$sid' " ;

    $selectQuestionIdQuery = performQuery($selectQuestionIdSQL) ;

    if ($selectQuestionIdQuery) {
      if ($row=fetchRow($selectQuestionIdQuery)) {
        $qid = $row['qid'] ;
        $selectAnswerSQL = "SELECT answer FROM capture_questions " ;
        $selectAnswerSQL .= " WHERE question_id = '$qid' " ;

        $selectAnswerQuery = performQuery($selectAnswerSQL) ;

        if ($selectAnswerQuery) {
          if ($answerRow=fetchRow($selectAnswerQuery)) {
            $answer = $answerRow['answer'] ;
          }
        }
      }
    }

    return $answer ;
  }
}
</pre>
<p></code></p>
<p>How do you use it? Well, when your page displays the form you make a call to getQuestion and display it. For a while I thought about putting the question ID into the page, but only for a couple of seconds as I realised any half decent attempt to beat the system would just replace the ID with one with a known answer, infact as I suspect that the form is not used, simple data &#8220;posted&#8221; to the page, then it wouldn&#8217;t even matter.</p>
<p>That&#8217;s why we keep that information in the database.</p>
<p>Any way, once the form is submitted you then ask the class to get the answer for the current session, and compare what the user entered to the correct answer. I&#8217;d suggest forcing lower case, or upper case if you want, but basically make the comparison case insensitive.</p>
<p>If the answers don&#8217;t match then the person is, well an idiot or a bot. If no answer is available, then some ones messed with the session, or never even used the form. Doesn&#8217;t matter which, either way its an error.</p>
<p>I don&#8217;t think I will bother to explain the code it self, its really not that complicated. I think maybe the only bit that might seem a bit strange is the sql used to select a question:</p>
<p><code>
<pre>
  SELECT question_id, question FROM capture_questions
  ORDER BY rand(NOW()) LIMIT 0 , 1
</pre>
<p></code></p>
<p>This simply selects a random record from the table, because its ordered by &#8220;rand&#8221;. This basically means that for each record in the table a random number is generated, and then the records are ordered by the value. Because we only want one question we use the limit to only select the first record, how ever because each time the records are selected they will be in a different order, each time you get a different record cool ha? :-)</p>
<p>I hope this proves to work over time. I&#8217;ll have to keep any eye on it. Just to see how it goes. If any one can see any thing wrong with it, well, let me know.</p>
<p></p>
<p><a href="http://digg.com/programming/Link_Comment_Spam_A_Possible_SOLUTION">Digg This Article</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution.+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D320+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;t=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution." title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;title=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution." title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;title=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution." title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;title=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution." title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/&amp;title=Link+%26+Comment+Spamming+%E2%80%93+A+possible+solution." title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F08%2Flink-comment-spamming-a-possible-solution%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/08/link-comment-spamming-a-possible-solution/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Without OneCare in the World.</title>
		<link>http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/</link>
		<comments>http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/#comments</comments>
		<pubDate>Wed, 31 May 2006 12:16:09 +0000</pubDate>
		<dc:creator>Haydies</dc:creator>
				<category><![CDATA[Countermeasures]]></category>
		<category><![CDATA[Security Software]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[onecare]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/</guid>
		<description><![CDATA[Today sees the launch of &#8220;OneCare&#8221;, Microsofts &#8220;secrity solution&#8221;. Combining firewall, anti-virus and anti-spyware in to one handy package&#8230;. but would you trust it? I guess many people will, and over time we will find out if its a well spent $49.99 or not, but for me? I don&#8217;t think so. Microsoft do many things, [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Today sees the launch of &#8220;OneCare&#8221;, Microsofts &#8220;secrity solution&#8221;. Combining firewall, anti-virus and anti-spyware in to one handy package&#8230;. but would you trust it?</p>
<p>I guess many people will, and over time we will find out if its a well spent $49.99 or not, but for me? I don&#8217;t think so. Microsoft do many things, but I think if you ask any one they will say the same thin: Microsoft don&#8217;t really do security.</p>
<p>Microsoft have had a firewall in XP for some time now, and the malicious software removal tool has been on windows update as well. I turn off the firewall, and the remover dosn&#8217;t really seem to do any thing. Now maybe I am being unfair, but do you dare, to use OneCare?</p>
<p>The last part of OneCare is the AV, now MS must know a thing or two about virus&#8217;, and who knows the OS better then them, but still, at the end of the day Microsoft has been the main victim of Virus attacks for years, why now are they trying to combat the problem?</p>
<p>It seems to me that basicly, no matter how good or bad OneCare actualy is, Microsoft have an uphill fight against there already poor security record. I don&#8217;t think I would trust them to keep my important data safe, or my network free from nasties. I just wont, and I suspect a lot of other people will feel the same.</p>
<p>In the corparte sector, where most software is paid for, other names are well estabilished and, well, who wants to say to there boss &#8220;I thought we where protected, I installed Microsoft&#8230;..&#8221; the laugthing would echo down the halls. So, for the home with many free, and perfectly good AV out there (<a href="http://www.avast.com/">http://www.avast.com/</a>) why would home users pay?</p>
<p></p>
<p>All I can think of is that this is just a Microsoft way to expand a little, not to mention I bet it dosn&#8217;t install unless you have a &#8220;valid&#8221; windows key, the new way to force you to give more money to MS, like they need it?</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Without+OneCare+in+the+World.+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D223+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;t=Without+OneCare+in+the+World." title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;title=Without+OneCare+in+the+World." title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;title=Without+OneCare+in+the+World." title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;title=Without+OneCare+in+the+World." title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/&amp;title=Without+OneCare+in+the+World." title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F05%2Fwith-out-onecare-in-the-world%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/05/with-out-onecare-in-the-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is Open Source Really More Secure?</title>
		<link>http://www.darknet.org.uk/2006/03/is-open-source-more-secure/</link>
		<comments>http://www.darknet.org.uk/2006/03/is-open-source-more-secure/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 00:52:41 +0000</pubDate>
		<dc:creator>Haydies</dc:creator>
				<category><![CDATA[General Hacking]]></category>
		<category><![CDATA[Web Hacking]]></category>
		<category><![CDATA[darknet]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[software-security]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/03/how-open-is-open/</guid>
		<description><![CDATA[Is Open Source more secure? That&#8217;s a question that can be answered with both yes and no. Not only that, but the reasons for the &#8220;yes&#8221; and the &#8220;no&#8221; are fairly much the same. Because you can see the source the task of hacking or exploiting it is made easier, but at the same time [...]]]></description>
			<content:encoded><![CDATA[<p>Is Open Source more secure? That&#8217;s a question that can be answered with both yes and no. Not only that, but the reasons for the &#8220;yes&#8221; and the &#8220;no&#8221; are fairly much the same. Because you can see the source the task of hacking or exploiting it is made easier, but at the same time because its open, and more easily exploited the problems are more likely to be found.</p>
<p>When it comes to open source the hackers and crackers are doing us a favour, they find the problems and bring them to the attention of the world, where some bright spark will make a fix and let us all have that to. All well and good.</p>
<p>However I think this could also be a problem, because lets face it. Any monkey can download &#8220;free&#8221; software to use for this or that, with little or no idea how it actually works. They don&#8217;t check for fixes and updates, often believing &#8220;it will never happen to me&#8221;. In part this is because they just don&#8217;t see any reason for some one to hack them. But in the modern world where any script kiddie little git can download a virus construction kit, or a bot to run exploits on lists of servers its no longer a case of being targeted. They don&#8217;t care who you are, it&#8217;s the box they are after.</p>
<p>Recently a friend of mine suffered from this very problem, he didn&#8217;t believe he was worth the effort to hack. But simply by using an Open source web app he unwittingly made him self a target. Though a fix was available, he wasn&#8217;t aware of it. It was only when the host contacted him about problems that he even realised he&#8217;d been exploited.</p>
<p>With the growing popularity of the internet and open source solutions more and more unskilled users are installing software they don&#8217;t even understand. Even worse as any one application grows in popularity it grows as a worth while target for the low life script kiddies out there.</p>
<p>The problem has been exacerbated but the simple truth that with modern scripting languages such as PHP it is getting easier and easier to make some thing, being able to hack code together until it works might be fun, and you might make some thing that does the job, but its not a way to make safe secure software.</p>
<p>Most often exploits are based on stupid mistakes, errors that should have been found early on but weren&#8217;t because the code evolved, expanded and changed. No design, no planning, just code it until it works. This is the original meaning of &#8220;hacking&#8221;.</p>
<p>Now, with out mentioning names, I have pulled apart the code used in the CMS the friend I mention earlier used, and with out doubt I can say its poorly written. But it was free, so no one can complain.</p>
<p>I am sure there is some very good open source applications, linux, apache to name a few, but there is even more &#8220;open source&#8221; that&#8217;s just garbage. Just because its free doesn&#8217;t mean its good. Just because it popular doesn&#8217;t make it better. In fact as far as I can tell, if you want to use open source applications your probably better of choosing one no one else has really bothered with, that why your less likely to become a victim.</p>
<p>Closed source always has the advantage of being a little harder to find the problems, how ever, and this is important. It doesn&#8217;t mean its any better. As a friend of mine pointed out, Open source might be easier to hack in some ways, but because of that the problems come to light and generally are fixed quickly. Where as with a closed source application its actually in the interests of the authors to keep any problems hidden, if its not a common problem it may even go unfixed, because the author sees is as being unlikely any one else will ever find it. Or a fix will be bundled up with a later version and thus many people will never even know they could be at risk.</p>
<p>In the end I do believe open source is good for us all, but its important to check regularly for updates, patches and fixes. If you don&#8217;t, on your own head be it.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Is+Open+Source+Really+More+Secure%3F+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D81+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;t=Is+Open+Source+Really+More+Secure%3F" title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;title=Is+Open+Source+Really+More+Secure%3F" title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;title=Is+Open+Source+Really+More+Secure%3F" title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;title=Is+Open+Source+Really+More+Secure%3F" title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/03/is-open-source-more-secure/&amp;title=Is+Open+Source+Really+More+Secure%3F" title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F03%2Fis-open-source-more-secure%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/03/is-open-source-more-secure/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Appledoz</title>
		<link>http://www.darknet.org.uk/2006/03/appledoz/</link>
		<comments>http://www.darknet.org.uk/2006/03/appledoz/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 14:27:07 +0000</pubDate>
		<dc:creator>Haydies</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Windows Hacking]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/03/appledoz/</guid>
		<description><![CDATA[Each day I check out the technology section of the bbc site, ok, its not the most in-depth, or techy site in the world, but it covers interesting stuff. One interesting article http://news.bbc.co.uk/1/hi/technology/4816520.stm talks about getting a mac to run windows. That in it self is quite cool, but to my mind its the wrong [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Each day I check out the technology section of the bbc site, ok, its not the most in-depth, or techy site in the world, but it covers interesting stuff.</p>
<p>One interesting article <a href="http://news.bbc.co.uk/1/hi/technology/4816520.stm">http://news.bbc.co.uk/1/hi/technology/4816520.stm</a> talks about getting a mac to run windows. That in it self is quite cool, but to my mind its the wrong way.</p>
<p>Who wants to put windows on a mac? what&#8217;s the point? You can buy PC hardware for less then the mac, and they run windows with out a problem. Well&#8230;. kinda.</p>
<p>So, what would be better? Getting OSX to run on a PC. Do that and what you have is some completion to windows with an existing user base, financial backing and at least most of the applications business want.</p>
<p>Business still counts for more of the computer market. Linux has never really broken in to the desk top market, main I think because people &#8220;into&#8221; linux don&#8217;t do gui. Fundamentally linux geeks tend to not believe its worth the effort, so the gui always seems to be less the perfect.</p>
<p>OSX, now that is a desk top platform, to my understanding its based on linux, and a lot of linux apps can be built to run on it. But, like I said, its a mac so it already has a lot of the applications people want and need.</p>
<p></p>
<p>I could be wrong but to me I think this is only the start. I don&#8217;t like mac&#8217;s. I don&#8217;t want a mac, but I see OSX and it look sexy. Maybe if I didn&#8217;t need a mac to try it out I&#8217;d give it a go, but buying hardware just to run an OS I might not like? I think not.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Appledoz+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D120+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/03/appledoz/&amp;t=Appledoz" title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/03/appledoz/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/03/appledoz/&amp;title=Appledoz" title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/03/appledoz/&amp;title=Appledoz" title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/03/appledoz/&amp;title=Appledoz" title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/03/appledoz/&amp;title=Appledoz" title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F03%2Fappledoz%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/03/appledoz/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Who is Haydies? Me my self and quite possibly some one else.</title>
		<link>http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/</link>
		<comments>http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/#comments</comments>
		<pubDate>Thu, 16 Mar 2006 07:45:58 +0000</pubDate>
		<dc:creator>Haydies</dc:creator>
				<category><![CDATA[Authors]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[darknet]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[haydies]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[writer]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/</guid>
		<description><![CDATA[Shaolin introduced him self, and said he had asked every one to do like wise. News to me mate :-P or did that slip my mind? Can&#8217;t see how it could but one never knows&#8230; So, any way, who the hell am I? I have known Shaolin for years, he might have some idea how [...]]]></description>
			<content:encoded><![CDATA[<p>Shaolin introduced him self, and said he had asked every one to do like wise. News to me mate :-P or did that slip my mind? Can&#8217;t see how it could but one never knows&#8230;</p>
<p>So, any way, who the hell am I? I have known Shaolin for years, he might have some idea how many, I am on that old darknet site he mentioned, but do me and favour, and don&#8217;t look there, please? I look terrible and I&#8217;m ashamed :-P</p>
<p>Like Shaolin I to started with the whole computer thing when I was little. The order is a little haszy, but I am fairly sure I had the TI 994A before the little old specy. Though my use of them was a little differant. True, I did for a while spend many hours typeing code to find out later it didn&#8217;t work&#8230;. but before long I was coding my own stuff. In basic on the TI, and z80 assembler on the specy, pascal and modual 2 to on the Amstrad CPC, 6800 assembler and C on the ST&#8230;.</p>
<p>TI, Spectrum, Comador, Atari ST, 386 and beyond, I have always live with a computer, though shockingly never games. My first consol was a ps2 and that is only 4 years old.</p>
<p>After many years of bedroom activites I definatly should be ashamed of (all with a keyboard &#8211; and check this? no net connection) I emerged in the bright old world, a whole host of dead technology and languages no one has used since the romans under my belt, and windows gaining popularity.</p>
<p>Fast forward, past VB, pal, and various noddy little things and I&#8217;m in to Delphi, oh my, was I in to Delphi. For 7 years I lived, breathed and probably bathed in the windows API and OOP. Gone was Delphi&#8217;s native event handlers, to slow, give me the raw message cue&#8230;. mutli threaded servers, no problem, n-tier CORBA clients&#8230; you name it, I did it.</p>
<p><div align="center"><script type="text/javascript"><!--
google_ad_client = "pub-3033787195489589";
/* Darknet-BodyRec */
google_ad_slot = "8649785837";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
<p><em>Then I got bored.</em></p>
<p>But thats ok, no one wants desk top or server applications any more. So, a bit late to the party I had a go at ASP, and damn that stuffs ugly. PHP how ever, now thats the nuts, and thus I entered web development.</p>
<p>Some one once said I&#8217;d never be a web developer, but my first ever professional site went live to 2.5 million unique IPs in the first 48 hours, truely one of my proudest hours.</p>
<p>I&#8217;ve been doing PHP ever since, MySQL for most part but if its SQL, its all the same. Date in and data out, its all fairly much simple. Introduce some AJAX just to spice it up a bit, and we&#8217;re all having fun.</p>
<p>Where I am going from here, nobody knows, but I code, there for I am so what ever happens, what ever changes&#8230; I am a programmer :-)</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else.+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D115+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;t=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else." title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;title=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else." title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;title=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else." title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;title=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else." title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/&amp;title=Who+is+Haydies%3F+Me+my+self+and+quite+possibly+some+one+else." title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F03%2Fwho-is-haydies-me-my-self-and-quite-possibly-some-one-else%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/03/who-is-haydies-me-my-self-and-quite-possibly-some-one-else/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

