If you like this site, Don't forget to tell your friends and bookmark it :D . Thank You !!

Basics of Javascript Injection

Posted by X.E.R.O

JavaScript is a widely used technology within websites and web based applications. JavaScript can be used for all sorts of useful things and functions. But along with this comes some additional security issues that need to be thought of and tested for. JavaScript can be used not only for good purposes, but also for malicious purposes.JavaScript injection is a nifty little technique that allows you to alter a sites contents without actually leaving the site.This can be very usefull when say, you need to spoof the server by editing some form options.JavaScript injection is a fun technique that allows you to change a websites content without leaving the site, reloading the page, or saving the site to your desktop. It can be very useful when you need to change hidden data before you send it to the server. Let’s start with some basic injection techniques.

I. Injection Basics
JavaScript injections are run from the URL bar of the page you are visiting. To use them, you must first completly empty the URL from the URL bar. That means no "http://" or whatever.
JavaScript is run from the URL bar by using the javascript: protocol. In this tutorial I will only teach you the bare bones of using this, but if you are a JavaScript guru, you can expand on this using plain old JavaScript.
The two commands covered in this tutorial are the alert(); and void(); commands. These are pretty much all you will need in most situations. For your first JavaScript, you will make a simple window appear, first go to any website and then type the following into your URL bar:

javascript:alert(’Hello, World’);
You should get a little dialog box that says “Hello, World”. This will be altered later to have more practical uses.
You can also have more than one command run at the same time:
javascript:alert(’Hello’); alert(’World’);
This would pop up a box that said ‘Hello’ and than another that says ‘World’.

II. Cookie Editing
First off, check to see if the site you are visiting has set any cookies by using this script:
javascript:alert(document.cookie);
This will pop up any information stored in the sites cookies. To edit any information, we make use of the void(); command.
javascript:void(document.cookie=”Field = myValue”);
This command can either alter existing information or create entirely new values. Replace “Field” with either an existing field found using the alert(document.cookie); command, or insert your very own value. Then replace “myValue” with whatever you want the field to be. For example:
javascript:void(document.cookie=”Authorized=yes”);
Would either make the field “authorized” or edit it to say “yes”… now whether or not this does anything of value depends on the site you are injecting it on.
It is also useful to tack an alert(document.cookie); at the end of the same line to see what effect your altering had.

III. Form Editing
Sometimes, to edit values sent to a given website through a form, you can simply download that html and edit it slightly to allow you to submit what you want. However, sometimes the website checks to see if you actually submitted it from the website you were supposed to. To get around this, we can just edit the form straight from javascript. Note: The changes are only temporary, so it’s no tuse trying to deface a site through javascript injection like this.
Every form on a given webpage (unless named otherwise) is stored in the forms[x] array… where “x” is the number, in order from top to bottom, of all the forms in a page. Note that the forms start at 0, so the first form on the page would actually be 0, and the second would be 1 and so on. Lets take this example:
<form action=”http://www.website.com/submit.php” method=”post”>
<input type=”hidden” name=”to” value=”admin@website.com”>
Note:Since this is the first form on the page, it is forms[0]
Say this form was used to email, say vital server information to the admin of the website. You can’t just download the script and edit it because the submit.php page looks for a referer. You can check to see what value a certain form element has by using this script:
javascript:alert(document.forms[0].to.value)
This is similar to the alert(document.cookie); discussed previously.
In this case, It would pop up an alert that says “admin@website.com”
So here’s how to Inject your email into it. You can use pretty much the same technique as the cookies editing shown earlier:
javascript:void(document.forms[0].to.value=”email@nhacks.com”)
This would change the email of the form to be “email@nhacks.com”.
Then you could use the alert(); script shown above to check your work. Or you can couple both of these commands on one line.
That completes this post about JavaScript injection as you can see all kinds of fun things can be done with these techniques. Use your imagination and with a little work you can test your site and keep it secure from malicious hackers.

Posted by XERO . Thanks to NeoXdyne , testingsecurity.com

--> Read Full Article...

Follow us on Twitter Follow this blog

Hacking the Logon Screen using Resource Hacker

Posted by X.E.R.O

This trick is very easy to do but it needs Resource Hacker and If you don't already have Resource Hacker go download it now . I have tried this on Windows XP..
Steps
  • Browse to C:\windows\system32  and copy logonui.exe and paste it to C:\ Now, open C:\logonui.exe with Resource hacker.
  • Click on Action and then on Replace bitmap. If you are good with graphics you can make your own logon screen, you should be able to scroll thru the bitmaps in this file and figure out what's where. If your not great with graphics :/ like myself, you can download already made graphics and use them, or use them as a template.
  • To set the size of Bitmap 100: Go into the \UIFILE\1000\1022\ tree and press CTRL+F Now, find  Change the entire line to read:  Where xxx is put the width e.g. 400rp (the rp @ the end is needed) and where yyy is, put the height e.g. 1000rp. Make sure the image doesn't go over the login names because it slows down to a snails pace (fading etc.)
  • Once you have everything the way you want it, just save the file to C:\ and close Resource hacker. Now, copy the modified logonui.exe to C:\windows\system32 and replace it with original one.
  • Reboot to see Ur logon screen
I think that was Easy..Aint it ?
Stay Tuned for more guys..

Posted by XERO.Unknown Author

--> Read Full Article...

Follow us on Twitter Follow this blog

Prank Codes and Programming in VB

Posted by X.E.R.O

I was bored, so I decided to write a VB code that would prevent you from shutting down a VB app. It has worked in most of my tests, but has failed sometimes. It involves shelling the app once it has been closed down:

  • Create a new Standard EXE in vb (I'm using vb6 professional edition) .
  • Copy this and paste it into the form that you want to keep open (i.e Form1) you can change this to suit your needs
Private Sub Form_Unload(Cancel As Integer)
Shell app.path & "\" & app.exename
End Sub
You can also use:
Private Sub Form_Unload
to initialize the code when you shutdown.
  • Add in the rest of your code and create an exe
  • Run the program and press CTRL+ALT+DEL Close the program and watch as it springs back into life!! There are ways around it, but computer idiots will not be able to close it...
Private Sub Form_Unload(Cancel As Integer)
shell "nameoftheprogram.exe"
End Sub
That is one of the most stupidest thing if ever seen. It closes the program and reopens it. This will use a lot of memory:
If you would use:
Private Sub Form_Unload(Cancel As Integer)
cancel=1
End Sub
this would not close the program at all!
I also discovered a way to make the keyboard go sick. Simply add the line: SendKeys "{Enter}" to a timer The code should look like this:
Private Sub Timer1_Timer
SendKeys "{Enter}"
End sub
Make sure that the timer's interval is set to 1 or higher and the timer is enabled. Make the EXE and run it. Try and type something in Notepad and watch as line after line of ENTERS appear. Replace {Enter} with a string of your choice (RDHACKER ROCKZ!!!!) and watch as the text is typed onto the screen.

Posted by XERO  Thanks to guys at astalavista

--> Read Full Article...

Follow us on Twitter Follow this blog

FTP for lots of APPS

Posted by X.E.R.O

File Transfer Protocol (FTP) is a network protocol used to transfer data from one computer to another through a network such as the Internet. FTP is a file transfer protocol for exchanging and manipulating files over a TCP computer network. A FTP client may connect to a FTP server to manipulate files on that server. As there are many FTP client and server programs available for different operating systems, FTP is a popular choice for exchanging files independent of the operating systems involved.I m posting here links of ftp with LOTS of applications.just click on the required directory and your browser will open it for you.Or you can directly open the link in your ftp client

ftp://194.187.207.98/
 
Posted by XERO

--> Read Full Article...

Follow us on Twitter Follow this blog

Emulator Pack for Windows

Posted by X.E.R.O

Are you an emulator fan ? wee this time I m posting the Emulator Pack which consists of one of best emulators for running Old school games on PC .Enjoy then :)

Here is a full list of the emulated systems included in this collection:

  • Bios
  • NES
  • SNES
  • Gameboy/Gameboy color
  • Gameboy Advance
  • Gamecube
  • xbox
  • playstation1
  • playstation2
  • Nintendo 64
  • Nintendo
  • Nintendo DS
  • Super Nintendo
  • SegaMegaDrive

Download Emulator Pack
Password:mechodownload

 

Posted by XERO

--> Read Full Article...

Follow us on Twitter Follow this blog

Simplest Way to show Adsense Ads after each Blog Post

Posted by X.E.R.O

Yes, showing Adsense Ads after each blog post was never simple like this! As this is one of the most awaited feature which Google integrated into Blogger! Also this means blogger won’t be needing our one of the most famous hack to Show ads after each post to earn more from your blogger beta blog!

Here is 5-step Guide to do it for your blogger blog…

  • Log into your Blogger account at http://www.blogger.com .
  • Visit your blog’s Template tab and click on the Page Elements link.

Blogger Template

  • Click Edit in the Blog Posts section.
  • Check the box next to Show Ads Between Posts. You can then select how often you’d like your ads to appear, such as once after every post or once after every other post.

 Insert inline ads in blogger  

  • Customize the ads and click on Save Changes when you’re done.

 

Posted by XERO . Thanks to Devil's workshop and Google blog

 

--> Read Full Article...

Follow us on Twitter Follow this blog

VLC media player 0.92

Posted by X.E.R.O

VLC media player VLC media player (initially VideoLAN Client) is a media player from the VideoLAN project. It supports many audio and video codecs and file formats as well as DVDs, VCDs and various streaming protocols. It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network. It employs the libavcodec codec library from the FFmpeg project to handle many of the formats it supports, and uses the libdvdcss DVD decryption library to handle playback of encrypted DVDs. VLC also has the ability to convert many formats of media from one type to another.

VLC is also known for its relatively unique ability to play video files from uncompressed WinRAR archives saving the need to unpack (extract) the files from the rars. Also, it has the ability to let the user view the video content of incomplete, unfinished video downloads before they've been fully downloaded to the hard drive.

VLC media player is a highly portable multimedia player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, ...) as well as DVDs, VCDs, and various streaming protocols.
It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network.
It doesn't need any external codec or program to work.

OS : Win 95/98/NT/ME/2000/XP

Size: 13.81 MB

Download VLC Media Player - Official Site OR

Download VLC Media Player - Easy Share  OR

Download VLC Media Player - Rapidshare

 

Posted by XERO

 

--> Read Full Article...

Follow us on Twitter Follow this blog

Google Celebrates Its 10th Birthday !!!

Posted by X.E.R.O

Google Celebrates Its 10th Birthday !!! Google is Turning 10 !!! Well our beloved Google Search Engine will soon become 10 years old.Time passes with speeds unrelated to the real world in Internet and we can see how Google started out small and in a blink,It was a leading industry giant.

I used to use yahoo when i was new to Internet,at that time,for people email meant yahoo mail and search meant yahoo.com. But  one day i stumbled upon Google and got hooked to it,the simple interface and the fast searches,no popup's and uncluttered..i got what i always wanted...I still feel it’s just a few years back when I started using Google Search as my 1st page to start surfing on Internet,and Google has always surprised me with his little pranks and surprising tactics.This time I m sure too that our Google boy has some pretty nice things to celebrate his 10th Birthday.

Google have collected its past history and presenting in nice timeline format when you open Google Tenth birthday home page you will see some random past facts of Google and on clicking on links you can read what does that mean on Google Timeline page.

Google Time Line - www.rdhacker.blogspot.com
Google has come up with Project 10 to the 100th, a place to encourage users to help other people, Google Thinks, after certain level of material health only thing which we can increase is individual happiness by helping other people.

Project 10100 is a call for ideas to change the world by helping as many people as possible.In Order to Join You need to submit your idea before October 20, out all entries, 100 idea will be made available for public for voting purpose and 20will be selected in semifinal. A jury of advisory board will select Top 5 from these 20 ideas, Google will fund $10 million to implement these projects.

So..what are you waiting for ? Get googling :)

Posted by XERO

 

--> Read Full Article...

Follow us on Twitter Follow this blog

KGB Archiver

Posted by X.E.R.O

KGB Archiver is a free, open source and cross-platform file archiver and data compression utility developed by Tomasz Pawlak based on the PAQ6 compression Algorithm.KGB achieves unbelievably high compression rate. Unfortunately, in spite of its powerful compression rate, it has high hardware requirements (I recommend processor with 1,5GHz clock and 256MB of RAM as an essential minimum). One of the advantages of KGB Archiver is also AES-256 encryption which is used to encrypt the archives. This is one of the strongest encryptions known for man.

 

