<?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>TAZ: TheTAZZone Network &#187; security tutorials</title>
	<atom:link href="http://www.thetazzone.com/category/security-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetazzone.com</link>
	<description>Welcome to Internet Chaos: 960+ Games; Security, Networking, and General Tutorials; IRC Chat; and an Active Forum Community</description>
	<lastBuildDate>Sun, 22 Nov 2009 02:06:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tutorial &#8211; ToolTips (flash MX)</title>
		<link>http://www.thetazzone.com/tutorial-tooltips-flash-mx/</link>
		<comments>http://www.thetazzone.com/tutorial-tooltips-flash-mx/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 02:03:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash tutorials]]></category>
		<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=824</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=895">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=895#">Select all</a></dt>
<dd><code>This is the original work of Valhallen, whom has allowed The TAZ to host his work on our site.<br />
Please find the original here:<br />
http://www.antionline.com/showthread.php?s=&amp;threadid=246123 </code></dd>
</dl>
<p>OK this is tutorial is written by me but has been adapted from script taken from ActionScript for Flash MX (book) by Friends of ED</p>
<p>Ok basically what I am going to show you is a way of creating a dragable movieclip in Flash MX that in conjuction with flash&#8217;s ability to record collisions can be used to create a help function type tooltip</p>
<p>Now yes I know it could be done using the on(Rollover) function as well but this is just to show a different way and also to give some people a taste of dragable movieclips (mc) and detecting collisions&#8230;.</p>
<p>Ok first of all lets set up the movie</p>
<p>Open a new flash document and create 2 layers named Graphics &amp; Actions</p>
<p>Ok the graphics layer is going to hold your dragable movieclip and the buttons and the top layer is going to be just for your actions.</p>
<p>Now your going to need two mc&#8217;s in your graphics area one will be your Hit area and the other your dragable mc</p>
<p>give your hitarea the instance name hitarea<br />
and your dragable mc the instance name Ques01</p>
<p>The hit area mc can contain whatever you want &#8211; in the example .fla is just text but you can place a button anything in it</p>
<p>The Ques01 must have a dynamic text field in it to display your tooltip</p>
<p>ok now lets add your code to the top layer</p>
<p><span style="color: blue;">tooltip = function () {</span><br />
<span style="color: red;">this.onPress = function() {<br />
this.startDrag(&#8221;");<br />
this.onMouseMove = function() {<br />
updateAfterEvent();<br />
};<br />
};<br />
this.onRelease = function() {<br />
this.stopDrag();<br />
this.onMouseMove = undefined;<br />
[color=green]};<br />
this.onReleaseOutside = function() {<br />
this.stopDrag();</span> };<br />
this.onEnterFrame = function() {<br />
this.coll = &#8220;&#8221;;<br />
if (this.hitTest(&#8221;_root.hitarea&#8221;)) {<br />
this.coll = &#8220;links&#8221;;[/color]<br />
<span style="color: indigo;"> }<br />
};<br />
};<br />
tooltip.apply(ques01);</span></p>
<p>ok the blue part of the code defines a new function called tooltip<br />
the red sets up the dragable mc<br />
the Green tells it to display the text links whenever a collision is detected over the hitarea<br />
&amp; the purple area of the code tells it to apply the rules set out in the function tooltip to the mc called Ques01</p>
<p>test your movie when you click and drag the mc Ques01 over the hit area it should display the text links</p>
<p>ok I know I aint gone into it into too much depth but it should be enough to get you started if you want to add multiple hit areas then you need to alter your code slightly</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=895#">Select all</a></dt>
<dd><code>if (this.hitTest("_root.hitarea")) {<br />
this.coll = "links";<br />
}</code></dd>
</dl>
<p>just alter this code and place it after the original for example if we had 3 hit areas labeled hitarea, hitarea2 &amp; hitarea3 then our code would be&#8230;..</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=895#">Select all</a></dt>
<dd><code>if (this.hitTest("_root.hitarea")) {<br />
this.coll = "links";<br />
}<br />
if (this.hitTest("_root.hitarea2")) {<br />
this.coll = "links 2";<br />
}<br />
if (this.hitTest("_root.hitarea3")) {<br />
this.coll = "links 3";<br />
}</code></dd>
</dl>
<p>the _root tells flash that the mc it is looking for is on the main time line &#8211; if your movie clip was inside another which was on the main timeline the code would look something like _root.firstclip.yourclip</p>
<p>thanks</p>
<p>v_Ln</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-tooltips-flash-mx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Find the Mouse Location in Flash (5 &amp; MX)</title>
		<link>http://www.thetazzone.com/tutorial-find-the-mouse-location-in-flash-5-mx/</link>
		<comments>http://www.thetazzone.com/tutorial-find-the-mouse-location-in-flash-5-mx/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:01:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash tutorials]]></category>
		<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=822</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>With kind permission from Valhallen we are glad to be able to host this tutorial of his on The TAZ.<br />
</code></dd>
</dl>
<p>Ok this tut will use the old Flash 5 way of coding (may work in earlier versions to tho not sure) simply for the fact I taught myself in Flash 5 and have still not completly transfered to Flash MX coding</p>
<p>Ok basically what this will allow you to do is have a cross hair follow the mouse around the screen &#8211; in the example I have used it to find locations on a map but really is just to show you a little of how to use flash&#8217;s ability to move movieclips (mc) depending on mouse postion.</p>
<p>In the example you can see there are 5 main elements</p>
<p>Crosshair</p>
<p>Vertical bar</p>
<p>Horiz bar</p>
<p>Map</p>
<p>I know I said 5 and there are only 4 there but the crosshair is actiualy made of tewo parts the inner circle and the lines.</p>
<p>ok lets set up our movie -<br />
your gonna need 8 layers :::</p>
<p>Map</p>
<p>Border</p>
<p>Horiz bar</p>
<p>Vert bar</p>
<p>circle</p>
<p>lines</p>
<p>Buttons</p>
<p>actions</p>
<p>ok the first 2 are self explanitary as is the two bars (just make sure they are long enough) also as we will be applying actionscript to the bars please make sure they are movieclips</p>
<p>the circle and lines mc&#8217;s will contain the animation for when you mouse over an active area</p>
<p>the first frame in each mc should be when it is at rest make sure to also add a</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>stop();</code></dd>
</dl>
<p>function on the first frame<br />
now animate it when you rollover and rollout making sure to add another stop at the end of the rollover animation (not following me &#8211; take a look at the .fla while reading this tutorial for a better idea)</p>
<p>ok once you have your mc made add them to the main timeline on the correct layers (by giving everything its own labeled layer and mc now it makes editing one element at a later time alot easier and is good practice for when you try more advanced flash projects)</p>
<p>right now we got to add our buttons &#8211; i drew roughly round the different areas on the map but if you want (and are better at geography than me) you could add lil dots for actual places etc</p>
<p>once you have your buttons made set their alpha to 0 (unless you want them to be seen)</p>
<p>ok time to add our code :::</p>
<p>click once on the horiz bar mc and add this code</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>onClipEvent (enterFrame) {<br />
_y += (_parent._ymouse-_y);<br />
}</code></dd>
</dl>
<p>This tells flash to move the mc along with the mouse along the Y axis</p>
<p>ok now the vert bar :::</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>onClipEvent (enterFrame) {<br />
_x += (_parent._xmouse-_x);</code></p>
<p>}</p>
</dd>
</dl>
<p>exactly same thing but now is getting postion along X axis</p>
<p>ok adding the code to our circle and lines mc is just the same except we need it to get both the X &amp; Y postions &#8211; the code for both movies is the same</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>onClipEvent (enterFrame) {<br />
_x += (_parent._xmouse-_x);<br />
_y += (_parent._ymouse-_y);<br />
}</code></dd>
</dl>
<p>dont forget to give your mc&#8217;s instance names (i just used circle &amp; lines) as we will be refering to them in our code a little later</p>
<p>now we have got to tell the flash movie what to do when you move over one of our buttons</p>
<p>the code is the same for all the buttons :::</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>on(rollover){<br />
_root.circle.gotoAndPlay(2);<br />
_root.lines.gotoAndPlay(2);<br />
}<br />
on(rollout){<br />
_root.circle.gotoAndPlay(6);<br />
_root.lines.gotoAndPlay(8);<br />
}</code></dd>
</dl>
<p>now the frame numbers are just waht i used in my .fla and these will need to be changed depending upon the set up og your own mc&#8217;s</p>
<p>a quick break down of the code :::</p>
<p>on(rollout){ &#8211; tells flash to perform the following function when the mouse is placed over the button</p>
<p>_root.circle.gotoAndPlay(6); &#8211; this means that flash is to look for the mc (instance) name circle and go to the 6 frame and play</p>
<p>simple</p>
<p>***Flash Mx only***<br />
I&#8217;m not sure as I have not tested but if you wanted to code it in flash MX i think instead of placing the rollover &amp; rollout code on each button you could use</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>display = function () {</code></dd>
</dl>
<p>and then define the function before using</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>display.apply(button);</code></dd>
</dl>
<p>to attach the function to each button?</p>
<p>****End of Flash MX only****</p>
<p>Ok if you test it now you should see that the horiz line, vert line and both mc&#8217;s follow the cursor but lets get rid of the cursour as well</p>
<p>in your actions layer place the following code</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=894#">Select all</a></dt>
<dd><code>Mouse.hide();<br />
stop();</code></dd>
</dl>
<p>so there you go thats it now there are other things that could be done with this &#8211; add a mc at the bottom to display different flags depending what country you are over etc &#8211; it could even be used as the basis of a lash shooting game!!</p>
<p>v_Ln</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-find-the-mouse-location-in-flash-5-mx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Displaying Date/Time in Flash MX</title>
		<link>http://www.thetazzone.com/tutorial-displaying-datetime-in-flash-mx/</link>
		<comments>http://www.thetazzone.com/tutorial-displaying-datetime-in-flash-mx/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:56:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash tutorials]]></category>
		<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=820</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=893">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<p>[code]Valhallen had very kindly allowed us to host his tutorial on The TAZ.</p>
<p>Enjoy!<br />
[/code]</p>
<p>Ok now this is not the easiest way of doing this in Flash Mx but it does use the new switch function so thought would let everyone see it<br />
original tut is at -&gt; [url]http://www.actionscript.org/tutoria&#8230;ime/index.shtml[/url]</p>
<p>thought I would rewrite it to make it a bit easier to understand and also add some extra functionality to it&#8230;&#8230;</p>
<p>ok so lets start your new movie ::::</p>
<p>first create a new movieclip called date_mc &#8211; this will hold your actual display so in it create a dynamic text box called date_txt</p>
<p>set the proporties (text font/color etc) and then name it as date_txt &#8211; this is done in the proporties menu were it says var</p>
<p>ok now still in your date_mc create a new keyframe on frame 2 &#8211; change the date_txt&#8217;s name in this frame (not first one) to date_txt2</p>
<p>ok now drag an instance of this movieclip onto the main timeline &#8211; give it an instance name of date_mc</p>
<p>ok almost done now just to make our button &#8211; create a new layer above the one holding date_mc and use the fill rectangle tool to draw a large rectangle covering your date_mc &#8211; set line to off and pick any color you wish &#8211; doesn&#8217;t matter wont be seen.</p>
<p>Now select the rectangle and convert it to a button (press F8 in windows) called date_btn &#8211; now set its instance name to the same (date_btn) and then change its alpha (in proporties menu) to 0% so is invisible</p>
<p>ok now for the code ::::</p>
<p>in the date_mc movieclip insert a stop action on frame 1 like so</p>
<p>[code]stop(); [/code]</p>
<p>and then on your main timeline create a new layer called actions and insert this code :::</p>
<p>code:&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;[code]function howlong(arg) {<br />
if (length(arg)==1) {<br />
arg = "0" + arg;<br />
return arg;<br />
}<br />
else {<br />
arg = arg;<br />
return arg;<br />
}<br />
}<br />
myDate = new Date();</p>
<p>hr = howlong(String(myDate.getHours()));<br />
mnt = howlong(String(myDate.getMinutes()));</p>
<p>daytext = myDate.getDay();<br />
dd = myDate.getDate();<br />
mm = myDate.getMonth();<br />
yyyy = myDate.getFullYear();</p>
<p>switch (daytext) {<br />
case 0:	daytext = "Sunday";<br />
break;<br />
case 1:	daytext = "Monday";<br />
break;<br />
case 2:	daytext = "Tuesday";<br />
break;<br />
case 3:	daytext = "Wednesday";<br />
break;<br />
case 4:	daytext = "Thursday";<br />
break<br />
case 5:	daytext = "Friday";<br />
break;<br />
case 6:	daytext = "Saturday";<br />
break<br />
}</p>
<p>switch (mm) {<br />
case 0:		mm = "January";<br />
break;<br />
case 1:		mm = "February";<br />
break;<br />
case 2:		mm = "March";<br />
break;<br />
case 3:		mm = "April";<br />
break;<br />
case 4:		mm = "May";<br />
break<br />
case 5:		mm = "June";<br />
break;<br />
case 6:		mm = "July";<br />
break<br />
case 7:		mm = "August";<br />
break<br />
case 8:		mm = "September";<br />
break<br />
case 9:		mm = "October";<br />
break<br />
case 10:	mm = "November";<br />
break<br />
case 11:	mm = "December";<br />
break<br />
}</p>
<p>_root.date_mc.date_txt = (hr + ":" + mnt)<br />
_root.date_mc.date_txt2 = (daytext + "," + dd + " " + mm + " " + yyyy)</p>
<p>date_btn.onRollOver = function(){<br />
_root.date_mc.gotoAndStop(2);<br />
}<br />
date_btn.onRollOut = function(){<br />
_root.date_mc.gotoAndStop(1);<br />
}<br />
[/code]</p>
<p>ok the code is pretty much self explanitary &#8211; and is explained here -&gt; [url]http://www.actionscript.org/tutoria&#8230;ime/index.shtml[/url]</p>
<p>but i will go over the changes i made ::: the last part</p>
<p>[code]_root.date_mc.date_txt = (hr + ":" + mnt)<br />
_root.date_mc.date_txt2 = (daytext + "," + dd + " " + mm + " " + yyyy)</p>
<p>date_btn.onRollOver = function(){<br />
_root.date_mc.gotoAndStop(2);<br />
}<br />
date_btn.onRollOut = function(){<br />
_root.date_mc.gotoAndStop(1);<br />
}<br />
[/code]</p>
<p>as you can see the original tut just had a static display showing date/time &#8211; now i have altered it so that time is displayed until you mouseover and then it switches to date &#8211; this is easily done</p>
<p>the first 2 lines assign the values to the 2 different txt fields<br />
then the button actions tell it which frame in date_mc to look at &#8211; now because the different txt fields are on different frames only one is visible either date/time</p>
<p>could also have been done using visible = false;</p>
<p>eg ::::</p>
<p>code:&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;[code]date_btn.onRollOver = function(){<br />
date_txt._visible = false;<br />
date_txt2._visible = true;<br />
}<br />
[/code]</p>
<p>but i like to keep everything neatly in its own movieclips</p>
<p>v_Ln</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-displaying-datetime-in-flash-mx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Create an Old Style Movie in Flash</title>
		<link>http://www.thetazzone.com/tutorial-create-an-old-style-movie-in-flash/</link>
		<comments>http://www.thetazzone.com/tutorial-create-an-old-style-movie-in-flash/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 01:53:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash tutorials]]></category>
		<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=817</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=892">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=892#">Select all</a></dt>
<dd><code>This tutorial is written by Valhallen who has kindly allowed us to host it on the TAZ in the hope it may benifit members of our community!<br />
</code></dd>
</dl>
<p>I haven&#8217;t written anything for a while so I thought i&#8217;d do YET ANOTHER Flash Tutorial<br />
In this tutorial I&#8217;ll describe how to make an old movie style effect like the one seen here in my web-site intro&#8230;am afraid however that due to a hosting problem the rest of the site is down atm but I hope to get it back up very soon<br />
Anyways on with the tutorial</p>
<p>Create your flash movie</p>
<p>Insert a new layer above the rest used in your movie</p>
<p>Create a new movie clip and name it speckles</p>
<p>Create another new movie clip and call it dots</p>
<p>Ok now in the speckles movie clip draw well your speckles obviously &#8211; not too many as you don&#8217;t want your movie to look too crowded&#8230;..</p>
<p>Do the same for the dots movieclip</p>
<p>Now place both movieclips in your new layer outside of the movie&#8230;.</p>
<p>Click on speckles and give it an instance name &#8211; I&#8217;ll just call it speckles again</p>
<p>Open the actions panel and insert this actionscript&#8230;.</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=892#">Select all</a></dt>
<dd><code>onClipEvent(load){<br />
if (this._name&lt;&gt;"speckles"){<br />
this._x=random(600);<br />
this._y=random(400);<br />
deedee=random(100);<br />
this._xscale=deedee;<br />
this._yscale=deedee;<br />
}<br />
}</code></dd>
</dl>
<p>don&#8217;t forget to change the instance name in bold to whatever you have called it and the numbers in blue to the dimensions of your movie clip</p>
<p>now you need to create another new movieclip name it actions<br />
this movieclip does not need anythign inside it as it will simply control our speckles action.</p>
<p>Place a copy of actions in the layer outside of the movie same as you have done for speckles and open the actions panel<br />
insert this actionscript</p>
<p>code:&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=892#">Select all</a></dt>
<dd><code>onClipEvent(enterFrame){<br />
for (l=0; l&lt;=2; l++)<br />
{<br />
_root.speckles.duplicateMovieClip( "speckles"+l, l+1);<br />
}<br />
if (l=2){<br />
l=0;<br />
}<br />
}<br />
</code></dd>
</dl>
<p>remember once again to change the name in bold</p>
<p>Now just do the same for the dots movie clip</p>
<p>You will need a new action movieclip as well tho</p>
<p>!! Remember to change the instance letter in the actionscript !!</p>
<p>the instance letter is in blue and needs to be different for each movieclip!</p>
<p>Also by changing the number in green you can alter the number of copies of the movieclip that appear on screen at any one time.</p>
<p>well hope somebody found this of use =^_^=</p>
<p>v_Ln</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-create-an-old-style-movie-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Adwords &#8211; A Strategy Tutorial</title>
		<link>http://www.thetazzone.com/google-adwords-a-strategy-tutorial/</link>
		<comments>http://www.thetazzone.com/google-adwords-a-strategy-tutorial/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 01:51:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=815</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NTSA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NTSA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=737">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<p>I wrote the following tutorial on Google Adwords strategy for a customer (<a class="postlink" href="https://home.mods4.net/">https://home.mods4.net</a>), and decided to cross post it here, as it may be useful for any budding intrepreneurs out there. You can change the figures/keywords shown here to suit your actual project and budjet, but the thoery remains constant&#8230;</p>
<p><span style="font-weight: bold;">Introduction</span></p>
<p>For each site I wish to promote I create 2 adword campaigns &#8211; one called whatever_hi and another called whatever_lo.</p>
<p>The _lo campaign contains very specific keywords (eg &#8220;Renault Clio Modification&#8221;) that are very low in terms of cost per click (CPC) but also have less predicted traffic. The _hi adverts contain more generic keywords (eg &#8220;Car Parts&#8221;) that have a much higher CPC but are more commonly typed into Google (so more traffic).</p>
<p><span style="font-weight: bold;">_lo Ads</span></p>
<p>The very specific keywords in the _lo campaigns should always generate an advert to us. They represent the best chance of a sale because the browser is searching for EXACTLY what we provide. To ensure that this is the case I set the budjet for _lo campaigns artificially high, at £100/day, so that we never lose potential sales on these keywords.</p>
<p>However, Google estimates that the _lo campaigns are likley to generate less than £10 of (well qualified) clicks per day, so even if there were 10 times the normal daily rate of searches on these keywords we would still capture all of them.</p>
<p><span style="font-weight: bold;">_hi Ads</span></p>
<p>The _hi campaigns contain common (fiercly competitive, which increases the CPC) keywords. These keyords generate a lot of traffic, but require a lot more clicks/actual sale. This is because hundreds of people may type just &#8220;subaru&#8221; into Google before there is one who both owns the car and who is looking to modify it.</p>
<p>That said, we still need to advertise to people who just type &#8220;Subaru&#8221; into Google, because any of these searches may be from a potential customer, but from a return on investment (ROI) perspective the larger the proportion of our budjet that can be spent on the _lo ads the better.</p>
<p><span style="font-weight: bold;">Budjet Considerations</span></p>
<p>So we pay for our _lo ads first, and then we buy as many _hi ads as we can afford from whats left of our budjet afterwards. There will therefore be a continual tweaking process (especially to start) to make sure that we are within our budjet.</p>
<p>If we exceed budjet on a given day we can reduce the _hi budjets for the following day as neccecary. When the daily budjet of a _hi ad is reached Google simply stops showing it till the next day.</p>
<p>[The customer] has suggested a £200/day budjet, so I have also set £100 each on each live _hi ad (Home and Subaru). We will ammend this figure as we see how much we are spending on their respective _lo ads.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/google-adwords-a-strategy-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Network Intrusions</title>
		<link>http://www.thetazzone.com/tutorial-network-intrusions/</link>
		<comments>http://www.thetazzone.com/tutorial-network-intrusions/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 01:48:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=812</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=731">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<div class="content">
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=731#">Select all</a></dt>
<dd><code>This excellent tutorial is the work of NTSA, who has very kindly consented to the TAZ hosting it.</code></p>
<p>Enjoy!</p>
</dd>
</dl>
<p>This is an impromptu tutorial on tracing skiddiots &#8211; because I just found one in our logs:</p>
<blockquote class="uncited">
<div>ClientHost LogTime Service Machine<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
199.111.104.201 2002-06-15 17:49:30.000 W3SVC1 NTSA-SERV</p>
<p>ServerIP Target Parameters<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
xxx.xxx.xxx.xxx /scripts/..%5c%5c../winnt/system32/cmd.exe /c+dir</p></div>
</blockquote>
<p>I&#8217;m sure we all recoginse the cook-book directory traversal explot attempted here (which failed btw). So it&#8217;s a kiddiot. Let&#8217;s take a quick trip to<!-- w --> <a class="postlink" href="http://www.samspade.org/">www.samspade.org</a><!-- w --> :</p>
<blockquote class="uncited">
<div>Trying whois -h whois.arin.net 199.111.104.201<br />
VERnet (NETBLK-VERNET-CIDR1)<br />
University of Virginia<br />
Academic Computing Center<br />
Gilmer Hall<br />
Charlottesville, VA 22901<br />
US</p>
<p>Netname: NETBLK-VERNET-CIDR1<br />
Netblock: 199.111.0.0 &#8211; 199.111.255.255<br />
Maintainer: VER</p>
<p>Coordinator:<br />
Jokl, James A. (JAJ17-ARIN) <!-- e --><a href="mailto:jaj@VIRGINIA.EDU">jaj@VIRGINIA.EDU</a><!-- e --><br />
(804) 924-0616</p>
<p>Domain System inverse mapping provided by:</p>
<p>UVAARPA.VIRGINIA.EDU 128.143.2.7<br />
JUNO.ACC.VIRGINIA.EDU 128.143.22.119</p>
<p>Record last updated on 05-Apr-1994.<br />
Database last updated on 14-Jun-2002 20:01:02 EDT.</p></div>
</blockquote>
<p>So the kiddiot is (probably) a student at University of Virginia. A nasty letter to the Netblock administartor will mean that&#8217;s one kiddiot who&#8217;s in for a nasty shock monday morning Word Up &#8211; and the word was &#8216;busted&#8217;.</p>
<blockquote class="uncited">
<div>Hi &#8211;</p>
<p>You are listed as the admin contact for the Netblock: 199.111.0.0 &#8211; 199.111.255.255</p>
<p>University of Virginia<br />
Academic Computing Center<br />
Gilmer Hall<br />
Charlottesville, VA 22901</p>
<p>We monitored an attempted network intrusion from an address in your IP range today (2002-06-15). The attack, (which failed) came from IP address 199.111.104.201 at 17:49:30(GMT). The actual attack attempted was a simple directory traversal expolit against a command line.</p>
<p>I would be grateful if you could take appropriate sanctions against the student involved. Someone obviously considers themselves to be &#8216;l33t&#8217; &#8211; perhaps you could explain to them that under new US legislation that such exploits are classed as terrorism.</p>
<p>Regards,</p></div>
</blockquote>
</div>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-network-intrusions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Ad Blocking w/o Third Party Software</title>
		<link>http://www.thetazzone.com/tutorial-ad-blocking-wo-third-party-software/</link>
		<comments>http://www.thetazzone.com/tutorial-ad-blocking-wo-third-party-software/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:46:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=810</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=720">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<p>[code]Soda_Popinsky has very kindly allowed this tutorial of his to be hosted on the TAZ.<br />
[/code]</p>
<p>[u][b]Ad Blocking without Third Party Software[/b][/u]</p>
<p>Summary:</p>
<p>Hardening IE to prevent users from downloading malicious material from untrusted sites, while blocking pop ups and ads as well.</p>
<p>What this will do is configure Internet Internet Explorer to allow scripts and such to run on certain, trusted sites. This benefits the work enviroment to prevent users from visiting and downloading malicious material onto their computers, but allows them to use company web applications that require scripts.</p>
<p>1. Open Internet Explorer -&gt; Tools -&gt; Click the Security Tab</p>
<p>You should see 4 security zones. This is where you will outline the policys regarding certain types of sites. The globe represents the internet, and is where most of the action will happen.</p>
<p>2. Click the globe, press custom level below.</p>
<p>You will see options to enable, disable, or prompt to accept certain types of scripts. These include .net components, activex, downloads, MS virtual machine, Java, and javascripts.</p>
<p>Google definition of active x:</p>
<p>[quote]Set of platform independent technologies developed by Microsoft that enable software components to interact with one another in a networked environment, like the Internet. In addition to adding functionality within the browser (for example, by enabling Microsoft Word to be opened in a browser) Active X components can be exploited by malicious mobile code.[/quote]</p>
<p>Basically, it&#8217;s through these scripts that brower hijacks and popups are allowed. With these functions denied, pop ups and hijacks simply don&#8217;t work. Looking at the custom options for the internet, It&#8217;s your decision what you should allow and not allow. If your office is rampant with spyware, then consider disabling a lot. If you don&#8217;t want your users to download anything at all, then you have the option to block that as well. This should help slow things like kazaa from entering your network.</p>
<p>If you were to leave the settings as they are now, then your users wouldn&#8217;t be able to access the web applications with scripts to do their jobs. If your company&#8217;s site relies on java and flash, then you need to allow that do run their scripts.</p>
<p>1. Click the trusted sites icon (green icon with a check)<br />
2. Click Custom level below</p>
<p>You will be in the same window as before, but these settings won&#8217;t change the settings of the other zone. This zone represents sites you trust, the last one represented the rest of the sites on the internet. Change the settings accordingly to allow more functionality to the sites your users need to use for their job. Warez and porn obviously not included. Once this is done-</p>
<p>1. Click the sites button above the custom level button<br />
2. Uncheck the https:// option if necessary, and add the URL&#8217;s to the sites you trust.</p>
<p>If you work for Microsoft, then add Microsoft.com. If you do business with Amazon, then add Amazon.com to the list. Be sure to include all the sites your users will need to use. The same process is used for the intranet zone.</p>
<p>The Privacy Tab<br />
In the internet options window, navigate to the privacy tab. This panel will allow you to adjust cookie handling for certain sites. Adjusting the slider will give you information about each setting. You can also click customize, and have it block all cookies. Under this tab, there is an edit sites option. You can allow your trusted sites in here as well, to accept cookies. Unfortunately, you have to add them again manually, as they aren&#8217;t imported from your other trusted sites.</p>
<p>Manual Ad Blocking</p>
<p>I don&#8217;t think I recommend this for office environments, but on an individual basis, this helps. Open the host file for your Windows OS, found in one of these places:<br />
Win 98 or ME c:\windows<br />
Windows 2K c:\winnt\system32\drivers\etc<br />
Windows XP c:\windows\system32\drivers\etc</p>
<p>You will be editing a system file here, so the obvious warnings apply. Open the &#8220;Hosts&#8221; file with notepad. Mine looks like this:</p>
<p>[code]# Copyright (c) 1993-1999 Microsoft Corp.<br />
#<br />
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
#<br />
# This file contains the mappings of IP addresses to host names. Each<br />
# entry should be kept on an individual line. The IP address should<br />
# be placed in the first column followed by the corresponding host name.<br />
# The IP address and the host name should be separated by at least one<br />
# space.<br />
#<br />
# Additionally, comments (such as these) may be inserted on individual<br />
# lines or following the machine name denoted by a '#' symbol.<br />
#<br />
# For example:<br />
#<br />
#      102.54.94.97     rhino.acme.com          # source server<br />
#       38.25.63.10     x.acme.com              # x client host</p>
<p>127.0.0.1       localhost<br />
[/code]</p>
<p>What this file does is associate a word with an IP. When you type http://localhost in your browser, it redirects it to your local address, &#8220;127.0.0.1&#8243;.<br />
if you added the entry:</p>
<p>[code]63.146.109.212     antionline[/code]</p>
<p>Then by typing http://antionline in your browser would lead you to antionline.com (63.146.109.212).</p>
<p>This file can be used to redirect ads. These entries</p>
<p>[code]127.0.0.1       63.236.18.118<br />
127.0.0.1       mjxads.internet.com[/code]</p>
<p>Will block the ads on Antionline.com. mjxads.internet.com is the home of the flash ads, and the IP is for the gif ads that replace them if scripting is disabled. The Ads are redirected to 127.0.0.1, and never appear in the browser. You can handle ad servers on a case by case basis, adding them to the host file. Some anti-spyware software looks at the host file, so I would be careful when running it, and adding entries to the host file. When you see this file, you might see some entrys that have been added by spyware as well. Remember, this is a system file, so the obvious warnings apply when editing it.</p>
<p>All suggestions, complaints and whatever are welcome.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-ad-blocking-wo-third-party-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Hijack This usage</title>
		<link>http://www.thetazzone.com/tutorial-hijack-this-usage/</link>
		<comments>http://www.thetazzone.com/tutorial-hijack-this-usage/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 01:37:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>
		<category><![CDATA[hijackthis]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=808</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=715">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=715#">Select all</a></dt>
<dd><code>Soda_Popinsky has very kindly allowed this tutorial of his to be hosted on the TAZ.</code></p>
</dd>
</dl>
<p>Sources (I used them a lot)<br />
<a class="postlink" href="http://www.mjc1.com/mirror/hjt/">http://www.mjc1.com/mirror/hjt/</a><br />
<a class="postlink" href="http://hjt.wizardsofwebsites.com/">http://hjt.wizardsofwebsites.com/</a></p>
<p>What Hijack This is for, is to search key area’s of your computer that are commonly used to change your browsers settings. It doesn’t scan them, it shows you everything, and it’s your decision what can stay and what can go. Most of the entries Hijack This will come up with are legit, so it can make Hijack This somewhat tricky. You have to determine what stays and what goes.</p>
<p>Download Hijack this</p>
<p><!-- m --><a class="postlink" href="http://209.133.47.200/%7Emerijn/files/HijackThis.exe">http://209.133.47.200/~merijn/files/HijackThis.exe</a></p>
<p><!-- m --><br />
If you have used ad-aware, spybot, or any other spyware removal software since your last boot, reboot your computer. Open it, click ”config” in the bottom right of the window.<br />
edit- Because of malware restricting access to the site, merjin moves the download links around.</p>
<p><!-- m --><a class="postlink" href="http://www.spywareinfo.com/%7Emerijn/downloads.html">http://www.spywareinfo.com/~merijn/downloads.html</a></p>
<p><!-- m --></p>
<p>It should look like this when you run it:</p>
<p><!-- m --><a class="postlink" href="http://www.mjc1.com/mirror/hjt/begin.png">http://www.mjc1.com/mirror/hjt/begin.png</a></p>
<p><!-- m --></p>
<p>Main settings:<br />
Basic configuration Make sure safe mode and backups are turned on, as well as processes. Safe mode and backups will help you if you screw up.<br />
Ignore list:<br />
Used to help clean up your results. When you scan, you can ignore results you know are legit and they will be moved here.<br />
Backups<br />
When you fix entries in Hijack This, they will appear here as backups, given that you’re setting is turned on.<br />
Misc Tools:<br />
Generate Startup Log &#8211; I’ve never used it, but it does what it says. Shows you autoexec.bat and other things that boot up with your pc.<br />
Uninstall<br />
Check for update &#8211; I didn’t even know that existed until now…</p>
<p>The process!</p>
<p>Click scan in the bottom left corner, if you don’t see it, click back in the bottom right corner.<br />
Should look like this:</p>
<p><!-- m --><a class="postlink" href="http://www.mjc1.com/mirror/hjt/fix.png">http://www.mjc1.com/mirror/hjt/fix.png</a></p>
<p><!-- m --></p>
<p>A whole bunch of crazy lookin’ files will appear in the box above. About now, you have to start using common sense. If you see something like:<br />
R0 &#8211; HKCU\Software\Microsoft\Internet Explorer\Main,Start Page =</p>
<p><!-- m --><a class="postlink" href="http://www.somekindapornsite.com/">http://www.somekindapornsite.com/</a></p>
<p><!-- m --><br />
Where the website shown is something you want nothing to do with, then check it. Basically, you just need to look for entries that look funny, google them, and see if they are commonly listed as a hijack or spyware.</p>
<p>Here is a section from <a class="postlink" href="http://hjt.wizardsofwebsites.com/">http://hjt.wizardsofwebsites.com/</a></p>
<blockquote class="uncited">
<div>Two Letter Codes<br />
After the running processes, the list of entries found by Hijack This begins. Each entry starts with a 2-letter code to say what it is. According to Hijack This&#8217; Info, heres what each code means:<br />
R &#8211; Registry, StartPage/SearchPage changes<br />
R0 &#8211; Changed registry value<br />
R1 &#8211; Created registry value<br />
R2 &#8211; Created registry key<br />
R3 &#8211; Created extra registry value where only one should be<br />
F &#8211; IniFiles, autoloading entries<br />
F0 &#8211; Changed inifile value<br />
F1 &#8211; Created inifile value<br />
N &#8211; Netscape/Mozilla StartPage/SearchPage changes<br />
N1 &#8211; Change in prefs.js of Netscape 4.x<br />
N2 &#8211; Change in prefs.js of Netscape 6<br />
N3 &#8211; Change in prefs.js of Netscape 7<br />
N4 &#8211; Change in prefs.js of Mozilla<br />
O &#8211; Other, several sections which represent:<br />
O1 &#8211; Hijack of auto.search.msn.com with Hosts file<br />
O2 &#8211; Enumeration of existing MSIE BHO&#8217;s<br />
O3 &#8211; Enumeration of existing MSIE toolbars<br />
O4 &#8211; Enumeration of suspicious autoloading Registry entries<br />
O5 &#8211; Blocking of loading Internet Options in Control Panel<br />
O6 &#8211; Disabling of &#8216;Internet Options&#8217; Main tab with Policies<br />
O7 &#8211; Disabling of Regedit with Policies<br />
O8 &#8211; Extra MSIE context menu items<br />
O9 &#8211; Extra &#8216;Tools&#8217; menuitems and buttons<br />
O10 &#8211; Breaking of Internet access by New.Net or WebHancer<br />
O11 &#8211; Extra options in MSIE &#8216;Advanced&#8217; settings tab<br />
O12 &#8211; MSIE plugins for file extensions or MIME types<br />
O13 &#8211; Hijack of default URL prefixes<br />
O14 &#8211; Changing of IERESET.INF<br />
O15 &#8211; Trusted Zone Autoadd<br />
O16 &#8211; Download Program Files item<br />
O17 &#8211; Domain hijack<br />
O18 &#8211; Enumeration of existing protocols<br />
O19 &#8211; User stylesheet hijack</p>
<p>There is no need to memorize all of these, just read through them so you are familiar with what HJT detects.<br />
Legitimacy Check</p>
<p>In the following sections, you will be asked to &#8220;check if a url is legitimate&#8221;. This means deciding if it is a URL that user would want to visit, or if it is a likely hijacker. URLs that you recognize such as Google, Yahoo!, a news website, or a ISPs website are clearly legitimate items. They do not need to fixed. If you do not recognize an item-go the URL. If the site has unending popup traps, or is in the domain of a known spyware (eg coolwwwsearch.com, gator.com, new.net, etc) is not a legitimate item. Most hijackers are sponsored search engine/portal sites. Usually they are pretty easy to detect. If it is a portal site with tons of links packed into one page, with categories such as gambling, insurance, computers, and adult, you can bet its a browser hijacker that should be fixed. If it is a search engine with the words &#8220;Pay Per Click&#8221; anywhere fix it. If it is a search engine with several or many entries for it in the R* section of Hijack This, you can also bet that its forcing itself on the user. If your not sure, ask the person if they use that site or not.<br />
R &#8211; Registry, StartPage/SearchPage changes<br />
Any entries whos 2 letter code begins with R should be checked to see if the URL is legitimate. Throughout this tutorials I will say &#8220;check if its legit&#8221;. To do this, use the &#8220;Legitimacy Check&#8221; rules at the top of this tutorial.<br />
R0-Advanced Info<br />
R1-Advanced Info<br />
R2-Advanced Info<br />
R3-Advanced Info<br />
F &#8211; IniFiles, autoloading entries</p>
<p>Basically anything beginning with &#8220;F0&#8243; is bad and should be fixed. F1 entries can be good or bad. Google the filename to find out what it is.<br />
F0-Advanced Info<br />
F1-Advanced Info<br />
N &#8211; Netscape/Mozilla StartPage/SearchPage changes</p>
<p>Items that start with N are related to Netscape. These are similar to the R entries. Follow the rules for deciding if a URL is legitimate. Netscape homepages are not hijacked as often as IE though.<br />
N1-Advanced Info<br />
N2-Advanced Info<br />
N3-Advanced Info<br />
N4-Advanced Info<br />
O &#8211; Other, several sections which represent:</p>
<p>O1 &#8211; Hijack of auto.search.msn.com with Hosts file<br />
01 entries are entries in the HOSTS file. HOSTS is a way of redirecting a URL to an IP. It can be used for ad blocking, speeding up internet access, or Hijacking. If multiple URLs point to the same IP address, fix them all (UNLESS THAT IP ADDRESS IS 0.0.0.0 OR 127.0.0.1). This shows up a lot<br />
O1 &#8211; Hosts: 216.177.73.139 auto.search.msn.com<br />
O1 &#8211; Hosts: 216.177.73.139 search.netscape.com<br />
O1 &#8211; Hosts: 216.177.73.139 ieautosearch<br />
They should all be fixed, see how it redirects all searches to 216.177.73.139 (type that IP in your browser for an example of non-legit page).<br />
O1-Advanced Info</p>
<p>O2 &#8211; Enumeration of existing MSIE BHO&#8217;s<br />
The Browser Helper Object. Can&#8217;t browse with em, cant browse without em. These are sort of plugins for the browser. Each has a unique, identifying number and a filename. Use TonyKlein&#8217;s BHO list to check if each one is good or bad<!-- m --> <a class="postlink" href="http://www.spywareinfo.com/bhos/">http://www.spywareinfo.com/bhos/</a><!-- m --> After a few logs, you will start to recognize which BHOs are safe (such as MSN Radio and NAV Antivirus). Note: any BHO with ClientMan Or Clien~1 in the filename should be fixed. Sometimes spyware tricks you into thinking its legit by using a safe-sounding filename. Check each BHO carefully!<br />
02-Advanced Info</p>
<p>O3 &#8211; Enumeration of existing MSIE toolbars<br />
03 entries are toolbars in web browsers. Most are harmless, but many bad hijackers add toolbars to the browser. If it is named &#8220;Yahoo Companion&#8221; or Google Toolbar, or something of the sort, its probably legit. You can find out what a Toolbar is at TonyKlein&#8217;s list<br />
<!-- m --><a class="postlink" href="http://www.spywareinfo.com/toolbars/">http://www.spywareinfo.com/toolbars/</a><!-- m --><br />
Any toolbar with a random-seeming filename should be fixed.<br />
O3-Advanced Info</p>
<p>O4- Enumeration of suspicious autoloading Registry entries<br />
Startups from the registry. Despite the name-many legit programs show up here. Ignore entries that you recognize to be from a legit program. Use this website to find out what the rest of the entries are.<br />
<!-- m --><a class="postlink" href="http://www.pacs-portal.co.uk/startu...tartup_full.htm">http://www.pacs-portal.co.uk/startu&#8230;tartup_full.htm</a><!-- m --><br />
04-Advanced Info</p>
<p>O5 &#8211; Blocking of loading Internet Options in Control Panel<br />
There is only one entry here, and it should be fixed. This entry stops the Internet Options from showing in Control Panel. It is used by Hijackers to hide themselves<br />
05-Advanced Info</p>
<p>O6 &#8211; Disabling of &#8216;Internet Options&#8217; Main tab with Policies<br />
Internet Explorer restrictions. Unless you have used a security program to lock your browser settings, fix these. You won&#8217;t know if the user has done this or not. You can ask them, but if they have a lot of spyware, its safe to say that they should be fixed.<br />
06-Advanced Info</p>
<p>O7 &#8211; Disabling of Regedit with Policies<br />
Restricted registry access using Windows System Policies. Fix this, unless you are using a computer where it may be there on purpose eg. lab/shared/school systems.<br />
07-Advanced Info</p>
<p>O8 &#8211; Extra MSIE context menu items<br />
Extra right click options. If you don&#8217;t recognize it, search google. &#8220;Browser Pal&#8221; should always be fixed. Programs such as popup blockers or google toolbar often show up here.<br />
08-Advanced Info</p>
<p>O9 &#8211; Extra &#8216;Tools&#8217; menuitems and buttons<br />
Extra toolbar buttons. If you don&#8217;t recognize it as a legit program-search google. A simple search will usually reveal if its spyware.<br />
09-Advanced Info</p>
<p>O10 &#8211; Breaking of Internet access by New.Net or WebHancer<br />
Winsock Hijacks. Using old versions of Spyware removers can cause these problems! Spybot can usually fix them, or a specialized tool such as LSPFix.<br />
O10-Advanced Info</p>
<p>O11 &#8211; Extra options in MSIE &#8216;Advanced&#8217; settings tab<br />
Extra Advanced Options group in IE Adds another group of options in the Advanced section of IE&#8217;s Internet Options, which are stored in the registry. CommonName does this.<br />
O11-Advanced Info</p>
<p>O12 &#8211; MSIE plugins for file extensions or MIME types<br />
Internet Explorer plugins. Usually pretty harmless. Used by programs like Acrobat Reader.<br />
012-Advanced Info</p>
<p>O13 &#8211; Hijack of default URL prefixes<br />
Default Prefixes. Eviiil-always fix these. The default prefix (Stored in the registry) adds itself to the beginning of any URL where you did not enter the prefix. Default Prefix should be<!-- m --> <a class="postlink" href="http:///">http://</a><!-- m -->.<br />
O13-Advanced Info</p>
<p>O14 &#8211; Changing of IERESET.INF<br />
Reset Web Settings Follow the rules for checking if a URL is legitimate.<br />
O14-Advanced Info</p>
<p>O15 &#8211; Trusted Zone Autoadd<br />
Unwanted trusted zone site. This could be bad, but not many hijackers use them. The common one is free.aol.com. This entry can be fixed.<br />
O15-Advanced Info</p>
<p>O16 &#8211; Download Program Files item<br />
ActiveX Controls These are downloaded when you play an online game, use iPix, etc. If it is from a known game site such as Yahoo or Pogo, or the Macromedia site, its legit. Other items you can search for to find out. I usually just do a quick check over these items. Always fix them if they seem to be dialers, adult, or casino software.<br />
016-Advanced Info</p>
<p>O17 &#8211; Domain hijack<br />
Domain hijacks always include an IP address, do a WHOIS on the IP address. If it comes up with a legitimate owner (like an ISP or college) leave it. Otherwise, fix these entries.<br />
O17-Advanced Info</p>
<p>O18 &#8211; Enumeration of existing protocols<br />
Extra Protocols. These don&#8217;t show up very often, but Google will tell you what they are. I have seen LOP and CommonName use them.<br />
O18-Advanced Info</p>
<p>O19 &#8211; User stylesheet hijack<br />
Style sheet hijack. I have only seen 1 hijacker use this. If the filename is default.css, it can probably be fixed. You may want to tell the person not to fix it if they are using a custom CSS file in their browser (these are often used by colorblind, or vision disabled users).<br />
O19-Advanced Info</p></div>
</blockquote>
<p>Don’t remove things you aren’t sure of. If you need help, post your log in the adware section of AO and some of us can help you decide what to remove.</p>
<p>All done</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-hijack-this-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; How to:Linux For Primers (Mandriva 2006)</title>
		<link>http://www.thetazzone.com/tutorial-how-tolinux-for-primers-mandriva-2006/</link>
		<comments>http://www.thetazzone.com/tutorial-how-tolinux-for-primers-mandriva-2006/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 01:35:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=806</guid>
		<description><![CDATA[ORIGINALLY POSTED BY J_K9 FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY J_K9 FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=664">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<p>Welcome to the world of <a class="postlink" href="http://linux.com/">Linux</a>. Correctly referred to as GNU/Linux, it is a full <a class="postlink" href="http://www.opensource.org/">Open Source</a> Operating System with its kernel, and there are many different distributions of it. Each of those distributions (or &#8216;distros&#8217;) are different flavours of Linux &#8211; some bring a different GUI desktop environment (so that it looks completely different on-screen &#8211; see <a class="postlink" href="http://kde.org/">KDE</a> and <a class="postlink" href="http://gnome.org/">Gnome</a>), others have certain applications which others do not (for example: some bring the Instant Messaging application <a class="postlink" href="http://www.kopete.org/">Kopete</a> while others bring <a class="postlink" href="http://gaim.sf.net/">Gaim</a>), the choice of package manager varies between them (like <a class="postlink" href="http://www.debian.org/doc/manuals/apt-howto/index.en.html">APT</a> or <a class="postlink" href="http://linux.duke.edu/projects/yum">Yum</a>), and many other configurations. You can find more information on Linux at <a class="postlink" href="http://en.wikipedia.org/wiki/Linux#Distributions">Wikipedia</a>.</p>
<p>Today, we shall be using a distro called <a class="postlink" href="http://wwwnew.mandriva.com/en/downloads">Mandriva</a>, and its 2006 release. I have chosen it as this tutorial&#8217;s distro because it is very easy to use, brings a wide range of applications, and works brilliantly out of the box (or the ISO, in this case!) &#8211; all in all, it is highly suitable for those trying Linux for the first time. <a class="postlink" href="http://ftp.riken.go.jp/Linux/mandrake/official/iso/2006.0/i586/Mandriva-Linux-Free-2006-DVD.i586.iso">Click here</a> to download Mandriva-Linux-Free-2006-DVD.i586.iso. This ISO is a DVD image file, and once it has finished downloading, burn it using one of the methods described on <a class="postlink" href="http://www.linuxiso.org/viewdoc.php/howtoburn.html">LinuxISO.com</a> &#8211; although if you do not want to wade through all that information, just download the free <a class="postlink" href="http://www.burnatonce.com/index.htm?news">BurnAtOnce</a> to burn it to a DVD+R/DVD-R. Each individual step in this tutorial begins with a hyphen <span style="font-weight: bold;">-</span>.</p>
<ul>-Now we can begin the installation. Go to the machine you would like to install Linux onto; the best thing to do is not to dual boot (have Linux and Windows on the same computer), because that will make the process more complicated and it may be frustrating for a new Linux user. So, backup everything on the target computer, and then insert the DVD into the drive. Restart the computer, and then as the computer starts up, you will see a screen like the one below. You should press the button advised for the &#8220;Boot Menu&#8221; or to &#8220;Change The Boot Order&#8221;. In my case, this is the <span style="font-style: italic;">Esc</span> key.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647651"><img src="http://static.flickr.com/41/76647651_3a70050709_m.jpg" alt="Image" /></a></ul>
<ul>-Then, select CD-ROM/DVD drive from the list that pops up, and after the computer begins reading the disc you should see a screen like the one below.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647666"><img src="http://static.flickr.com/36/76647666_b0f030b228_m.jpg" alt="Image" /></a></ul>
<ul>-Then, select your language and accept the agreement.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647686"><img src="http://static.flickr.com/42/76647686_9f388b86ef_m.jpg" alt="Image" /></a><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647701"><img src="http://static.flickr.com/9/76647701_d63d165c90_m.jpg" alt="Image" /></a></ul>
<ul>-Now the keyboard selection screen will come up. If the one you use does not appear, you can find it by clicking the &#8220;More&#8221; button and selecting it from the list.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647745"><img src="http://static.flickr.com/36/76647745_db25b950e4_m.jpg" alt="Image" /></a></ul>
<ul>-At the Security screen, simply press &#8220;Next&#8221; &#8211; the default settings are good enough. Then click &#8220;Next&#8221; on the screen after it, which tells you that accessing Microsoft partitions will only be available to root (the &#8220;administrator&#8221;).</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647726"><img src="http://static.flickr.com/40/76647726_fed57fd214_m.jpg" alt="Image" /></a></ul>
<ul>-To keep things simple, we will choose to either &#8220;Use free space&#8221; (if you have nothing on your hard drive) or to &#8220;Erase entire disk&#8221; (to delete everything on your hard drive if there is content there).</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647752"><img src="http://static.flickr.com/37/76647752_7908dc96c7_m.jpg" alt="Image" /></a></ul>
<ul>-If you are feeling particularly adventurous, you can choose the &#8220;Custom disk partitioning&#8221; option.<br />
<span style="font-weight: bold;">Note: If you would not like to do this, please continue to the next step.</span><br />
Select &#8220;Custom disk partitioning&#8221;, click &#8220;Next&#8221;, and you will be taken to the screen below. First of all, we will set up the Primary partition &#8211; this is the one in which we will place our root folder (/). Click on &#8220;Journalised FS&#8221; to set it up.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647772"><img src="http://static.flickr.com/41/76647772_b066588256_m.jpg" alt="Image" /></a></p>
<p>Set the size to be almost all of your hard drive, but make sure you leave a bit of space at the end &#8211; the rule I use is that the size of the remaining space should be the size of your RAM. So, in my case, I&#8217;ll leave 1GB of space. As the &#8220;Filesystem type&#8221;, select <a class="postlink" href="http://en.wikipedia.org/wiki/ReiserFS">ReiserFS</a>. The advantages of ReiserFS over other formats like <a class="postlink" href="http://en.wikipedia.org/wiki/Ext3">ext3</a> is that, because of its advanced journalling techniques, it is considerably faster. Leave the mount point as root &#8220;/&#8221; &#8211; this is the highest level in the Linux filesystem; you can think of / as the C:\ of Linux.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647786"><img src="http://static.flickr.com/6/76647786_f8fd663241_m.jpg" alt="Image" /></a></p>
<p>Then, select the free space on the right of the / partition, and click on the green &#8220;Swap&#8221; button.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647796"><img src="http://static.flickr.com/36/76647796_38b4e40cf2_m.jpg" alt="Image" /></a></p>
<p>Allow the Swap partition to take up all of the remaining space, and leave the other default setting. Click &#8220;Ok&#8221; when you have finished.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647811"><img src="http://static.flickr.com/38/76647811_0e43574312_m.jpg" alt="Image" /></a></p>
<p>This will take you back to the partition overview. If you are satisfied with your creation, click &#8220;Done&#8221;, and then &#8220;Ok&#8221; to write the changes to disk.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647826"><img src="http://static.flickr.com/41/76647826_0de1751208_m.jpg" alt="Image" /></a></ul>
<ul>-The installation will format the hard drive, and you will soon be shown the screen below. In my opinion, it is best to tick the &#8220;Copy whole CDs&#8221; checkbox, because if you need any of the files on the DVD to install more applications in the future you will have to scramble franctically around you room looking for the DVD &#8211; not a good idea. <img title="Wink" src="http://tazforum.thetazzone.com/images/smilies/icon_wink.gif" alt="I'm gagging for a shag" /></p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647839"><img src="http://static.flickr.com/6/76647839_49737de5ee_m.jpg" alt="Image" /></a></ul>
<ul>-Choose not to use any supplementary media at the next screen.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647850"><img src="http://static.flickr.com/43/76647850_061656dc5f_m.jpg" alt="Image" /></a></ul>
<ul>-And now, select the groups of packages you would like to install! Feel free to experiment with these, or if you prefer, select packages manually by ticking the &#8220;Individual package selection&#8221; at the bottom of the screen (although the group installs are perfect for our needs).</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647861"><img src="http://static.flickr.com/38/76647861_4c769e6a56_m.jpg" alt="Image" /></a></ul>
<ul>-The installation will now begin. This may about 20 minutes, but it all depends on your computer&#8217;s specifications &#8211; so I recommend you go fetch a coffee and some biscuits. <img title="Smile" src="http://tazforum.thetazzone.com/images/smilies/icon_smile.gif" alt=":)" /></p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647881"><img src="http://static.flickr.com/42/76647881_64f68bfa76_m.jpg" alt="Image" /></a></ul>
<ul>-Once the package installation has finished, you will be presented with the first &#8220;System configuration&#8221; screen. This is the root password one. For this, I advise you to choose an alphanumeric password which is impossible to remember and which you must never write down &#8211; especially if you&#8217;re security-conscious!</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647894"><img src="http://static.flickr.com/43/76647894_334ac4ca84_m.jpg" alt="Image" /></a></ul>
<ul>-At the next screen, type in your name, username (this will default to your first name), and password for the normal user.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647910"><img src="http://static.flickr.com/39/76647910_72d072a9c4_m.jpg" alt="Image" /></a></ul>
<ul>-At the following screen, most if not all the hardware should be properly configured. If it is not it will be in red text &#8211; so select &#8220;Configure&#8221; on the right. From here, select the details as your computer&#8217;s specifications dictate. Hang in there, we&#8217;re almost done!</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647930"><img src="http://static.flickr.com/6/76647930_e61554fc38_m.jpg" alt="Image" /></a></ul>
<ul>-I recommend you update your computer at this point, but this isn&#8217;t a necessity &#8211; it can be done later on.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647936"><img src="http://static.flickr.com/36/76647936_76113bef74_m.jpg" alt="Image" /></a></ul>
<ul>-That&#8217;s it! Now choose &#8220;Reboot&#8221; to view the pièce de resistance!</ul>
<ul>-When the computer boots, the boot loader will come up. Choose &#8220;linux&#8221;.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647958"><img src="http://static.flickr.com/43/76647958_b9b986fcc3_m.jpg" alt="Image" /></a></ul>
<ul>-When Mandriva finishes loading, you will be shown the login manager screen (<a class="postlink" href="http://docs.kde.org/development/en/kdebase/kdm/">kdm</a>). Enter your details and press the <span style="font-style: italic;">Enter</span> key.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647966"><img src="http://static.flickr.com/43/76647966_d4c930f018_m.jpg" alt="Image" /></a></ul>
<ul>-Presto! There&#8217;s Mandriva, running the K Desktop Environment (KDE). Isn&#8217;t it beautiful?</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647979"><img src="http://static.flickr.com/9/76647979_1d2b6627d3_m.jpg" alt="Image" /></a></ul>
<p>Now, on to learn how to use a few applications &#8211; please excuse me if this seems slightly patronising!</p>
<ul>-We&#8217;ll start with our beloved Mozilla Firefox web browser &#8211; simply click the Firefox icon on the menu bar, or go to <span style="font-style: italic;">Mandriva (star) -] Internet -] Web Browsers -] Mozilla Firefox</span>. Click on the picture below for an overview of its main features.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76647992"><img src="http://static.flickr.com/9/76647992_fbe1dc1fce_m.jpg" alt="Image" /></a></ul>
<ul>-Kontact is an excellent email manager (with KMail integrated into it) &#8211; and it is so easy to use that it&#8217;s actually quite comforting. To set up an account, go to &#8220;Tools -] Configure KMail&#8230;&#8221;, and just fill in your details. You can click on its icon on the menu bar or go to <span style="font-style: italic;">Mandriva -] Internet -] Mail -] Kontact</span>.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76648020"><img src="http://static.flickr.com/42/76648020_cf4a3759c1_m.jpg" alt="Image" /></a></ul>
<ul>-An application you cannot live without &#8211; Kopete allows you to keep in touch with your friends and family through Instant Messaging, and the variety of protocols it supports is outstanding. You must try it! Accessable via the menu bar or <span style="font-style: italic;">Mandriva -] Internet -] Kopete</span>.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76648030"><img src="http://static.flickr.com/36/76648030_60088467d7_m.jpg" alt="Image" /></a></ul>
<ul>-And the most successful Open Source word processor, OpenOffice.org Writer, is also preinstalled! Found in the menu at: <span style="font-style: italic;">Mandriva -] Office -] Wordprocessors -] OpenOffice.org Writer</span>. It is extremely easy to use, and in my opinion the whole suite is more than just a rival to Microsoft Office &#8211; it is better than it.</p>
<p><a class="postlink" href="http://www.flickr.com/photos/64825661@N00/76648005"><img src="http://static.flickr.com/42/76648005_05882ace35_m.jpg" alt="Image" /></a></ul>
<p>Please play around with the other applications, because there are just so many available for Linux that browsing <a class="postlink" href="http://sf.net/">Sourceforge.net</a> is actually quite good fun, and you will soon discover both the power and easy-of-use of Linux. Enjoy!</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-how-tolinux-for-primers-mandriva-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; Apache &amp; SSL for Win32</title>
		<link>http://www.thetazzone.com/tutorial-apache-ssl-for-win32/</link>
		<comments>http://www.thetazzone.com/tutorial-apache-ssl-for-win32/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general tutorials]]></category>

		<guid isPermaLink="false">http://www.thetazzone.com/?p=804</guid>
		<description><![CDATA[ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM HERE
Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to [...]]]></description>
			<content:encoded><![CDATA[<p>ORIGINALLY POSTED BY NOKIA FOR THETAZZONE/TAZFORUM <a href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=698">HERE</a></p>
<p>Do not use, republish, in whole or in part, without the consent of the Author. TheTAZZone policy is that Authors retain the rights to the work they submit and/or post…we do not sell, publish, transmit, or have the right to give permission for such…TheTAZZone merely retains the right to use, retain, and publish submitted work within it’s Network</p>
<dl class="codebox">
<dt>Code: <a onclick="selectCode(this); return false;" href="http://tazforum.thetazzone.com/viewtopic.php?f=31&amp;t=698#">Select all</a></dt>
<dd><code>This paper is the work of The Master Jedi Pimpsor AKA thehorse13, who has kindly consented to it being hosted here on the TAZ.</code></p>
</dd>
</dl>
<p>Preface:<br />
============<br />
I had to work on a bunch of Apache on Win32 hosts. Typically, this is against my religion, however, I did it anyway.</p>
<p>While doing it, I went looking for some info on simply redirecting all traffic over HTTPS. I found all the info but some was in different places. I took a base tutorial and made some changes to it so that it had more clarity and also explained how to redirect traffic over HTTPS. Since this is not an original work, all references are cited.</p>
<p>This is tutorial only discusses how to get HTTPS setup with Apache for Win32. It&#8217;s nothing more.</p>
<p>Enjoy.</p>
<p>APACHE for Win32 with SSL support v 1.3<br />
_<br />
Original document found at:</p>
<p><!-- m --><a class="postlink" href="http://www.thompsonbd.com/tutorials/apachessl.php">http://www.thompsonbd.com/tutorials/apachessl.php</a></p>
<p><!-- m --><br />
Version 1.2 (Up from 1.1 thanks to Mike Young)<br />
Version 1.3 (TheHorse13)<br />
_<br />
_<br />
1. Assumptions<br />
This tutorial assumes that you already have Apache2 installed and working on a Windows server. I have Apache 2.0.52 installed on Windows Server 2000.<br />
_This guide also assumes that you have a standard SSL cert. If you have a supercert, you’ll need to add additional lines to your virtual host in httpd.conf and ssl.conf to deal with the intermediate cert. For more information on what a SuperCert is, please see SGC SuperCert &#8211; 256-bit ssl encryption from thawte<br />
_<br />
TIP: Backup your existing httpd.conf file before you begin. If you run into issues, at least you can revert back to the original.<br />
_<br />
2. Needed Files<br />
These are not necessarily the most up-to-date, but they worked for my install so I have included them here. You will need to download both Apache_2.0.55-Openssl_0.9.8a-Win32.zip and Openssl-0.9.8a-Win32.zip<br />
Unzip both of these files to seperate folders.<br />
_<br />
Links:<br />
======</p>
<p><!-- m --><a class="postlink" href="http://brandleadershipmarketing.com....9.8a-win32.zip/">http://brandleadershipmarketing.com&#8230;.9.8a-Win32.zip</a></p>
<p><!-- m --></p>
<p><!-- m --><a class="postlink" href="http://brandleadershipmarketing.com....9.8a-win32.zip/">http://brandleadershipmarketing.com&#8230;.9.8a-Win32.zip</a></p>
<p><!-- m --><br />
_<br />
3. Setting Up OpenSSL<br />
Copy the files ssleay32.dll and libeay32.dll from the OpenSSL folder to WINNT\System32. Double check that you make sure you copied the dll&#8217;s and not the lib&#8217;s. Both of these DLL files will be located in the unzipped Openssl-0.9.8a-Win32 folder.<br />
_<br />
Copy mod_ssl.so from the unzipped Apache 2.0.55-Openssl 0.9.8a-Win32\modules folder into the \modules folder of your production Apache server’s path.<br />
_<br />
You also need to download openssl.cnf into the same folder where you unzipped Openssl-0.9.8a-Win32. Windows will remove the .cnf and will make this file look like a dialup icon. Just ignore it. Just make sure you have the file in the right place.<br />
Download ssl.conf and place it in the Apache2/conf directory.<br />
_<br />
Links:<br />
======</p>
<p><!-- m --><a class="postlink" href="http://www.thompsonbd.com/tutorials/files/openssl.cnf">http://www.thompsonbd.com/tutorials/files/openssl.cnf</a></p>
<p><!-- m --></p>
<p><!-- m --><a class="postlink" href="http://www.thompsonbd.com/tutorials/files/ssl.conf">http://www.thompsonbd.com/tutorials/files/ssl.conf</a></p>
<p><!-- m --><br />
_<br />
4. Creating a test certificate<br />
Open a command prompt. Navigate to where you unzipped Openssl-0.9.8a-Win32.<br />
_<br />
openssl req -config openssl.cnf -new -out my-server.csr<br />
_<br />
You can replace my-server.csr with whatever you want aslong as the extention is .csr. When asked for &#8220;Common Name (eg, your websites domain name)&#8221;, give the exact domain name of your web server (e.g.</p>
<p><!-- w --><a class="postlink" href="http://www.my-server.dom/">www.my-server.dom</a></p>
<p><!-- w -->). The certificate belongs to this server name and browsers complain if the name doesn&#8217;t match.<br />
_<br />
openssl rsa -in privkey.pem -out my-server.key<br />
_<br />
This removes the passphrase from the private key. You MUST understand what this means; my-server.key should be only readable by the apache server and the administrator. You should delete the .rnd file because it contains the entropy information for creating the key and could be used for cryptographic attacks against your private key.<br />
_<br />
openssl x509 -in my-server.csr -out my-server.cert -req -signkey my-server.key -days 365<br />
_<br />
This creates a self-signed certificate that you can use until you get a &#8220;real&#8221; one from a certificate authority. (Which is optional; if you know your users, you can tell them to install the certificate into their browsers.) Note that this certificate expires after one year, you can increase -days 365 if you don&#8217;t want this.<br />
_<br />
TIP: Sometimes certs will have the suffix crt or cer. If this is the case, you can either rename the certificate file with the .cert suffix to match the lines in this guide or you can change the conf files to reflect whichever certificate suffix came with the certificate file. For example, if Windows sees the suffix cert, it won’t assign the nifty certificate icon to it. It only sees crt and cer as certificate suffixes and will only assign the icon to these suffixes.<br />
_<br />
Create a directory in the Apache folder name Apache2/conf/ssl and move my-server.key and my-server.cert into it.<br />
_<br />
5. Configuring Apache and mod_ssl<br />
Open the httpd.conf file and locate the LoadModule directives.<br />
Add:<br />
LoadModule ssl_module modules/mod_ssl.so<br />
_<br />
After &lt;/IfModule&gt; add<br />
SSLMutex default<br />
SSLRandomSeed startup builtin<br />
SSLSessionCache none<br />
In the VirtualHost directives add<br />
&lt;VirtualHost</p>
<p><!-- w --><a class="postlink" href="http://www.my-domain.com:443/">www.my-domain.com:443</a></p>
<p><!-- w -->&gt;<br />
SSLEngine On<br />
SSLCertificateFile conf/ssl/my-server.cert<br />
SSLCertificateKeyFile conf/ssl/my-server.key<br />
&lt;/VirtualHost&gt;<br />
_<br />
TIP: To redirect all traffic to the console to the SSL automatically (otherwise, you will get pages served up on both http and https), add these lines beneath &lt;/VirtualHost&gt;<br />
RewriteEngine On<br />
RewriteRule (.*) https://%{SERVER_NAME}/ [R]<br />
_<br />
Then be sure to uncomment the following module:<br />
LoadModule rewrite_module modules/mod_rewrite.so</p>
<p>Open the ssl.conf file and set the correct ServerName (</p>
<p><!-- w --><a class="postlink" href="http://www.my-domain.com/">www.my-domain.com</a></p>
<p><!-- w -->) and DocumentRoot. You will place the location of the secure material in the &#8221; &#8221; after DocumentRoot. So if your secure webpages are on your D: drive, in the folder called secure, the line should look like<br />
DocumentRoot &#8220;D:/secure&#8221;</p>
<p>Provided that you haven’t made any typos, you should now be able to restart Apache and get SSL pages served up without issue. You can also remove both the zip files and the folders where you extracted Apache_2.0.55-Openssl_0.9.8a-Win32.zip and Openssl_0.9.8a-Win32.zip once you&#8217;re sure that everything is working the way you want. However, I recommend keeping the Openssl directory in the event you need to cut certs and such in the future. As for the Apache zip, all we did was pillage the mod_ssl.so file compiled for Win32 so that download is of no use.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://www.thetazzone.com/tutorial-apache-ssl-for-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