KGB ARCHIVER - www.rdhacker.blogspot.com

 

Features

  • Supports .kgb and .zip files
  • AES-256 encryption
  • It is able to create self-extracting archives
  • Unicode support (both user interface and filename)
  • Explorer shell extension
  • Multilanguage support: Arabic, German, Greek, Japanese, Polish, Portuguese, Serbian, Spanish, Ukrainian - download language pack here
  • Up to 8% faster compression/decompression
  • Now SFX archives run on any Windows or under WINE on
  • Linux

         

        Download KGB ARCHIVER

                       

                      Posted by XERO

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Microsoft Visual Studio 2008 Professional Edition

                      Posted by X.E.R.O

                      Professional Edition was engineered to support development projects that target the Web (including ASP.NET AJAX), Windows Vista, Windows Server 2008, The 2007 Microsoft Office system, SQL Server 2008, and Windows Mobile devices. The number of platforms that developers must target to meet business needs is increasing rapidly. Visual Studio 2008 Professional Edition provides the integrated toolset for addressing all of these needs by providing a superset of the functionality available in Visual Studio 2008 Standard Edition. Microsoft Visual Studio 2008 Professional Edition - www.rdhacker.blogspot.com

                      Today’s developers face the challenge of targeting a broad range of platforms and crafting applications that quickly deliver value to the business. Integrated designers and language features in Visual Studio allow developers to build the connected applications demanded by today’s businesses while taking advantage of the .NET Framework 3.5 to reduce development time.  Microsoft Visual Studio 2008 Professional Edition - www.rdhacker.blogspot.com

                      • Deliver high-performance applications
                        Connect to the data you need, regardless of its location, and build data driven applications using Language Integrated Query (LINQ).
                      • Build great client applications
                        Develop compelling solutions that leverage the user experience and capabilities of the 2007 Microsoft Office system and Windows Vista®.
                      • Build powerful Web applications
                        Build rich, interactive applications using the ASP.NET AJAX interactive Web interfaces.

                        

                      You will have :

                      Visual C# 2008
                      Visual C++ 2008
                      Visual Basic 2008
                      Visual Web Developer 2008

                      In addition :

                      Microsoft .Net Framework 3.5
                      Microsoft Crystal Report Basic For Visual Studio 2008
                      Microsoft SQL Server 2005 Express Edition

                      Requirments :

                      Requirements vary for different combinations of components within Visual Studio 2008 Professional Editions. To install Visual Studio 2008 Professional Edition, you need:

                      • Computer with a 1.6 GHz or faster processor
                      • Visual Studio 2008 can be installed on the following operating systems:
                      • Windows Vista™ (x86 & x64) - all editions except Starter Edition
                      • Windows XP™ (x86 & x64) with Service Pack 2 or later - all editions except Starter Edition
                      • Windows Server® 2003 (x86 & x64) with Service Pack 1 or later (all editions)
                      • Windows Server 2003 R2 (x86 and x64) or later (all editions)
                      • 384 MB of RAM or more (768 MB of RAM or more for Windows Vista)
                      • 2.2 GB of available hard-disk space
                      • 5400 RPM hard drive
                      • 1024 x 768 or higher-resolution display
                      • DVD-ROM Drive
                      • Additional features may require Internet access. Fees may apply.

                      Download Microsoft Visual Studio 2008

                      Download MSDN Library 2008

                      Download SERIAL 

                      Posted by XERO.

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Dark Mailer

                      Posted by X.E.R.O

                      Dark Mailer is a super fast bulk email software that sends out at speeds greater than 50,000 emails per hour on a dedicated mailing server. Dark Mailer has the capability to use Proxies and Relays and also to send directly. Some of the features include:

                      • Anonymous Mailing using Proxies
                      • Message Randomization to bypass Spam Filters
                      • Speeds over 500K emails per hour on Turbo Mode
                      • Up to 1000 Threads

                      The software taps into a network of zombie computers and is able to send 50,000 e-mail messages per hour from a regular cable modem connection. It affords near-total anonymity because of the networking and is often used by spammers. It currently does not have an official website for downloading.

                      Robert Soloway, one of Internet's biggest spammers, used it. On July 23, 2008, the 29-year-old Solway was sentenced to nearly four years in prison and ordered to forfeit more than $708,000 in income. Prosecutors had asked for a 9-year sentence. He has also lost civil suits for spamming, and owes civil penalties totaling more than US $17 million.

                      Note: Some Antivirus classified this as hack.tool or Mass.flooder

                      Download Dark Mailer

                      Posted by XERO .

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Tekken 6 : Bloodline Rebellion

                      Posted by X.E.R.O

                      Tekken 6 Bloodline RebellionAn upgraded version of the newest game in the Tekken series (which didn't yet hit the consoles) was announced, and will officially be exposed in the upcoming Amusement Show in Tokyo, Japan from September 18th to 20th! It's called Tekken 6 : Bloodline Rebellion.

                      Tekken 6 Bloodline Rebellion has been announced! It will be officially shown at the upcoming Amusement Show from September 18 - 20 in Tokyo, Japan! It will be an upgraded version of the existing Tekken 6 game and is slated for an arcade release in December! Apparently, arcade operators in Japan have gotten the heads up about this new version of Tekken 6, so if you haven’t heard about it yet, you will soon!

                      The goods come straight from Tokyo’s Amusement Machine Show, which opened today. Apparently, Tekken 6 BR is running on several kiosks at the show, and is in playable form. The upgrade features quite a few new elements which make it a pretty considerable change from the original arcade version.

                      New Characters! As reported earlier, two new faces enter the roster.

                      Tekken 6 : Bloodline Rebellion
                      Alisa Bosconovitch, the new babe on the block, is apparently some sort of cyborg or robot- according to the report, she seems to sprout weapons like chainsaws or even mechanical wings during the match. Even crazier, at one point she takes off her head and uses it as a bomb. SHE TAKES OFF HER HEAD, folks. CRAZY! Well, let me say this… I think we called it quite close. WOOHOO!

                      Tekken 6 : Bloodline Rebellion
                      As for Lars Alexandersson, there’s not much known yet about him but he’s described as “a rebel who’s risen to build a new era”. Hmm. Whatever.

                      With the addition of these two challengers, the roster is now at 40- as mentioned in the earlier writeups of T6, the largest lineup in a Tekken game ever. So finally, Namco is fulfilling the stuff they’ve been crowing about. The veteran fighters all get new moves and updated balance (hopefully guys like Bob and Leo will get much-needed tweaks). There were a couple of new stages, as yet unnamed. One was a fiery ruined harbor, while another had a chopper crash into a building.

                      As expected, there will be new costumes for the returning characters- Lili was seen in a slick new costume wtih thigh-high boots; Marduk in a masked wrestler outfit and Kazuya in hakamas, while Xiaoyu is sporting a new skirted outfit. There will also be new items and customizations. Shown in the video was a gatling gun for Bryan, a magic wand for Ling that shoots out stars and hearts, and apparently one item that summons penguins from the ground (!). Hairstyles for characters will also be much more customizable, allowing players to combine hair elements to their liking.

                      For the whole report and lots of pics from the AM show, check out Andriasang.com’s Tekken 6 BR Coverage.

                      Posted by XERO . Excerpts from thelonegamer , gamegrep

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Temporarily Disable "Restart Now" Dialog from XP's Automatic Updates

                      Posted by X.E.R.O

                      Automatic Updates is a great feature. Your computer stays protected from threats without worrying about it… but if it's 3am and I'm trying to play a video game, the last thing I want is for the automatic updates to pop up and remind me every 5 minutes that I need to reboot, interrupting my game… Drives me crazy!

                      Dear Restart Dialog,

                      I hate you.

                      Temporarily Disable "Restart Now" Dialog from XP's Automatic Updates

                      If you want to temporarily disable this popup message and delay rebooting, you can go about it one of two ways. I'm a command line junkie, so I just type this into a command prompt (make sure you use the quotes)

                          net stop "automatic updates"

                      Or you can open Control Panel \ Administrative Tools \ Services and click Stop on automatic updates.

                      Temporarily Disable "Restart Now" Dialog from XP's Automatic Updates

                      Do not disable the automatic updates service, just stop it. The next time you start up your computer, it will restart.

                      Note: If you open the Automatic Updates icon in Control Panel, it will automatically restart the service, which will make the dialog start popping up again.

                      Posted by XERO . Source

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Find a Forgotten Password Saved in Firefox

                      Posted by X.E.R.O

                      Firefox, like many popular browsers, includes a built-in functionality to save your password. Often we'll use the saved password feature so often that we've completely forgotten our password when we need to login to the same website on another computer. Here's how to locate your saved password.
                      In Firefox, navigate to the Tools \ Options menu item. Select the Privacy button, the Passwords tab, and then click on View Saved Passwords. You'll be presented with this screen:Find a Forgotten Password Saved in Firefox

                      Click the Show Passwords button, and navigate down to the website password you are looking for.

                      Posted By XERO . Source

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Prohack Back To Business

                      Posted by X.E.R.O

                      Hi guys…Sorry for a late update. there have been a complete power failure at my home and hence I was unable to post anything on my blog. But as You see,I am back,alive and kicking. I will be posting much stuff in the coming days, Stay tuned and Thanks for supporting me.

                      Regards

                      XERO

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Need for Speed: Undercover

                      Posted by X.E.R.O

                      Need for speed UndercoverNeed for Speed: Undercover is the twelfth installment of the popular racing video game series Need for Speed, developed by EA Black Box and published by Electronic Arts. It is set for release on the PlayStation 2, PlayStation 3, Xbox 360, Nintendo DS, Wii, Windows, PlayStation Portable, iPod Touch, iPhone and mobile phone on 18 November 2008.
                      The game will feature international movie star, Maggie Q , as detective Chase Linh, one of the lead characters of the game. The live-action sequences from Carbon and Most Wanted will return in Undercover. Police chases from previous installments will also return, as well a new Highway Battle mode.
                      Electronic Arts CEO John Riccitiello has stated that the previous release in the series, ProStreet, was "an okay game... It's not good." and that Undercover will bring better innovations and gameplay.Riccitiello also stated Undercover is taking inspiration from action films such as The Transporter, with a large embedded narrative.
                      John Doyle (developer at EA Black Box) has hinted Undercover will feature a brand new game mechanic and a "Most Wanted-ish" sandbox style of gameplay.
                      Little is known about the plot. The game's story mode sets the player in the story as a police officer going undercover into the criminal underground of Tri-city, a fictional city where the game is set. The player's only contact to the police is Chase Linh, played by Maggie Q.
                      Little information has been released about Undercover's police system, but it has been confirmed by EA that the police vehicles will include helicopters.

                      Watch NFS:Undercover Trailers -

                      Debut teaser      G MAC Trailer      Going Under Trailer

                       

                      Posted by XERO .

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      FireFTP- Free Firefox FTP Client

                      Posted by X.E.R.O

                      FireFTP-Free Firefox FTP Client FireFTP is a free, secure, cross-platform FTP client for Mozilla Firefox which provides easy and intuitive access to FTP servers. When you add FireFTP to Firefox, the add-on puts a FireFTP command on the Tools menu. When selected, this opens a new tab in the browser. The tab contains a full-blown FTP client, with your local files on the left side of the screen and the remote server files on the right side of the screen. FireFTP lets you drag and drop files from one side to the other for easy file transfer. You can also perform other typical functions, such as making new directories, deleting files and folders, renaming files and folders, changing permissions, and more.

                      Features

                      • It's free!!
                      • Cross-platform: Works on Windows, Mac OS X, Linux
                      • Secure: SSL/TLS/SFTP support, same encryption used with online banking and shopping
                      • Synchronization: Keep directories in sync while navigating
                      • Directory Comparison: Compare directory content (compares subdirectories too!)
                      • International: Available in over 20 languages
                      • Character Set Support: UTF8 and just about any other character encoding supported
                      • Automatic reconnect and resuming of transfers
                      • Search/Filtering
                      • Integrity Checks of transfers (XMD5, XSHA1)
                      • Export/Import accounts
                      • Remote Editing
                      • File Hashing: Generate hashes of files (MD5, various SHA's)
                      • Drag & Drop
                      • File Compression: Using MODE Z
                      • Timestamp Synchronization
                      • Proxy support
                      • FXP support
                      • Advanced properties (CHMOD, recursive CHMOD, thumbnails)
                      • Tutorials and help files available for support
                      • IPv6 support
                      • Open Source!
                      • Seamless integration with Mozilla Firefox

                       Download FireFTP

                       

                      posted by XERO .

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Impress a Girl on a Date

                      Posted by X.E.R.O

                      Asked your sweetheart on date ? but do you have no idea of what goes in a date ? or how to make the time memorable and mesmerizing for the opposite sex ? Here's how to impress a girl on a date and make her enjoy your company.

                      Things You are Gonna Need

                      • Money.
                      • A car or any transport.
                      • Flowers (when appropriate).
                      • Manners.
                      • Sophisticated and sexy appearance
                      • Confidence
                      • Style


                      Steps

                      • Take the initiative. If you don't invite her on a date, she most likely won't invite you. Be nice when inviting her; you could let her pick the place you go and you can pick her up at her place. However, don't spend a large amount of time deciding what to do. Be decisive. Have a plan B as often as possible.
                      • Be a real gentleman. Buy her live flowers, open the car door, restaurant doors, everything. Girls love that.
                      • Just be yourself. All you have to do is relax and don't worry about what she may be thinking of you. Have no fear about putting yourself out there; that will just make her enjoy your company. You'll show her you are comfortable around her.
                      • Have a good sense of humor! Laugh at her jokes and smile. Never tell sad experiences, don't turn the date into a sad thing. Stay confident.
                      • Set goals. The most important goal to set is making her feel comfortable with you. Ask her about what she does, likes, what her favorite movies are, and tell her about yours.
                      • Be a good listener, switch "uh-huhs" for nods and smiles, and don't show disinterest.
                      • Make sure you smile when you meet her, so that she will know you are excited to see her.
                      • Tell her she looks great.
                      • Listen to her carefully
                      • Make sure you don't go too quickly on your date.

                      Tips

                      • Make sure you bring enough money.
                      • After the date, give her another flower. Tell her how much you enjoyed her company and leave her at her place.
                      • Remember to walk her up to the door when you drop her off. Don't just leave her there at the curb.
                      • Remember to dress nicely.
                      • Try to keep hairstyles relatively modest. Girls worth dating appreciate the well-groomed man.
                      • Have clean-looking facial hair. Get it trimmed or shaved off.
                      • If you are a messy eater, don't order spaghetti or any other messy food at a restaurant.
                      • Music. Make sure you ask what kind she likes before putting on your favorite tunes. She might not enjoy them.
                      • Talk about where she got her hair to look that nice, or dress, or whatever.
                      • Don't kiss her unless you know she wants to be kissed. Some signs include her constantly looking at you then curling her lips, but the biggest sign is when you're taking her back to her place; if she jiggles her keys before she goes into the house, it means she want to be kissed. Otherwise there is a lot less chance.

                      Warnings

                      • Don't suggest what she should eat (unless asked). Let her choose what she wants to eat.
                      • Don't tell her about your "sexy stories" or sad experiences.
                      • Don't speak about your ex. This will upset her and make her mad.
                      • Don't talk about money; it's a turn off.
                      • Don't wear dirty clothes.
                      • Don't be a girl about anything.

                       

                      posted by XERO . Copyright Creative commons and Wikihow 

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      BIONIC COMMANDO

                      Posted by X.E.R.O

                      Bionic Commando is the working title to the seventh generation console installment in Capcom's long-running adventure-platformer series, developed and published by Capcom in collaboration with Swedish developer GRIN (best known for Ballistics and the Microsoft Windows version of Tom Clancy's Ghost Recon Advanced Warfighter series). The game is the direct sequel of the second game and its remake Bionic Commando Rearmed in the series, released in 1988 for the NES and 2008 current gen systems.The development team has gone on record saying they have looked through all the old games including Mercs for connections. The game is run on the homebrewed Grin "Diesel" Engine.

                       Bionic_Commando_by_arcipello Initial speculation pegged the game as a sandbox third person action game, similar to games such as Spider-Man 2 or The Incredible Hulk: Ultimate Destruction.However, more recent information suggests it will be more linear. The player will be able to swing around Ascension City and other environments such as canyons, which will feature multiple routes that will require players to use various swinging techniques. Spencer is also able to target enemies while hanging upside down, climbing a building or even in mid-swing, while using an implement called the Bionic Arm which can be used to attack enemies at close range. He can also use it to grab and launch objects such as boulders and cars at enemies

                      The events of the game take place ten years after the NES installment.According to Capcom's press release, this iteration follows Nathan Spencer (voiced by Mike Patton, Ex-Faith No More lead singer ), a government operative working in the fictional Ascension City and an Operative for the Tactical Arms and Security Committee or T.A.S.C which specializes in training bionic commandos like Spencer. After he is betrayed by his own government and falsely imprisoned for assignations he had no part of as the great bionic purge begins. Before his execution, an experimental weapon detonates in Ascension City, unleashing an earthquake along with a radioactive shockwave that leaves the city destroyed and wiping out its populace, with the threat of an invasion from a terrorist force.Spencer is now freed to redeem his name along with the T.A.S.C's and is reunited with his bionic arm which he was stripped of.

                      Super Joe, a supporting character from the original NES version, will also appear in the sequel. He will be voiced by Steven Blum.The character is now identified as Joseph Gibson, the Player 1 character from the arcade game Mercs. In the new Bionic Commando, Gibson is the former lead director of the T.A.S.C, who assists Spencer to clear his name and in turn help bionics become legal again

                      Players can also use a code found in Bionic Commando: Rearmed to unlock a skin of "RAD" Spencer from the original game with short hair green blazer and converse like shoes.

                      It was confirmed in the August issue of Game Informer that Bionic Commando will have an option for online multi-play with 16 players. It will feature classic staples such as deathmatch and capture the flag. The grappling hook will still be usable online.

                      Posted by XERO 

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Online Gaming Exploits

                      Posted by X.E.R.O

                      In the realm of online games, an exploit is usually a software bug, hack or bot that contributes to the user's prosperity in a manner not intended by the developers.Exploits allow the user to take unfair advantage in the exploitable game if he wishes so.Lets know something more about them.

                      Known types of exploits in FPS games
                      • Wall hack- The changing of wall properties in first-person shooters. Most wallhacks are used to make a map's walls at least partially transparent, allowing players to see objects lying behind a wall.
                      • Aimbot- An aimbot, sometimes called "auto-aim", is software that assists the player in aiming at the target. This gives the user an advantage over unaided players.
                      • Cham hacks- or chams for short which generally replace player models with brightly colored skins, often in neon red/yellow and blue/green colors.
                      • Bunny hopping or Strafe-jumping- requires a very specific combination of mouse and keyboard input. The exact technique involved depends on the game itself; however, most games follow a certain pattern of user actions. Not all players consider this as a damaging exploit. Some FPS games have maps made just for this trick.
                      Known types of exploits in real-time strategy games
                      • Maphack- A cheat that enables the player to see more of the map than the game intends them to see. A common feature in multiplayer real-time strategy games is the inability for the player to see outside the visibility range of the individual units and buildings that the player controls.
                      Known types of exploits in MMORPG
                      • Speed Hacking/Teleporting/Subterrain Travel - If character position in an MMORPG is determined by the client side (usually not the case), it is possible for players to send out artificial positional data and be instantly transported to any part of the world or used to speed up traveling speed by increasing positional deltas.
                      • Holes - Some games may contain accidental holes in the map, allowing the player to get under the map. Holes are mostly harmless, although some use them in player vs. player situations to sneak around and get behind their opponent.
                      • Botting - A player who runs a third party program to control their character. The bot will kill monsters, loot money, mine ore, collect herbs or gain levels automatically without the player having to be in front of the computer.
                      • Duping - Duplicating, or replicating items or money.
                      • Game Mechanics Exploits / Bug Exploits - There are also other exploits involving the physics of the game, sometimes in conjunction with items. This includes using wall-walking to get into unfinished areas or abilities to make one's character unattackable by mobs or other players and sometimes are able to attack back.
                      • Data Mining - This is typically most common around the time that a patch is released on the public test realm of World of Warcraft. Players will try to access files not yet in game and then host them on websites to expose content not yet released (usually new zones, items, and graphics).
                      I think the above data is enough for an advanced PC user or a considerably hungry gamer to get started for his research.I will be posting some more articles on cheating in games.Stay tuned till then.
                      Happy Gaming :)

                      Posted by XERO . Excerpts from Wikipedia and Various sources.

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Add Your Gmail To Windows Live Mail

                      Posted by X.E.R.O

                      The cool thing with email these days is you can pretty much use any client you want and still be able to check most of your web based accounts.  Most POP accounts such as hotmail or Gmail are able to be checked with any client.  Here we will take a look at how to get your Gmail into Windows Live Mail. 
                      **  Note:  This is for Windows Live Mail and not Windows Mail which replaced Outlook Express and is included in Vista.  Windows Live Mail is a separate download via Windows Live Services.  
                      For checking a Gmail account with different clients you do need to make sure your Gmail has POP enabled.  Go into your Gmail \ Settings \ Forwarding and POP/IMAP and enable POP to for all mail which will transfer the entire inbox or just the mail you get from this point forward.  Also you can choose weather or not to keep a copy on Google’s servers.
                      1
                      The first thing you will want to do is log in to your Live account if you haven’t already and click on “Add an e-mail account”.
                      1 
                      Next enter in the account information for the email address, password and Display Name you want include and click on Next.
                      1
                      You then get a message advising you to follow instructions on setting up POP in Gmail.  Just ignore that because we already set it up at the beginning of this article.  You may want to check this account as your default however.
                      1
                      After everything is set up you will start getting messages from your Gmail account.  Pretty slick!
                      1

                      More will be coming to configure the clients.Stay Tuned for Next time.

                      Posted by XERO.
                      SOURCE
                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      How to Improve your Skills as a Programmer

                      Posted by X.E.R.O

                      This will give you a few hints and some help to becoming a better programmer. So read on and enjoy! Programming can be a lot of fun if you follow these simple but efficient rules to make it that way.Otherwise there are lot of programmers out there who are unsatisfied with their programming skills.So lets get started..

                      Steps

                      [1].Gather complete requirements.Think about how what you write will function; try to consider an efficient way of doing it.

                      [2]. Add Comments to your code.Whenever you feel your code needs some explanation, drop some comments in. Each function should be preceded by 1-2 lines describing the arguments and what it returns. (Comments should tell you why more often than what. Remember to update the comments when you update your code!)

                      [3]. Use naming conventions for variables.It will help you keep track of what type the variable is. e.g. for integer variables, intRowCounter; strings: strUserName. It doesn't matter what your naming convention is, but be sure that it is consistent and that your variable names are descriptive. (See Cautions and Warnings below)

                      [4]. Organize your code.Indent after each bracket, try putting spaces between a variable name and an operator such as addition, subtraction, multiplication, division, and even the equal sign (myVariable = 2 + 2).

                      [5]. Test.Try to think of anything that might prevent it from working correctly. Debug the errors you find.
                                * Write your tests to always include the following:
                                      o Extremes: zero and max for positive values, empty string, null for every parameter.
                                      o Meaningless values: Jibberish. Even if you don't think someone with half a brain might input that, test your software against it.
                                      o Wrong values: Zero in a parameter that will be used in a division, negative when positive is expected or a square root will be calculated. Something that is not a number when the input type is a string, and it will be parsed for numeric value.

                      [6]. Practice. Practice. Practice.

                      [7]. Create a 'model' of your code that both the customers and the final operators can understand - a blueprint. Present it to them so they understand it and give them a chance to comment

                      [8]. Structure the project as a series of presentations and deployments. Dont plan in too much detail beyond the 1st couple of presesentations. Count on finding out new things about the brief every time you present or deploy. Count on the customers and operators changing their minds every time. Be ready for it. Use it. It will make the project actually worth completing.

                      [9]. Build a simple program then after you get the program the way you want it to be, then start adding new features to it. An example of this would be to build a number guessing program where the program will generate a random number every time you load the program then you have to guess the number. Then you can add to this by having the program be able to have a new random number with the press of a button, having you not being able to guess after a certain number of failed guesses, etc. This will not only help you with upgrading a program, this will also help you determine if there are any problems with the program prior to the upgrade.

                      Tips n Tricks

                      • Start small, aim for things that you most likely will be able to achieve, and work your way up.
                      • It is very important that you use TAB spacing to differentiate lines of code that are encapsulated (if, for, while, etc...) to make it easier to determine if you are still inside the encapsulation. This makes it much easier to read.
                      • Tutorial sites are an excellent resource as well.
                      • Reading the work of others (source code) is an excellent means of improving ones skills.
                      • Use syntax-highlighting in your editor, it really helps.
                      • People can often be a good resource for information, particularly when starting out.
                      • Keep your past work, it is a good point of reference.
                      • Change one thing at a time when debugging and then test your corrections before moving on the next item.
                      • After each bigger segment of work, take a break doing something else, then review what you have written with a fresh mind; rethink and rewrite it, making it more effective and elegant by using less code. Repeat until perfect.
                      • A program such as Visual Basic .Net can cost a lot of money. If you MUST use visual basic, go out and download Visual Studio Express Beta 2 2005 from www.microsoft.com or you may buy the student or learning editions.
                        Remember programming languages like Java and Python, available at no cost.
                      • Have fellow programmers read your code. If you don't know any send your code to professionals. You would be surprised what they know that you may have never thought of before! Can't find a professional? There are plenty of forums on www.myspace.com where most of the users are good hearted programmers that offer constructive criticism.
                      • Double check spelling. A slight mistake can cause a lot of stress.
                      • Use version control management. Tools like CVS or SVN make it even easier to track code changes and bugs. Once you get used to it you wont look back.
                      • Use an IDE (Integrated Development Environment).
                      • Customers and bosses aren't nearly concerned with how your program works nearly so much as they are with how well it works. Think bottom line. Clients are intelligent, but busy. They won't care what kind of data structures you're using, but they will care if it speeds up performance by 10%.

                      CAUTION and WARNINGS !!!

                      • In step three, this Hungarian notation (indicating a variable's type with its name) is widely avoided by many programmers. It can easily lead to inconsistency when edited or ported, and can become quite confusing. Try to avoid this as much as possible
                      • Copying and pasting others' code is a bad habit, especially if you weren't supposed to see the source. But all things considered, taking small portions from an open source program could be a learning experience. Just don't completely copy a program and attempt to take credit for it.
                      • Save your work frequently as you go along or you risk losing hours and hours of work to a computer crash or lock-up.
                      • Always test your code
                      • Don't copy code from another program unless you have permission or the license permits it, like Open Source licenses.

                      Things You Will DEFINITELY Need

                      • Ideas
                      • IDE (Integrated Development Environment)
                      • Computer
                      • Reference books or web tutorials

                       

                      Posted by XERO . Excerpts from Wikihow

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Ulitmate Bit Torrent Guide (Links and pics)

                      Posted by X.E.R.O

                      Tired of Slow torrent speeds ? here is the ultimate torrent guide for Newbie’s and Experts alike.
                      Hope you like and enjoy this guide, Heres the contents :-
                      Choosing your client
                      1. The best sites I have come across
                      2. Opening your ports
                      3. Checking to see if the ports are open
                      4. Spyware + Adware Section
                      5. Antivirus section
                      6. Connecting to your tracker
                      7. Common Tracker Errors
                      8. Opening the downloaded torrent
                      9. Firefox Plugins
                      10. Messages to Torrent Newbies
                      11. lvlord patch
                      12. Locating your I.P Address
                      13. My success!!!

                      [1].CHOOSING YOUR CLIENT
                      I have been through alot of different clients. The best I've found is Bitlord v1.1 thats were i hit all my 100KB/s+ torrents,
                      You can find this at http://www.bitlord.com/.
                      The second best one in my opinion is Azureus, this is very user friendly, especially with all the plugins. Located at http://azureus.sourceforge.net/
                      Another useful client is Bittornado, Latest version is 0.3.12 and its homepage is http://bittornado.com/
                      I've also tried G3 Torrent, and I have to say i liked its interface.Can be found at http://g3torrent.sourceforge.net/ i believe the newest version is 1.01
                      ABC (Yet Another Bittorrent Client), ABC is an improved client for the Bittorrent peer-to-peer file transfering, It can be downloaded from http://pingpong-abc.sourceforge.net/ 2.6.1 is the newest available version i think.
                      Bitcomet is used by alot of people here at AD, It's homepage is http://www.bitcomet.com/
                      DVDBack23 has produced a guide for this client http://forums.afterdawn.com/thread_view.cfm/234097
                      The penultimate one I will mention is Artic torrent, as this is what i would reccommend if your computer is quite low end, because it doesn't use alot of your CPU up. this one is at http://www.int64.org/arctic.html
                      Exeem is a brand new Peer To Peer program, SPYWARE and ADWARE free which is good news,
                      Can be downlaoded at http://www.exeem.com/ lastest release 0.27


                      [2].THE BEST SITES I HAVE COME ACROSS
                      http://www.bitsoup.org - you have to register but it's still free
                      http://www.bitenova.org
                      http://www.torrentreactor.to
                      http://www.piratebay.org
                      http://www.torrentspy.com
                      http://www.btjunkie.org
                      http://www.litebay.org
                      http://www.bi-torrent.com
                      http://www.bittorentportal.com
                      http://www.mininova.org
                      http://www.araiditracker.com
                      http://www.torrentbytes.net/
                      http://www.filelist.org
                      http://www.torrentpimps.com
                      http://www.empornium.us
                      http://www.torrentit.com
                      http://seedler.org/en/
                      http://www.torrenttyphoon.com - Very nice torrent Search Engine
                      http://www.torrentz.com - Great Search Engine
                      and some more can be found here
                      http://forums.afterdawn.com/thread_view.cfm/1/174585#1261180
                      The best Public sites i have found to date are with descriptions
                      http://www.isohunt.com/ - Excellent torrent Search.
                      http://www.torrentspy.com/ - Excellent search engine for torrents, incredible variety
                      http://www.torrentreactor.to/ - Well Organized, maintained Large Selection
                      http://mininova.org/ Large Selection of torrents, updated daily.
                      http://www.litebay.org/ - Good site
                      http://www.livetorrents.com/ - Good allrounder offering games, movies...
                      http://www.hypertorrent.com/ - Decent Search enginge for Torrents
                      http://www.torrentportal.com/ - Another good site
                      All rounder sites
                      More sites that aren't bad
                      Novatina.com Tv, movies, games, music, apps, anime, dvdr, more
                      Link: http://www.novatina.com/
                      Booga.org(meganova) Tv ..............
                      Link: http://www.meganova.org/
                      Torrent Valley Tv ..............
                      Link: http://www.torrentvalley.com/
                      Potuk(Pirates of the UK)
                      Link: http://www.potuk.com/forum/
                      Torrent Addiction
                      Link: http://www.torrent-addiction.com/
                      Piratic
                      Link: http://piratic.org/
                      AND the new litebay.org
                      Link: http://www.litebay.org/
                      Anime Sites
                      I know of a few decent anime sites, i don't really like anime but someone might benefit from these sites
                      Animelab.com - Alot of anime
                      Link: http://www.animelab.com/anime.manga/bittorrent/
                      AnimeIndex - More anime
                      Link: http://www.animeindex.net/
                      Animesuki.com - It's fairly good from what i can see
                      Link: http://www.animesuki.com/
                      BoxTorrents - Packed with Anime
                      Link: http://www.boxtorrents.com/browse.php

                      Give it a try aswell as some of the other sites :P

                      [3].OPENING YOUR PORTS TO GET OPTIMAL SPEEDS
                      HOW TO OPEN YOUR PORTS
                      http://www.portforward.com - Print off all the instructions that gives you.
                      For e.g I have a Netgear router so i type 192.168.0.1 into my broswer(Mozilla FireFox). Then type in 'admin' and 'password' in the two available spaces. I followed the intrustion on default portforwarding for the Netgear DG834, and followed them instructions using my listening port 65535.
                      Also on Port Forwarding if anyones struggling if you need to access your router config..
                      http://192.168.1.1/ (Asus, Draytek, Linksys, Zyxel, Cisco,WooWeb-Pro)
                      http://192.168.2.1/ (Belkin,SMC (some browsers need :88 added))
                      http://192.168.0.1/ (DLink, NetGear,Nexland)
                      And then visit Portforward. this is a great site for instructions with pictures: http://portforward.com/routers.htm Also, most manufacturers post their manuals online.
                      You need to forward your ports if you have NAT in order to get optimal speeds. This is one of the most common issues, people fail to configure when they use BitTorrent.
                      BitTorrent default ports are ports in the range of 6881-6999.
                      When opening ports here are some commmon ports that may want to open, if you want to get optimal speeds
                      Client Port
                      TCP, UDP
                      Azureus: 6881
                      BitComet: 12242
                      BitTornado: 10000-10004, 10000-10004
                      BitTorrent: 6881-6889
                      ABC: 6881-6999
                      Shareaza: 6346, 6346
                      Bitlord: RANDOM PORTS
                      I'll also add some general P2P Ports,Bear in mind these have nothing to do with Bittorrent just Filesharing
                      Limewire: 6346 6346
                      Gnutella: 6346 6346
                      eMule: 4662-4711, 4672
                      eDonkey: 4662, 5737
                      BearShare: 6346
                      Only open the ports you need to open!
                      Also your ISP may not allow opening some of these ports so you have to choose a random one instead bear in mind this cannot be done with all file sharing apps
                      Ports for Bitlord -
                      I use 65535, To use that port go to Options > Prefrences > Then type in 65535 in the listening port. Then set your global max upload rate to 20KB/s rather than No Limit. You have to configure your router to open the ports go onto your routers site (192.168....) I have a list off all of them above. Then go to http://www.portforward.com, And choose the default guide for your router

                      [4].CHECKING TO SEE IF THE PORTS ARE OPEN
                      When opening ports and you need to know if they were open,
                      So run a few tests ..............
                      1) go to Shields Up!!
                      http://grc.com/x/ne.dll?bh0bkyd2
                      2)Then click proceed
                      3)
                      4)Hopefully you will see this

                      Next you could run a NAT check http://btfaq.com/natcheck.pl
                      Type in your port number 65535 in my case
                      And hash of the torrent you need that, you can get it from the torrent site you get it from e.g go back to place you got the link from.
                      Hopefully you will get pass! If everthing is as i have told you have forwarded your ports correctly

                      [5].ADWARE + SPYWARE SECTION
                      when downloading Torrents you need to be careful, so I'll post a list of good Spyware/Adware Removers out there the majority of files are geuine but some are Viruses, Trogans, Keylogging Tools.....etc
                      I'll begin with one of the best, Ad-Aware SE Personal, it's a very nice tool
                      Description at http://www.lavasoftusa.com/software/adaware/
                      Download at http://www.download.com/Ad-Aware-SE-Personal-Edition/3000-8022_4-...

                      Next is my favourite Spybot S&D, IMO it's the best and it's free!
                      Description at http://www.safer-networking.org/en/index.html
                      Download at http://www.safer-networking.org/en/download/index.html

                      Microsoft Windows Antispyware (Beta version) this will help protect your comp from spyware
                      Description at http://www.microsoft.com/athome/security/spyware/software/default.mspx
                      Download at http://www.microsoft.com/downloads/details.aspx?FamilyId=321CD7A2...
                      (You must have a genuine copy of Windows to get this)

                      Another good one is SpywareBlaster v3.4, It's freeware!!
                      Description at http://www.javacoolsoftware.com/spywareblaster.html
                      Download at http://www.download.com/SpywareBlaster/3000-8022-10196637.html?pa...

                      Webroot offers a good range, In particular SpySweeper although it costs theres a free trial
                      Description/Download http://www.webroot.com/consumer/downloads/?WRSID=0bedb3f5d72f3862...

                      Anotherone I found is Spyware Doctor™ 3.2, seems to be ok(an award winning spyware remover)
                      Description at http://www.pctools.com/spyware-doctor/
                      Download at http://www.pctools.com/spyware-doctor/download/

                      eTrust PestPatrol is another great tool, it's one of the best I've found
                      Description/Download free trial at http://store.ca.com/v2.0-img/operations/ca/site/pestpatrol/pp4.htm

                      *****Trend Micro Free online virus scan*****
                      http://housecall.trendmicro.com/
                      Also on the trend micro note try their free trial
                      Download at http://uk.trendmicro-europe.com/enterprise/downloads/choose-reaso...

                      Last one now BPS AntiSpyware remover, heard good things about it
                      Description at http://antispyware.bulletproofsoft.com/
                      Download at http://www.softpedia.com/get/Internet/Popup-Ad-Spyware-Blockers/B...
                      Antispyware software is very important as some people upload fake torrents which are essentially viruses, It will also stop hackers

                      [6].ANTIVIRUS SECTION
                      Also get some form of antivirus software -
                      The best IMO Norton Antivirus or Internet security 2005 - Description at http://www.symantecstore.com/

                      [7].CONNECTING TO YOUR TRACKER
                      Also a reason for bad speeds is because your not connecting to your tracker properly heres a diagram i made, Please note: this is only for bitlord v1.1 it may be different on your client.


                      [8].COMMON TRACKER ERRORS
                      Some of common errors people get from the Trackers
                      error 10061 problem connecting to tracker - This means that you cannot for whatever reason establish a connection to the tracker needed to download a file. This is commonly caused by routers, trackers being too busy, or your net connection going down.
                      My download just sits at the “connecting to peers" status
                      This means there are no peers to connect to, or your firewall/router is preventing a connection.
                      error 10060 Connection timed out - this means that you sent a request to a peer or tracker, and there was no response. Again this error generally sorts itself out given time, and can be caused by a busy tracker. If it doesn't carry on after a bit double check the torrent is seeded and the tracker is working
                      Problem connecting to tracker - <urlopen error (111, 'Connection refused')> - Just let the torrent run in your client and the client will keep checking the tracker and should resume eventually.
                      I got stuck at 99% with several seeders - Try stopping the torrent and restarting from tracker :) that should work

                      9.)OPENING THE DOWNLOADED TORRENT
                      Mainly i download files that are .rar so i open and extract them using WinRAR, that supports RAR, ZIP, CAB, ARJ files.
                      If you download a .ISO .cue .pdi .ccd or .mds file use Alcohol 120%( http://www.alcohol-soft.com/ ) or Daemon Tools to mount it or burn them using Nero. (If it is a DVD ISO you could use DVD Decrypter)
                      Examples
                      Familyguy.rar - You open with WinRAR, Use this to extract then you might get any video format, .avi or .vobs or something like them
                      Familyguy.iso - You can check the quality by using VLC Media Player by VideoLAN Team, Then if your happy with the quality burn with Decyrpter it ISO Write mode

                      [10].FIREFOX PLUGINS
                      Another handy thing i would like to add is Mozilla FireFox plugins, I have the Torrentspy, BiteNova and the Torrenttyphoon Plugin. Excellent 'lazy' feature that saves alot of typing although i don't use public trackers as much i ust to their still very handy when my U/D ratio is getting abit out of control or if it's a torrent i don't mind waiting for.
                      If you dont have firefox get it here http://www.mozilla.org/products/firefox/ It's the perfect browser for torrents especially with all the plugins and Bookmarked torrent sites.
                      All those intending to get Firefox look at Geestars pipelining thread OMG that increases the speed of loading pages considerably, which is handy when browsing while downloading Torrents
                      http://www.torrenttyphoon.com


                      [11].MESSAGES TO TORRENT NEWBIES
                      **I would reccomend changing your max upload to 20 when downloading!!**
                      at the start i couldn't get out of the 20s I have now improved things by 100KB/s.
                      Try to download your torrents one at a time. DO NOT RUSH
                      always download torrents when their at their healthiest
                      Don't expect miracles when the torrent has few seeders.
                      Once youve opened your ports,
                      Speed is ultimately down to the number of seeders and peers
                      Then its down to your internet connection (dial up,1mb,2mb....)
                      Don't be discouraged when your in high 20s low 30s and have 10 seeders or less thats normal! its very rare that I get above 50KB/s with less than 10 seeders.

                      [12].LVLORD PATCH
                      Once youve opened your ports, Speed is ultimately down to the number of seeders and peers
                      Then its down to your internet connection (dial up,1mb,2mb....)
                      Don't be discouraged when your in high 20s low 30s and have 10 seeders or less thats normal! its very rare that I get above 50KB/s with less than 10 seeders.
                      what does it do
                      SP2 limits the number of simultaneous incomplete outbound TCP connection attempts. The Lvlord patch fixes that and then you can make as many as you want it usually works best for P2P apps like Limewire and IM-L Peanuts, but I've found it works on Torrent clients aswell

                      [13].LOCATING YOUR I.P ADDRESS
                      If you need to locate your I.P Address for whatever reason heres how



                      [14].MY SUCCESS


                      I did some research into the speeds 1mb Broadband should give....
                      Limewire Pro 4.9.23

                      IM-L 5

                      So on almost every client i was downloading at about 110KB/s-115KB/s,
                      Until recently i couldn't top 115KB/s until a couple of days ago when I maxed out at 132KB/s on a single Download, It can be done

                      A Guide By J-Kwon . posted by XERO
                      Source

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      WINDOWS RESCUE DISCS

                      Posted by X.E.R.O

                      WINDOWS RESCUE DISCS

                      Got your windows corrupted ? Earlier versions of Windows prepared you for the day your PC wouldn't boot. It came with a program that formatted a bootable floppy disk, complete with diagnostic and repair utilities. If you had the forethought to create that floppy while Windows was still working, you were ready when it eventually failed.

                      The bootable floppy worked using DOS.But the modern versions cant make that floppy and further DOS has become so crappy that it cant handle NTFS partitions.

                      Since Microsoft doesn't provides you with the ability to create an emergency boot disk, some great innovators have stepped in to help you out.

                      Everybody nowadays has NERO or ROXIO or atleast Daemon or Alcohol 120% to mount up and burn ISO images since most of rescue disc come in *.ISO format.So Burning wouldn't be a problem for you,even if you are a casual PC user.

                      Know Your Rescue OS

                      Since DOS doesn't handle XP or Vista repairs well, each of these discs boots into one of the following three operating systems. It's good to know a little about them.

                      Windows PE: The official, CD-bootable version of Windows (the PE stands for Pre-installation Environment), Unfortunately, Microsoft’s anti piracy measures (monopoly and tyranny) has led to limited use of it and few utility authors have received permission to use it.

                      BartPE: Since Microsoft won't share its preinstallation environment, Bart Lagerweij created his own, and he gives it away for free. But to avoid copyright infringement, you must have Windows XP installation files which you may or may not already have*.

                      * (Lemme give  you a hint – drop at your neighborhood geek :)  ) 

                      Linux Live CD: The name refers to any version of Linux you can download as an .iso file and boot as a CD. But Linux can be pretty scary for Windows Diehards and it cant always handle NTFS partitions well .but still its of a great help.

                       

                      The Rescue Discs

                      So let's get on with it. I'll start with discs that simply give you access to the files on your hard drive, and work my way up to the powerhouses that can diagnose and repair most boot problems.

                      Puppy Linux

                      If Windows won't boot, nothing gets you into your hard drive faster or more easily than Puppy Linux. Puppy isn't the most powerful version Puppy Linuxof Linux , but it's great for accessing NTFS-formatted hard drives--especially if you're not comfortable with Linux's whole mount concept. Just open the Drives window and select a drive, and Puppy will mount it for you--in read/write mode, if possible.

                      If Puppy succeeds in mounting the drive with read/write permissions, you not only can copy your files elsewhere, but you can also edit them. Puppy Linux comes with AbiWord, which supports .doc files, and Gnumeric, which supports .xls. And even if it mounts read-only, you can still copy the files to an external drive, most of which are formatted in the universally accessible FAT32 file system.

                      But be careful how you click. Actions that take double-clicks in Windows, such as opening a file, take only one in Puppy.

                      Price: Free

                      Download Puppy Linux


                      BartPE

                      The BartPE operating system makes a pretty good boot disc on its own, getting you into Windows and letting you access your drive. It doesn't have much in the way of repair utilities, but it has chkdsk, which should probably be the first one you try. And it can run any portable Windows utility (that that doesn't require an installation) you care to give it.

                      Creating a BartPE disc isn't as easy as double-clicking an .iso file. You have to download, install, and run Bart's PE Builder. To create a CD, the program needs the Windows 2000 or XP installation files. One place you're sure to find them is an actual Windows installation CD-ROM. But the recovery disc that came with your PC probably doesn't have them.

                      Luckily, if your PC came with XP installed (and thus, not with a true XP CD), the necessary files are probably in a folder called C:\Windows\i386. But I do mean probably, not definitely. However, since the PE Builder is free, you're not losing much if it can't create a disc.

                      Although BartPE's program selection is slim, the PE Builder lets you add other programs to the disc before you burn it.

                      Price: Free

                      Download BartPE


                      Vista Recovery Disc

                      Vista Recovery DiscIt looked like Microsoft was finally going to do the right thing. Beta versions of Vista SP1 came with a modern equivalent of the old Windows Boot Floppy--a Start menu option called "Create a Recovery Disc" that burned a Windows PE-based emergency CD.

                      Alas, Microsoft removed that feature before SP1 shipped--but not, fortunately, before NeoSmart turned the disc into an .iso file and made it available on their site.

                      Running on the Vista version of Windows PE, the Recovery Disc is basically a Vista installation disc minus the install files. It even has an "Install now" button that asks for a Product Key before failing. You're better off clicking the Repair your computer button. Among its Vista-only options are a tool for diagnosing and fixing startup problems, a version of System Restore that uses restore points on the hard drive, the restore portions of Vista's backup program, and a memory diagnostic tool.

                      Price: Free

                      Download Vista Recovery Disc

                       

                      Ultimate Boot CD for Windows

                      Ultimate Boot CD for WindowsThis BartPE-based boot disc comes with a huge selection of tools to access your data and get your PC booting properly again. Some of them are even useful.

                      UBCD takes a long time to load and asks you some odd questions before it's finally up. But once it's there, you can edit the Windows Registry (yes, the one on the hard drive) in RegEdit, recover deleted files, and even run benchmarks. There are several malware scanners, four defraggers, and eight diagnostic programs (including HD Tune and Windows' own chkdsk).

                      This boot CD also includes backup utilities to help you salvage your files. There's a driver backup and a system profile backup whose Web-based documentation no longer comes up. And four separate image backup programs. One of those programs, DriveImage XML, I considered recommending in past articles but didn't because restoring from it requires a second Windows installation--something the program gets with UBCD.

                      The experience of setting up UBCD is identical to creating a BartPE disc--with the same possibility of failure. But when it works, you get a lot more.

                      Price: Free

                      Download Ultimate Boot CD for Windows


                      Trinity Rescue Kit

                      This is the only Linux Live CD variant I've ever encountered that is intended specifically for rescuing Windows computers. As such, it's no surprise that it's a powerful and versatile repair environment.

                      But it's really not designed for Windows users. TRK's command line interface could humble anyone but the most devoted Linux geek.

                      If you take the time to read the 46-page documentation and learn the program, you'll be rewarded next time disaster strikes. Among the tools that will be at your disposal are a script that runs 4 different malware scanners, a tool for resetting passwords, a Registry editor, a program that clones an NTFS partition to another PC over a network, a mass undeleter that tries to recover every deleted file on the drive, several tools for recovering data off a formatted or dying disk, two tools for fixing master boot record repair programs, and hardware diagnostics.

                      Price: Free

                      Download Trinity Rescue Kit


                      Active@ Boot Disk

                      Active@ Boot DiskFinally, we come to a boot disc that offers useful tools, is easy to use, and can be created from virtually any XP or Vista computer. The catch? At $80, it costs $80 more than the other five options put together.

                      Based on Windows PE, LSoft Technologies' Active@ Boot Disk offers a well-chosen collection of utilities, including image backup and recovery, a CD/DVD-based data backup program (Windows PE and Active@ load entirely into RAM, making the disc drive available for other uses), and a tool for recovering deleted partitions and files. You can change Windows passwords, wipe your hard drive, and choose between three partition managers. A Windows Explorer clone lets you copy files off of the hard drive.

                      You can even bring up Windows' Task Manager, although I'm not sure why you'd want to. And if you're feeling really geeky, there's even a HEX editor.

                      Price: $80 (ten-day free trial period)

                      Download Active@ Boot Disk

                       

                      Posted by XERO . Excerpts from PCWORLD

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Download FPS Creator X10

                      Posted by X.E.R.O

                      Download FPS Creator X10
                      Prepare to enter the exciting world of game making, as you create entire worlds from your imagination and populate them with anything you want. Add in your very own squad to fight by your side or go it alone. Make fun games with stories unique to you and features never before seen in a computer game, from pick-ups that give you a million lives to an opponent who can fill a room with boiling acid - and why not, it's your game, your rules!

                      FPS Creator X10 is the world's first DirectX 10 game creator for Windows Vista! for the first time ever you can control the powerful features on your graphics card. Visually stunning effects including parallax relief mapping, bloom, reflection, refraction, volume soft shadows and soft particle shader effects are all under your control.

                      Learn skills you can take with you into the games industry, a jump start into designing games for a living, or just have a great time designing and creating games.
                      "It does a better job at showing off the pluses of DX10 than Crysis ever managed to do". PC Gamer, March 2008.
                      Features
                      •      Advanced AI Character Behaviours: Both hostile or friendly
                      •      Takes advantage of Dual Core and Quad Core CPU technology
                      •      Create Multiplayer Arena games you can play with your friends
                      •      Script your own Game Logic with the built-in programming language
                      •      Huge library of models, textures and sounds - with new model packs being released all the time
                      •      Share your creations as stand-alone executables freely
                      •      Active community of FPS Creator users, ready to share ideas
                      •      Game action above and below water. Players can run, leap, swim, dive and even affect the water level
                      System Requirements
                      FPS Creator X10 only works on Windows Vista with the NVIDIA GeForce 8 series of DirectX10 video cards.
                      We strongly recommend the NVIDIA GeForce 8800 range. We do not recommend any video card with less than 320MB RAM.

                      CPU: 2GHz minimum. 2.66GHz Dual Core recommended.
                      Memory: 1GB minimum. 2GB recommended.
                      Misc: 2GB Hard Drive Space. DVD Drive. Printer to output user guide.

                      Download FPS CREATOR X10 by Clicking on links Below -

                      PASSWORD FOR ALL FILES IS - www.freesoftwarealliance.com

                      Posted by XERO . Copyright 2008 The Game Creators .

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      How to Improve Search Engine Ranking

                      Posted by X.E.R.O

                      How to Improve Search Engine Ranking

                      Showing up on search engines is one of the most critical ways to increase website traffic and expose your content, product or service to people who might be interested in what you have to offer. Most of the major search engines utilize an algorithm to determine where a website ranks. The search engines have set up specific criteria that a website must meet to get to the top of the list. The criteria are different for every engine, but all engines share several commonalities. It all boils down to the type and amount of content provided on a given website, the level of optimization done on the site, and the popularity of the website (link popularity/PageRank). Tailoring your website for improved search engine rankings is also known widely as search engine optimization, or SEO.

                      Steps

                      [1]. Research the keywords:Decide what search queries you want to show up for. Do some research on how many people are actually searching for your site. Many times it is best to consult a "natural search engine optimization" professional during this process. There are several tools available from Google, Overture, and third party software developers that can make the keyword research process easier.
                      [2]. Think outside of the box: Don't just focus on your main keywords. The first thing to realize when targeting keywords is that it is not all about ranking for the most popular keyword. The most successful search engine marketing and optimization campaigns target the most relevant keywords. For example, if you are a realtor in a particular area, don’t just optimize your site for “real estate." Optimize your site for dentist, florist, movie theaters, etc. You would be amazed how many unique visitors will come through to your site when "outside of the box" thinking occurs.
                      [3]. Focus on the end user: If you spend too much time trying to please the Search Engine Spiders, you may forget about the end user. Think about what your target market needs to accomplish their goals, and then put it on your site so that they can find it. The phrase "content is king" was born about 6 years ago, and it still holds true today. If you want to be relevant for specific keywords, than you need superior or at least highly competitive content. Write about 225-300 words of copy for each keyword and plant it on your site each day. Grow, grow, and grow. On average, one can target between 3-5 like keyword phrases per page. Make it as natural as possible and the Search Engines will reward you will a first page ranking.
                      [4]. Describe EVERYTHING: Make sure that all the pages of the site of have custom titles and descriptions. If your site is using the same tags for all the pages, you are not helping search engines figure out the subject or relevance of your individual pages. Regarding Meta Tags, there are 2 very important fields:
                               * Title Tag - arguably the most important SEO tag for any website. Google supports approx. 60 characters in the title, while Yahoo allows for up to 110 characters in the title. It is important to target the most critical keywords in the Title. Every page should have a unique Title.
                               * META Description Tag - also very important for every page on the site. Some engines do display the description defined, while others do not. All search engines do read the description tag, and do utilize the content found within in the ranking process. A good rule of thumb is to create descriptions that do not exceed 200-250 characters. The META keyword Tag is essentially useless in today's SEO market, but is often times good to utilize as a placeholder for the keywords targeted.
                      [5].Maintain Consistency: Keep the structure, navigation and URL structure of your site simple enough for search engines to follow. Remember that search engines cannot parse your navigation if it's using flash or javascript. So try to stay close to standard HTML when it comes to Navigation. URLs with dynamic parameters (?, &, SIDs) usually do not perform when it comes to search engine rankings
                      [6]. Create a site map: Create a site map that tells people where everything is on your site. You will get about a 1% click through rate to your site map. However, it will do wonders for those who know what site maps do, and the Search Engines will like it as well.
                      [7]. Build up your popularity: So now you have determined the right keywords on the right pages, you've created all of the necessary content; you've optimized all of the content to the best of your capabilities. Congratulations - you're now in the top 80 percentile (from an optimization standpoint) of the websites listed for the keywords you're trying to target. So how do you get a 1st, 2nd, or 3rd page listing? The answer is quite simple: You have to be the most popular, too. That's right, it's a popularity contest. In other words, how many other websites know you (link to you), and how popular are they? This is typically referred to as link popularity, or called PageRank by Google. The more sites that link to your site the better, and the more popular the site linking to you the more value you will receive for your link popularity. The best types of "link building" are directory registration, text link advertising, and press release distribution. Try to offer valuable information or tools so that other people are motivated to link to your site. Well linked sites (that don't use spamming) do better in search engines.

                      Tips

                         * Search engine algorithms assess the relevance of your page to any particular keyword by the content on your pages. For instance if you are selling "widgety widgets" on your site and you do not mention "widgety widgets" on your page text, search engines have very little to work with. Also make sure that you are not spamming search engines by using the same keyword over and over.
                         * Although not as important as they used to be, reciprocal links do still matter with Google. Reciprocate with similar websites and include keywords near the links on your site.
                         * If you want to optimize well for your city, state etc., make sure to sprinkle geographic search terms throughout. Include it in text as well as set apart. Search engines do not know where you are unless you tell them.
                          * Bold and italics can make your keywords stand out more with the search engines.
                          * Interior links within your site will improve SEO; Sitemaps are a great way to generate internal links and make your website better too!
                          * Correct broken links, search engines do not like dead ends.
                         * If you have over 30 keywords that mean business to you, then you might want to hire a Professional Search Engine Copywriting firm or outsource it to freelancers.
                         * Anyone who can go to google and type in "keyword research" will find very many tools that mixed with common sense should suffice quite well.
                          * Now when digging deeper to understand the traffic patterns of certain keywords use Wordtracker’s GTrends Tool. You can get an idea on the amount of competition on Google compared to the amount of searches. Now these numbers are far from accurate, BUT if you can kind of step back and take a broader look at things, don’t worry so much about the numbers but compare the trends since it shows the past history. See if its steady traffic, traffic that is going extinct, or traffic just starting to peak. By using this tool, you can many times find some golden opportunities.
                          * It really comes down to just using common sense. Just sit down and think, "What would other people search to find this? What would I search for to find this?" Try phrases in your keyword research tool to get new ideas and find the higher trafficked most targeted phrases. DO NOT look at the numbers spat back out at you by these programs as accurate numbers, they rarely are. You can still use these tools to get ideas on new keywords, search patterns of users, and many other things, that mixed with the information of trends in that area, can really help you.

                      Warnings

                          * If you are going to use freelancers, beware of duplicate content. Always make sure to check the content that you get by searching for the content on Google, Yahoo, and MSN.
                          * Never have hyperlinks like "click here", hyperlinks should always be keywords, long hyperlinks with multiple keywords are even better.
                         * Don't hide content.
                         * Don't create duplicate websites.
                          * Remember that if you use black-hat SEO techniques, you run the risk of getting penalized by the search engines and having your web site permanently removed from their index.

                       

                      Posted by XERO 

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      VIDEOGAME RELEASE SCHELDULE 2008

                      Posted by X.E.R.O

                      VIDEOGAME RELEASE SCHELDULE 2008

                      This time the videogame wars are getting hotter !!! 2008 seems to going great with releases of GOTY candidate games like MGS4,GTA4 and HALO3 . But is only the beginning.One of the biggest matchups will be the battle of the bands between the popular music-and-rhythm games "Guitar Hero: World Tour" and "Rock Band 2." The former comes out Oct. 26 for home consoles, while the latter arrives Sept. 14 for Xbox 360, Oct. 19 for PlayStation 3 and Nov. 18 for Wii and PlayStation 2.

                      The next-gen rival consoles will also reload for sequels to their flagship shooters, "Gears of War 2" for Xbox 360 on Nov. 7 and "Resistance 2" for PS3 sometime in November.

                      The PS3 will also rev its engines once again for the high-octane racing game "Motorstorm: Pacific Rift," due Oct. 7.

                      Without a doubt, the killer sports title will be the latest incarnation of the hockey favorite "NHL 09," which hits the virtual ice Tuesday for Xbox 360 and PS3. (A PS2 version is due Oct. 28.) But rival "NHL 2K9" will make a power play when it comes out a day early, on Monday, for all home consoles.

                      Other sequels include:

                      • The kid-friendly "Viva Piñata: Pocket Paradise," Monday for Nintendo DS.

                      • The retro alien-invasion bash "Destroy All Humans! Path of the Furon," Nov. 3 for 360 and PS3.

                      • The highly anticipated adventure "Harvest Moon: Tree of Tranquility," Sept. 16 for DS.

                      • The massively multiplayer online role-playing game "Warhammer Online: Age of Reckoning," Sept. 18 for PC.

                      • Several military shooters: "Brothers in Arms: Hell's Highway," Sept. 23 for 360, PS3 and PC, with the related "Double Time," same day for Wii; "SOCOM: Confrontation," Oct. 14 for PS3, and "Call of Duty: World at War," Nov. 11 for consoles and PC.

                      • The horror tale "Silent Hill: Homecoming," Sept. 30 for 360 and PS3.

                      • The role-playing game "Fallout 3," Oct. 7 for 360, PS3 and PC.

                      • The latest Tom Clancy adventure, "Splinter Cell: Conviction," Oct. 7 for 360 and PC.

                      • The action RPG "Fable 2," Oct. 21 for 360.
                      • The web-slinging "Spider-Man: Web of Shadows," Oct. 21 for all systems.

                      • Nintendo's "Animal Crossing: City Folk," Nov. 3 for Wii, the biggest title in a quiet season for the No. 1 system.
                      New offerings

                      • Of course, not everything will be reprogrammed rehashes. Today brings the release of the hot evolution simulator "Spore," a computer title from Will Wright, creator of "The Sims." It would be even bigger if it had a console version. On Sept. 16, the "Star Wars" universe targets all systems with "The Force Unleashed," and the Disney-produced racer "Pure" hits PS3, 360 and PC.

                      • On Sept. 23, the Caped Crusader becomes a blockhead when "LEGO Batman" swoops in on all systems.

                      • Nintendo brings out new adventures with two of its favorite characters Sept. 29, "Kirby Super Star Ultra" for DS and "Wario Land: Shake It!" for Wii.

                      • On Oct. 7, the LucasArts' shooter "Fracture" takes aim at PS3 and 360, and "Ghostbusters" haunts all systems.

                      • PS3 players can create their own patch of the world and share it with others Oct. 21 in the network-enabled "LittleBigPlanet."

                      • Halloween meets sci-fi horror when "Dead Space" arrives Oct. 31 for 360, PS3 and PC.

                      • The popular Japanese RPG "Valkyrie Chronicles" starts its quest Nov. 11 on PS3.

                      • The latest James Bond adventure, "Quantum of Solace," sets its sights on most systems Nov. 4.
                      Leaps forward

                      Finally, two November games will change game-playing conventions.

                      The on-the-run thriller "Mirror's Edge" -- for PS3, 360 and PC -- promises total immersion through features such as experiencing vertigo when scaling heights and feeling collisions when you run into objects.

                      The Wii exclusive "Wii Music," due Nov. 3, asks players to wave around the controllers to create music using more than 60 virtual instruments. Industry experts aren't sure what to make of it, but Nintendo is clearly hoping that it will be music to casual gamers' ears -- even if it's more of a high-tech toy than a video game.

                      We can only assume that whatever greatness and fireworks the industry giants have in their pandora’s box,the end winner will always be the consumer.

                      Till then Happy fraggin !!!

                      Excerpts from startribune.com

                      Posted by XERO 

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      When and When Not to Worry About Security Holes

                      Posted by X.E.R.O

                      When and When Not to Worry About Security Holes
                      Annoyed by all the computerese that litters security stories? Here's your guide.

                      One of the best things you can do to help keep your PC and your private data safe is to stay abreast of the latest security alerts. But security news stories often contain techie jargon that can make your eyes glaze over faster than a congressional session on C-SPAN.

                      To help you determine whether a particular alert is worthy of Chicken Little or is truly dangerous, here are translations for some of the most common threat terms.

                      Drive-by download: A big one. If a program or operating system bug allows drive-by contamination, your PC can become infected with malware if you simply view a malicious Web site. You don't have to download anything or click any links on the poisoned page.

                      User interaction required: You might think that you'd have to download a file or open an attachment to get hit by an attack described in this way. But experts often apply the term to simply clicking a link that will deliver you to a page containing a drive-by download.

                      Zero-day: Potentially major, but not always. This term most commonly refers to a flaw (and perhaps an attack exploiting it) that surfaces before a fix is available. If the attack is ongoing (see "in the wild"), watch out. But many alerts or stories play up zero-day flaws that aren't being hit and may never be; see the next entry.

                      Proof-of-concept: A flaw or attack that researchers have discovered but that bad guys have yet to exploit. If the alert says something like "proof-of-concept code has been released," crooks are very likely to create a real attack with that sample. But many evil-sounding proof-of-concept attacks never get weaponized.

                      In the wild: The opposite of proof-of-concept. When an exploit or malware is in the wild, digital desperados are actively using it. If the term is being used to describe attacks against a software flaw, make sure that you have installed the application's latest patches.

                      Remote code execution: This kind of flaw allows an attacker to run any command on the victim's computer--such as installing remote-control software that can effectively take over a PC. Holes of this type are dangerous, so take notice when you hear of one.

                      Denial of service: Not so bad. This term usually describes an attack that can crash a vulnerable program or computer (thereby denying you its service) but can't install malware. Occasionally, however, crooks figure out how to transform a denial-of-service flaw into a concerted attack that allows remote code execution.

                      Of course, your best bet is to apply security patches as they're released, whether to fix a proof-of-concept denial-of-service flaw (yawn) or to address an urgent zero-day drive-by download threat.

                      AUTHOR - Erik Larkin, PC World

                      ARTICLE SOURCE . Posted by XERO 

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      INCREASE TORRENT SPEED

                      Posted by X.E.R.O

                      INCREASE TORRENT SPEED

                      Tired of slow torrent speeds ? Here is guide to make it a faster and better experience.

                      Hack the max half-open TCP connections

                      If you’re on XP sp2, your TCP connections are limited to a maximum of 10. This might hurt your downloading speed because it wont let you connect to as much peers as you want. It is supposed to slow down viruses because their spreading strategy is to connect to a high amount of ip numbers, but it could cripple your torrent downloads.
                      A nice way to fix this is to download this patch.

                      Note: Some people report that their antivir reports the patch to be a Virus, This is not the case.
                      The patch allows you to set the maximum allowed connections to any number you want. Any number between 50 and 100 is ok (more is NOT always better).
                      Next you need to configure your torrent client to allow 50-100 max half-open TCP connections

                      uTorrent: Options > Preferences > Advanced options > net.max_halfopen

                      Utorrent hack

                      Bitcomet: Options > Preferences > Connection > max half-open TCP

                      Now you’re ready to go…
                      A third point of interest is that some “windows updates” revert your tweaked tcp connections back to 10. So it’s wise to check this every now and then. You can check this by going to (in windows xp) Start > Control Panel > Administrative Tools > Event Viewer > System… Look for event 4226 (sort by event).

                       

                      For more details about Windows XP SP2 and Event ID 4226 read David Kaspar’s excellent post
                      If there are a lot of daily occurences it’s likely that the max amount of half-open tcp connections was set back to 10. Or you’re infected with some nasty spyware…

                      Torrent Client Configuration

                      In order to apply these tips you need to know your maximum up- and download speed. You can test your bandwidth over here (stop all download activity while testing). Also make sure that you applied the tips provided in our previous posts.
                      Note that there’s a difference between kb/s (kilobits/second) and kB/s (kilobytes/second). To be precise, kB/s = kb/s divided by 8. In this tutorial we use kB/s (like most torrent clients do). This means that you might need to calculate your max speed in kB/s yourself if the speedtest only gives you the results in kb\s (so divide by 8 then).
                      Settings 1-4 can be found in the options, settings or preference tab of most torrent clients.

                      [1]. Maximum upload speed
                      Probably the most important setting there is. Your connection is (sort of) like a pipeline, if you use you maximum upload speed there’s not enough space left for the files you are downloading. So you have to cap your upload speed.
                      Use the following formula to determine your optimal upload speed…
                      80% of your maximum upload speed,so if your maximum upload speed is 40 kB/s, the optimal upload rate is 32kB/s
                      But keep seeding!


                      [2].Maximum download speed
                      Although setting your maximum download speed to unlimited may sound interesting, in reality it will only hurt your connection. If you still want to be able to browse properly, set your maximum download speed to:
                      95% of your maximum download speed
                      so if your maximum download speed is 400 kB/s, the optimal download speed is 380kB/s


                      [3]. Maximum connected peers per torrent
                      Yet another setting that you don’t want to max out. I experimented quite a lot with the max connected peers settings and came to the conclusion that both high and low number hurt the download speed of a torrent. The following setting worked best for me.
                      upload speed * 1.3
                      so if your maximum upload speed is 40 kB/s, the optimal amount of connected peers per torrent is
                      40 * 1.3 = 52
                      I didn’t noticed a difference for fast or slow connections here.


                      [4]. Maximum upload slots
                      1 + (upload speed / 6)
                      so if your maximum upload speed is 30 kB/s, the optimal number of upload slots is general.
                      1 + (30 / 6) = 6

                      So 50 seeds and 50 peers is better than 500 seeds and 1000 peers. So, be selective.

                       

                      Change the default port.
                      By default, BitTorrent uses a port 6881-6999. BitTorrent generates a lot traffic (1/3), so isp’s like to limit the connection offered on the these ports. So, you should change these to another range. Good clients allow you to do this, just choose anything you like. If you’re behind a router, make sure you have your ports forwarded (portforward.com) or UPnP enabled.


                      Disable Windows Firewall
                      It sucks. Windows Firewall hates P2P and often leads a life of it’s own. So disable it and get yourself a decent (free) firewall, Kerio,Comodo or Zone Alarm for example.


                      Turn on Encryption
                      Encrypting your torrents will prevent throttling ISP’s from limiting your BitTorrent traffic. Check out how to enable encryption in Azureus, uTorrent, and Bitcomet, the three most popular torrent clients.


                      Optimize your internet connection
                      The TCP optimizer is a freeware utility that optimizes your internet connection. I found it very useful and it helped speeding up my connection for regular internet activity and for downloading torrents. Just download it, and move the slidebar to your maximum download rate (note that it’s in kb/s). Don’t try to set it higher because that will hurt your download speeds!
                      Last but not least… Buy a faster connection…

                      Happy Torrenting!

                      Posted by XERO . Author - apachi

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Squid content filtering

                      Posted by X.E.R.O

                      Squid content filtering
                      [Q.] For security and to save bandwidth I would like to configure Squid proxy server such way that I do not want my users to download all of the following files:
                      MP3
                      MPEG
                      MPG
                      AVG
                      AVI
                      EXE
                      How do I configure squid content filtering?
                      [A.]You can use squid ACL (access control list) to block all these files easily. First open squid.conf file /etc/squid/squid.conf:
                      # vi /etc/squid/squid.conf

                      Now add following lines to your squid ACL section:
                      acl blockfiles urlpath_regex "/etc/squid/blocks.files.acl"

                      You want display custom error message when a file is blocked:
                      # Deny all blocked extension
                      deny_info ERR_BLOCKED_FILES blockfiles
                      http_access deny blockfiles

                      Save and close the file.

                      Create custom error message HTML file called ERR_BLOCKED_FILES in /etc/squid/error/ directory or /usr/share/squid/errors/English directory.
                      # vi ERR_BLOCKED_FILES

                      Append following content:

                      <HTML>
                      <HEAD>
                      <TITLE>ERROR: Blocked file content</TITLE>
                      </HEAD>
                      <BODY>
                      <H1>File is blocked due to new IT policy</H1>
                      <p>Please contact helpdesk for more information:</p>
                      Phone: 555-12435 (ext 44)<br>
                      Email: helpdesk@yourcorp.com<br>
                      Caution: Do not include HTML close tags </HTML> </BODY> as it will be closed by squid.
                       Now create /etc/squid/blocks.files.acl file:
                      # vi /etc/squid/blocks.files.acl
                      Append following text:
                      \.[Ee][Xx][Ee]$
                      \.[Aa][Vv][Ii]$
                      \.[Mm][Pp][Gg]$
                      \.[Mm][Pp][Ee][Gg]$
                      \.[Mm][Pp]3$

                      Save and close the file. Restart Squid:
                      # /etc/init.d/squid restart
                      Posted By XERO

                      Technorati Tags: ,,,,
                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Google Chrome

                      Posted by X.E.R.O

                      Google Chrome

                      Google CHROMEGoogle takes aim squarely at Microsoft with the release of its new Web browser, Chrome. And Microsoft should be very afraid: Chrome lives up to its hype by rethinking the Web browser in clever and convenient ways that make using the Web a more organic experience than you'd get with either Microsoft's Internet Explorer 8 or Mozilla's Firefox 3.

                      Initially available for download for Windows Vista and XP, Google plans to expand its Chrome offerings to the Mac and Linux platforms as well. The company doesn't offer any timeline for these versions, though..

                      Chrome automatically detects the Web browser you're using and prompts you through the process of installation (right down to telling you how to access downloaded files within Firefox, for example). When you first run the application, Chrome imports your bookmarks, passwords, and settings from Firefox or Internet Explorer. It even can grab username and password data, and it automatically populates those fields for you when you use Chrome for the first time to visit a particular site

                      GOOGLE CHROMEAfter running through a quick import checklist, Chrome opens on your desktop--and right away you begin to experience the Web in a new way. Chrome's layout is very simple: You'll see a row of tabs running along the top, a Web address bar, and a bookmarks bar that runs beneath the address bar. A separate recent bookmarks box appears at the right of the screen, as does a history search field.

                      Like its Google stablemates, Chrome has a remarkably minimalist interface. There is no full-scale menu bar and no title bar--and few distractions. All controls are buried beneath two icons to the right of the Omnibar (as Google refers to its address bar): a page icon for managing tabs and using Google Gears to create application-like shortcuts from your desktop to a Web site; and a wrench for history, downloads, and other browser options.

                      On the Google Blog, Sundar Pichai and Linus Upson acknowledge they pressed the “send” button a day early, tipping off Philipp Lenssen in Germany, who set the fuse on the worldwide blog bomb. At the same time, Google coined a new PR move: announcements in e-comic book form.
                      You can check that out for in-depth descriptions, explanations, and philosophy behind Google’s new browser—but fair warning it will take a while. Bloggers immediately labeled it an assault on Microsoft, both on the browser level and, in an interesting stretch, the OS level. They wonder, too, about how this will affect Google’s relationship with Mozilla.
                      It’ll launch at some point today at Google.com/chrome.

                      First the specs:

                      • Like Android, Google Chrome is based on, built from the ground up with, open source application framework WebKit; it is intended to be next-generation built for handling Web applications rather than Web pages. It includes Google Gears built-in.
                      • To that end, Google built its own JavaScript engine, V8, to power web applications with multi-threaded efficiency.
                      • Browser tabs get their own process rather than tabs sharing processes to solve the ever-dreaded freeze-and-crash problem by freeing up memory and reducing memory fragmentation.
                      • Each tab has its own URL box, effectively making each tab a browser window
                      • No about:blank pages. Chrome defaults to a page featuring the four most used search engines and the user’s nine most visited Web pages.
                      • Similar to IE 8, Chrome has an “Incognito” mode to erase browser history when the browser is closed—something Firefox 3 didn’t include.
                      • Chrome can be “streamlined” so that the toolbar and URL box are hidden and only the webpage is shown on the screen.
                      • Chrome features browser extensions allowing it to make hybrid apps similar to Adobe AIR
                      • An Opera-like dashboard start page and auto-completion.
                      • It’s pretty strong on the security front. Chrome sandboxes Webpages, preventing drive-by downloads and installations. It continuously makes contact with Google to update a list of known malware sites in order to warn the user.
                      No word yet on how much the browser actually communicates with Google. Given Google’s history of watching everything its product users do, it wouldn’t be surprising if Google would gather browsing information to use for its search and ad-serving algorithms.
                      The browser will launch in more than 100 countries today. The company says the launch will add value for the user while driving innovation on the Web. Available only for Windows for now, Google plans to release versions for Mac and Linux as well.

                      Google has produced an excellent browser that is friendly enough to handle average browsing activities without complicating the tasks, but at the same time it's powerful enough to meet the needs of more-advanced users. The search functionality of the Omnibar is one of many innovations that caught my attention. PC World has chosen to rate this beta version of Chrome because of Google's history of leaving products and services in long-term beta and in an ongoing state of evolution. In the past there has been some speculation that Google would develop their own operating system, but I think Chrome's launch makes one thing is clear: The Web browser is Google's operating system.

                      DOWNLOAD GOOGLE CHROME

                       

                      Posted by XERO 

                      Excerpts from WebPro and PCWorld

                       

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Top 10 Windows Built-In Command Line Tools

                      Posted by X.E.R.O

                      Top 10 Windows Built-In Command Line Tools

                      winlogo.jpgFor many Windows users, the thought of using the Command Prompt is either a scary experience or something that they will never need. But for some, the command prompt is a powerful tool that can be far more useful than many graphical tools available in Windows.

                      Being a System Administrator, I constantly use the command prompt, mostly because I access systems remotely and many tasks can be performed quickly with out the graphics over head (even though connecting via Terminal Server is very convenient).

                      So if you are an avid user of the command line, here are my top 10 built-in (non third party) command line tools for XP, Vista and WIndows server versions (remember these commands are not your typical tools, such as find, copy, move, dir, etc..).

                      1 - systeminfo - Have a need to display operating system configuration information for a local or remote machine, including service pack levels? Then systeminfo is the tool to use. When I need to connect to a system that I am not familiar with, this is the first tool I run. The output of this command gives me all the info I need including: host name, OS type, version, product ID, install date, boot time and hardware info (processor and memory). Also knowing what hot fixes are installed can be a big help when troubleshooting problems. This tool can be used to connect to a machine remotely using the following syntax: SYSTEMINFO /S system /U user

                      2 - ipconfig - This tool may be most useful tool for viewing and troubleshooting TCP/IP problems.  It's capability includes release or renew an adapter IP Address, display and flush DNS cache, re-register the system name in DNS. WIth Vista and some server versions, ipconfig includes support for IPv6.

                      Some examples when usinging ipconfig.

                      • To view all TCP/IP information, use: ipconfig /all
                      • To view the local DNS cache, use: ipconfig /displaydns
                      • To delete the contents in the local DNS cache, use: ipconfig /flushdns

                      3 - tasklist and taskkill - If you are used to Windows Task Manager, then you'll find tasklist very easy to use. This tool displays a list of currently running processes, including image name, PID (Process ID) and memory usage on local or remote machines. Using the /V switch displays more information in verbose mode that includes, CPU Time, user name, and modules. Tasklist includes a filter option to display a set of task based on the criteria specified. But the best use of the filter is using it to display programs running inside svchost.exe process.

                      Of course, there will be times when a process needs to be killed and taskkill can be used to terminate those trouble processes. A single or multiple processes can be killed using the PID (/PID ) or image name (/IM ). Here are two examples for doing just that:

                      TASKKILL /IM notepad.exe
                      TASKKILL /PID 1230 /PID 1241 /PID 1253 /T

                      Both tasklist and taskkill can connect to remote systems using the /S (system name) /U (user name) switches.

                      4 - netstat - Need to know who (or what) is making a connection to your computer? Then netstat is the tool you want to run. The output provides valuable information of all connections and listening ports, including the executable used in the connections. In additon to the above info, you can view Ethernet statistics, and resolve connecting host IP Addresses to a fully qualified domain name. I usually run the netstat command using the -a (displays all connection info), -n (sorts in numerical form) and -b (displays executable name) switches.

                      5 - type - A lesser known tool to those who don't work with the command prompt. For Administrators, the type command is the perfect tool for viewing text files. But what many people don't know about the type tool, is it's capability to read multiple files at once. For example to view multiple text files, just separate each file with a space:

                      type firstfile.txt  secondfile.txt  thirdfile.txt

                      For files that are large, you can control text scrolling using the more command.

                      6 - net command - Although this tool is more known as a command, the net command is really like a power drill with different bits and is used to update, fix, or view the network or network settings.

                      It is mostly used for viewing (only services that are started), stopping and starting services:

                        • net stop server
                        • net start server
                        • net start (display running services)

                      and for connecting (mapping) and disconnecting with shared network drives:

                        • net use m: \\myserver\sharename
                        • net use m: \\myserver\sharename /delete

                      Other commands used with net command are, accounts (manage user accounts), net print (manage print jobs), and net share (manage shares).

                      Below are all the options that can be used with the net command.

                      [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |HELPMSG | LOCALGROUP | PAUSE | PRINT | SESSION | SHARE | START |STATISTICS | STOP | TIME | USE | USER | VIEW ]

                      To display the complete syntax for each command, just type net help followed by the command - net help use .

                      7 - nslookup - With the Internet, DNS (Domain Name Service) is the key for allowing us to use friendly names when surfing the web instead of needing to remember IP Addresses. But when there are problems, nslookup can be a valuable tool for testing and troubleshooting DNS servers.

                      Nslookup can be run in two modes: interactive and noninteractive. Noninteractive mode is useful when only a single piece of data needs to be returned. For example, to resolve google.com:

                      To use the interactive mode, just type nslookup at the prompt. To see all available options, type help while in interactive mode.

                      Don't let the help results intimidate you. Nslookup is easy to use. Some of the options I use when troubleshooting are:

                      set ds (displays detailed debugging information of behind the scenes communication when resolving an host or IP Address).

                      set domain (sets the default domain to use when resolving, so you don't need to type the fully qualified name each time).

                      set type (sets the query record type that will be returned, such as A, MX, NS)

                      server NAME (allows you to point nslookup to use other DNS servers than what is configured on your computer)

                      To exit out of interactive mode, type exit .

                      8 - ping and tracert - These tools can be helpful with connectivity to other systems. Ping will test whether a particular host is reachable across an IP network, while tracert (traceroute) is used to determine the route taken by packets across an IP network.

                      To ping a system just type at the prompt: ping www.google.com. By default, ping will send three ICMP request to the host and listen for ICMP “echo response” replies. Ping also includes switches to control the number of echo requests to send (-n ), and to resolve IP addresses to hostname (-a ).

                      To use tracert, type at the prompt: tracert www.google.com. You can force tracert to not resolve address to hostnames by using the -d switch, or set the desired timeout (milliseconds) for each reply using -w switch.

                      9 - gpresult - Used mostly in environments that implement group poicies, gpresults (Group Policy Results) verifies all policy settings in effect for a specific user or computer. The command is simple to use, just enter gpresults at the prompt. It can also be used to connect to computers remotely using the /S and /U switches.

                      10 - netsh - Without a doubt the most powerful command line tool available in Windows. Netsh is like the swiss army knife for configuring and monitoring Windows computers from the command prompt. It capabilities include:

                      • Configure interfaces
                      • Configure routing protocols
                      • Configure filters
                      • Configure routes
                      • Configure remote access behavior for Windows-based remote access routers that are running the Routing and Remote Access Server (RRAS) Service
                      • Display the configuration of a currently running router on any computer

                      Some examples of what you can do with netsh:

                      • Enable or disable Windows firewall:

                      netsh firewall set opmode disable

                      netsh firewall set opmode disable

                      • Enable or disable ICMP Echo Request (for pinging) in Windows firewall:

                      netsh firewall set icmpsetting 8 enable

                      netsh firewall set icmpsetting 8 disable

                      • Configure your NIC to automatically obtain an IP address from a DHCP server:

                      netsh interface ip set address "Local Area Connection" dhcp

                      (For the above command, if your NIC is named something else, use netsh interface ip show config and replace the name at Local Area Connection).

                      As you can see netsh can do alot. Instead of re-inventing the wheel, check out the following Microsoft article for more info on netsh.

                      The use of Windows command line tools can be a powerful alternative when only a command prompt is available. I'm sure there are plenty more commands that I have not mention.

                      Let us know what your favorite command line tool is and leave a comment below.

                      COURTESY - www.watchingthenet.com

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Top 10 open source Windows apps

                      Posted by X.E.R.O

                      Top 10 open source Windows apps

                      Geek to Live: Top 10 open source Windows apps

                      Companies like Google and Microsoft give away free software as a courtesy to their users to hook more people on their services ("free as in beer.") But open source organizations are often non-profit and made up of volunteer developers who release free software because they believe users have a right to control their data ("free as in speech.")

                      Open source roots are in the Unix operating system, but these days many "free as in speech" applications are available for Windows as well - and today I've got a list of my top 10 favorites.

                      None of these cost a dime to download and use, but do donate whatever and whenever you can to the projects that benefit you the most.

                      1. Mozilla Firefox (Web browser)

                      Crikey, another Firefox plug! Yeah, we love the 'fox, and we'll keep talking about it until EVERY SINGLE ONE OF YOU USES IT. It really just doesn't get any better when it comes to a cross-platform, open source web browser.

                      2. Mozilla Thunderbird (Email client)

                      Firefox's much less celebrated little brother is one helluva email client. We especially like its customizable message filters, built-in adaptive Junk mail filter and ability to install useful add-ons (like Firefox).

                      3. Open Office (Office suite)

                      Used to be that anyone who wanted to open a Word document had to drop a few Benjamins on Microsoft Office or risk pirating it. No more - Open Office is a free alternative to M$ Office for students, freelancers and poor people just wanting to save their spreadsheet as an .xls.

                      4. Gaim (Instant messenger)

                      Chat on any service you'd like - AIM, Yahoo! Messenger, MSN, Jabber, ICQ - with this multi-platform, tabbed IM client.

                      5. ClamWin (Antivirus)

                      Norton bugging you again to break out the credit card and subscribe? Uninstall! ClamWin is free anti-virus software with automatic updates and scheduled scans, no credit card required.

                      6. VLC Media Player (Audio/video player)

                      Got a video or audio file Windows Media Player or Quicktime can't play? Betcha VLC can.

                      7. KeePass (Password manager)

                      Another app you really don't hear a lot about, but for anyone with more than 6 different passwords, KeePass is indispensable. Check out my previous feature, Securely track your passwords for more on using KeePass.

                      8. Cygwin (Unix command line emulator)

                      That DOS command line just doesn't cut it. Wanna turn into a CLI ninja on your PC? You need Cygwin.

                      9. Eraser (Data deletion utility)

                      Before you donate, sell or trash your hard drive, you want to make sure there are no traces of your naughty private data on it. Eraser uses the same algorithm the government uses to wipe your hard drive clean.

                      10. TrueCrypt (File encryption utility)

                      You've got a folder full of files you don't want anyone to access but you. Lock it (or an entire thumb drive) up with the free TrueCrypt software.

                      Author - Gina Trapani

                      Courtesy - LIFEHACKER

                      --> Read Full Article...

                      Follow us on Twitter Follow this blog

                      Blog Directories

                      Rishabh Dangwal Computer Blogs - BlogCatalog Blog Directory Visit blogadda.com to discover Indian blogs Blog Directory TopOfBlogs BuzzCritic Top Technology blogs Technology Blogs Hacker Topsites Blogged.com PRO HACK PROHACK provides you tips n tricks,softwares,games,hacks,interview and dating tips and cool stuff that makes your cyber and real life more productive and fruitful.Be a Pro,Visit PROHACK Add to Technorati Favorites Increase Page Rank web stats Computers Top Blogs

                      simple hit counter
                      DigNow.net BE A PRO,VISIT PROHACK Pro Hack - Blogged PROHACK - Your technology navigator Technology (Blogs) - TOP.ORG Computers Blogs IndiBlogger - Where Indian Blogs Meet IBSN: Internet Blog Serial Number 3-0102-9058-9

                      blogarama.com Blogging Fusion Blog Directory Blog search directory Blog Search Engine Free Blog Directory LS Blogs All Direct Links Dmegs Web Directory BloggerNow.com mozilla firefox

                      675+ dedicated technology enthusiastic have subscribed to PROHACK..join the tribe :D