Tuesday, May 1, 2012

How to hack WEP secured WiFi connections


How to hack WEP secured WiFi connections

Everyone has lots of internet connections around their house, and frequently these connections are wireless. Most of the time, it is possible simply to either have a laptop with WiFi or a PC with WiFi and connect to open networks with the Windows built-in WiFi client. Cheap, free, and easy wireless internet.

Sometimes people are smart and they like to secure their internet, and when this happens we have to use some toolz.

When people secure their internet using WEP (which stands for something long, it doesn't matter), they set a key with which all the people who want to connect need to input into their client software (which is most often Windows). If you have the key, you can connect, if not you cannot.

WEP is, however, very insecure. Using AirSnort anyone can obtain the WEP key of a network, and thus obtain access to it. Keep in mind you must have a supported card to do this, check the site for more information.

Of course, this is really mean to do to someone. This is probably most useful for people who have forgotten their WEP key, because it is not like the average joe computer user is going to know how to hack a WEP network.

But we do.

To start, you must have AirSnort installed correctly. Since it is a native Linux program, they developers never really targeted it towards newbies, so to install it you have to jump through some hoops. A really good guide on getting the program running in the first place is here: http://airsnort.shmoo.com/win_setup.html

After you have it all installed and running, simply leave it running in the background. It will capture and analyze network traffic, and eventually you will have a WEP key. If the particular network has lots of traffic, you will likely have a key in a short amount of time but if it is a light traffic network you will need to stimulate traffic or leave your computer on for a much longer amount of time.

Stimulating traffic is weird and probably not worth the time required to make it work. It is recomended to try another network if this does not work.

Hopefully you can get a connection, and eventually test out the potential of WiFi.

Sunday, April 22, 2012

How to Crack a Wi-Fi Network’s WEP Password with BackTrack

How to Crack a Wi-Fi Network’s WEP Password with BackTrack

You already know that if you want to lock down your Wi-Fi network, you should opt for WPA encryption because WEP is easy to crack. But did you know how easy? Take a look.
Note: This post demonstrates how to crack WEP passwords, an older and less often used network security protocol. If the network you want to crack is using the more popular WPA encryption, see our guide to cracking a Wi-Fi network's WPA password with Reaver instead.
Today we're going to run down, step-by-step, how to crack a Wi-Fi network with WEP security turned on. But first, a word: Knowledge is power, but power doesn't mean you should be a jerk, or do anything illegal. Knowing how to pick a lock doesn't make you a thief. Consider this post educational, or a proof-of-concept intellectual exercise.
Dozens of tutorials on how to crack WEP are already all over the internet using this method. Seriously—Google it. This ain't what you'd call "news." But what is surprising is that someone like me, with minimal networking experience, can get this done with free software and a cheap Wi-Fi adapter. Here's how it goes.

What You'll Need

How to Crack a Wi-Fi Network's WEP Password with BackTrackUnless you're a computer security and networking ninja, chances are you don't have all the tools on hand to get this job done. Here's what you'll need:
  • A compatible wireless adapter—This is the biggest requirement. You'll need a wireless adapter that's capable of packet injection, and chances are the one in your computer is not. After consulting with my friendly neighborhood security expert, I purchased an Alfa AWUS050NH USB adapter, pictured here, and it set me back about $50 on Amazon. Update: Don't do what I did. Get the Alfa AWUS036H, not the US050NH, instead. The guy in this video below is using a $12 model he bought on Ebay (and is even selling his router of choice). There are plenty of resources on getting aircrack-compatible adapters out there.
  • A BackTrack Live CD. We already took you on a full screenshot tour of how to install and use BackTrack 3, the Linux Live CD that lets you do all sorts of security testing and tasks. Download yourself a copy of the CD and burn it, or load it up in VMware to get started.
  • A nearby WEP-enabled Wi-Fi network. The signal should be strong and ideally people are using it, connecting and disconnecting their devices from it. The more use it gets while you collect the data you need to run your crack, the better your chances of success.
  • Patience with the command line. This is an ten-step process that requires typing in long, arcane commands and waiting around for your Wi-Fi card to collect data in order to crack the password. Like the doctor said to the short person, be a little patient.

Crack That WEP

To crack WEP, you'll need to launch Konsole, BackTrack's built-in command line. It's right there on the taskbar in the lower left corner, second button to the right. Now, the commands.
First run the following to get a list of your network interfaces:
airmon-ng
The only one I've got there is labeled ra0. Yours may be different; take note of the label and write it down. From here on in, substitute it in everywhere a command includes (interface).
Now, run the following four commands. See the output that I got for them in the screenshot below.

airmon-ng stop (interface)
ifconfig (interface) down
macchanger --mac 00:11:22:33:44:55 (interface)
airmon-ng start (interface)

How to Crack a Wi-Fi Network's WEP Password with BackTrack If you don't get the same results from these commands as pictured here, most likely your network adapter won't work with this particular crack. If you do, you've successfully "faked" a new MAC address on your network interface, 00:11:22:33:44:55.
Now it's time to pick your network. Run:
airodump-ng (interface)
To see a list of wireless networks around you. When you see the one you want, hit Ctrl+C to stop the list. Highlight the row pertaining to the network of interest, and take note of two things: its BSSID and its channel (in the column labeled CH), as pictured below. Obviously the network you want to crack should have WEP encryption (in the ENC) column, not WPA or anything else.
How to Crack a Wi-Fi Network's WEP Password with BackTrack Like I said, hit Ctrl+C to stop this listing. (I had to do this once or twice to find the network I was looking for.) Once you've got it, highlight the BSSID and copy it to your clipboard for reuse in the upcoming commands.
Now we're going to watch what's going on with that network you chose and capture that information to a file. Run:
airodump-ng -c (channel) -w (file name) --bssid (bssid) (interface)
Where (channel) is your network's channel, and (bssid) is the BSSID you just copied to clipboard. You can use the Shift+Insert key combination to paste it into the command. Enter anything descriptive for (file name). I chose "yoyo," which is the network's name I'm cracking.
How to Crack a Wi-Fi Network's WEP Password with BackTrack
You'll get output like what's in the window in the background pictured below. Leave that one be. Open a new Konsole window in the foreground, and enter this command:
aireplay-ng -1 0 -a (bssid) -h 00:11:22:33:44:55 -e (essid) (interface)
Here the ESSID is the access point's SSID name, which in my case is yoyo. What you want to get after this command is the reassuring "Association successful" message with that smiley face.
How to Crack a Wi-Fi Network's WEP Password with BackTrack
You're almost there. Now it's time for:
aireplay-ng -3 -b (bssid) -h 00:11:22:33:44:55 (interface)
Here we're creating router traffic to capture more throughput faster to speed up our crack. After a few minutes, that front window will start going crazy with read/write packets. (Also, I was unable to surf the web with the yoyo network on a separate computer while this was going on.) Here's the part where you might have to grab yourself a cup of coffee or take a walk. Basically you want to wait until enough data has been collected to run your crack. Watch the number in the "#Data" column—you want it to go above 10,000. (Pictured below it's only at 854.)
Depending on the power of your network (mine is inexplicably low at -32 in that screenshot, even though the yoyo AP was in the same room as my adapter), this process could take some time. Wait until that #Data goes over 10k, though—because the crack won't work if it doesn't. In fact, you may need more than 10k, though that seems to be a working threshold for many.
How to Crack a Wi-Fi Network's WEP Password with BackTrack
Once you've collected enough data, it's the moment of truth. Launch a third Konsole window and run the following to crack that data you've collected:
aircrack-ng -b (bssid) (file name-01.cap)
Here the filename should be whatever you entered above for (file name). You can browse to your Home directory to see it; it's the one with .cap as the extension.
If you didn't get enough data, aircrack will fail and tell you to try again with more. If it succeeds, it will look like this:
The WEP key appears next to "KEY FOUND." Drop the colons and enter it to log onto the network.

Problems Along the Way

With this article I set out to prove that cracking WEP is a relatively "easy" process for someone determined and willing to get the hardware and software going. I still think that's true, but unlike the guy in the video below, I had several difficulties along the way. In fact, you'll notice that the last screenshot up there doesn't look like the others—it's because it's not mine. Even though the AP which I was cracking was my own and in the same room as my Alfa, the power reading on the signal was always around -30, and so the data collection was very slow, and BackTrack would consistently crash before it was complete. After about half a dozen attempts (and trying BackTrack on both my Mac and PC, as a live CD and a virtual machine), I still haven't captured enough data for aircrack to decrypt the key.
So while this process is easy in theory, your mileage may vary depending on your hardware, proximity to the AP point, and the way the planets are aligned. Oh yeah, and if you're on deadline—Murphy's Law almost guarantees it won't work if you're on deadline.

To see the video version of these exact instructions, check out this dude's YouTube video.


Got any experience with the WEP cracking courtesy of BackTrack? What do you have to say about it? Give it up in the comments.

Sunday, February 13, 2011

Mobile Media Converter 1.7.1



Mobile Media Converter - a free video and audio converter, which is designed primarily for converting music and video formats between the PC and mobile-ready format.
- The initial file formats, Mobile Media Converter accepts such: MP3, Windows Media Audio (wma), Ogg Vorbis Audio (ogg), Wave Audio (wav), MPEG video, AVI, Windows Media Video (wmv), Flash Video (flv ), QuickTime Video (mov) and many
Others.
Links:-

Saturday, February 12, 2011

Lucion FileCenter Professional Plus v7.0.0.11 Cracked 52MB

Lucion FileCenter Professional Plus v7.0.0.11 Cracked [52MB]

Lucion FileCenter Professional Plus v7.0.0.11 Cracked | 52.3 MB


FileCenter is easy-to-use paperless office software which helps home and professional users scan, archive, organize, and find computer files. FileCenter is filled with time-saving features, giving you a complete solution within a single, simple interface.

Paperless Office Software Features
FileCenter combines many file management, scanning, OCR, and PDF manipulation features into a smooth workflow:

Main Features
Manage & Organize Your Files
FileCenter uses a familiar Cabinet/Drawer/Folder design for organizing files. But if you prefer a traditional Explorer layout, FileCenter also provides an Explorer View.

Scan to PDF or TIFF
FileCenter features one-click scanning for efficiently moving paper to PDF. Works with most desktop scanners (TWAIN or WIA compatible).

Automatically OCR All Scans
FileCenter integrates OCR as a seamless part of the scanning process. Literally go from paper to searchable PDF in one mouse click. Use the built-in engines or your own favorite.

Stack, Join, and Split PDFs
With FileCenter Professional, "stack" or join PDF files with drag-and-drop simplicity. You will also be able to split a single PDF into multiple files ... without opening it.

PDF, Scanning, and OCR Features
PDF Reader & Viewer
Use FileCenter to open and preview your PDF files. The tabbed interface keeps multiple open files at your fingertips. FileCenter will also let you view your TIFF scans and faxes.

OCR Existing Files
If you have scanned documents, FileCenter can make them searchable and indexable through OCR. Or, pull the text out of a PDF and send it to your word processor for editing.

Insert, Rearrange, and Delete Pages
FileCenter's Pages mode gives you a high-level view of your PDF document. It's also the perfect place to reorganize pages, delete or insert pages, extract pages, etc.

One-Click PDF Conversion
With one click, convert many kinds of files into the popular PDF format. Or e-mail files as PDFs – convert-and-send does it in one transparent step.

Print to PDF
Turn Word documents, web pages, e-mail, or any other kind of file to PDF. Just print your documents to FileCenter's included PDF printer to turn them into accurate PDF files.

Scan to Word
If all you care about is the document text, why not just scan straight to Word? With one click, FileCenter will run a scan, extract the text, and open it in your favorite word processor.

Separate & Save Scans Automatically
For high-volume scanning, FileCenter can automatically split a stack of scans into individual files. It can even auto-save those files to pre-determined destinations.

File Management Features
Universal File Support
FileCenter can store any kind of Windows file. It also integrates cleanly with the Save and Open functions of most programs so that you can save and open with FileCenter.

Folder Templates
If you use the same folder layouts over and over, FileCenter can make your life easier. Define reusable folder layouts and then recall them on demand.

File Naming Rules
Set up a list of your most common file names in advance. Then save or rename files with just a couple of mouse clicks. These file naming rules can even contain dynamic information.

Inbox; File Moving Tool
FileCenter provides an "Inbox" and a split view for organizing and rearranging files. You'll even be able to rename files as you move them, or create links instead of copies.

Enhanced File Preview & Thumbnails
FileCenter's built-in viewer shows you any office, image, or PDF file on the fly, making FileCenter invaluable for quickly browsing through documents without opening them.

Desktop & Network Search
Search through your documents as easily as you search the web. FileCenter's full-text searching helps you locate files in seconds. And the indexes can be shared on a network.

E-mail Files ... as PDFs
Send any kind of file with one-click e-mail attachments. Just select and send. Need to send a file as PDF? FileCenter can send many kinds of files as PDFs, with no extra steps.

File Encryption & Shredding
Use FileCenter's strong encryption to protect private files from prying eyes. When you need to delete sensitive files, use FileCenter's secure file shredding to do a deep wipe.

Bridge the Gap with Outlook
FileCenter makes it possible to save and organize files by Outlook contact, bridging the gap between Outlook and your files. Go a step further and archive Outlook e-mail to file.

Network Recycle Bin
The biggest shortcoming of network drives is the lack of a Recycle Bin. So FileCenter provides its own. Now if you delete a network file by mistake, it can still be recovered.

Network Deployment & Administration
FileCenter Professional can make even non-technical users good network administrators. Simple tools make it easy to deploy and administer FileCenter on the network.

DownLoad:
http://www.fileserve.com/file/2SnEN3Q/Lucion.FileCenter.Professional.Plus.v7.0.0.11.Cracked-EAT.rar

GHOST WinXP SP3 OEM (Feb 2011) for All Desktop & Laptop

GHOST WinXP SP3 OEM (Feb 2011) for All Desktop & Laptop
- Made from the OEM WinXP SP3-Microsoft Retail home by people that send Cdkey only 3 PC and have installed Active Online. (No registration certificate of the computer maker OEMBIOS)
- Should I have used the MS OEM Key: MVF4D-W774K-MC4VM-R38TB QY6XY-Active (To use multiple PC)
- Test OK: DELL, HP, COMPAQ, FUJITSU, LENOVO (computer brand k k test should be)
- Fix file termsrv.dll (To use Remote Desktop to many as the same user with a Win2003 Server, WinXP default Remote Desktop is only for a single user with the highest right, the other will automatically logout the user)
- Fix file uxtheme.dll (To change the theme)
- Full Sata-Raid 12-2010
- A number Dirver LAN, WLAN, LCD, Mouse, Card Reader for Laptop (k use of the Internet Full dirver error-prone to a number of PC compulsory to install manually is the Sound Card and VGA Card)
- Bug fixes Windows Update, IE8, WM11 By January 12-2010
- Set NetFramework 1.1SP1, 2.0 SP2, 3.0 SP2, 3.5 SP1, 4.0 Full (Large Should the Ghost capacity)
- DirectX 9.0C Jun 2010
- TweakUI 2.10 (Refining System - Microsoft PM)
- BootVis (Boot File Optimization System - Microsoft PM)
- Theme SevenGlass
- Screen Saver Seven7
- Change drive icon (PM made his small)
- Final Unikey 4:08 (PM Vietnamese keyboard)
- 3.02.1343 CCleaner (Cleans garbage PM)
- Vopt 9.21 (PM Disk Cleanup)
- CutePDF Writer 2.8 (PM virtual printer to create PDF output)
- Foxit Reader Pro 4.3.0.1110 (PM Reading and basic editing PDF files)
- Removed an unnecessary number of installations: To reduce the amount of the Ghost
; # Applications # Internet Games, Pinball, Screensavers
; # Multimedia # Images and Backgrounds, Music Samples, Windows Sounds
; # Network # Windows Messenger
; # Operating System Options # Tour
; # Directories # DOCS, VALUEADD
Download Links (990 Mb)


http://hotfile.com/dl/104030225/9cc1bd4/XPSP3OEM.part1.rar.html
http://hotfile.com/dl/104032157/e5bca54/XPSP3OEM.part2.rar.html
http://hotfile.com/dl/104030554/7c67dbf/XPSP3OEM.part3.rar.html
http://hotfile.com/dl/104028625/2bcaef0/XPSP3OEM.part4.rar.html

Collection Plugins For PHOTOSHOP Updated 10.02.2010

Collection Plugins For PHOTOSHOP Updated 10.02.2010
Collection Plugins For PHOTOSHOP Updated 10.02.2010 | 512 MB

OnOne PhotoTune 3.0.5 - Full Version
PhotoTools 2.5.1 Professional Edition - Full Version
FocalPoint 1 - Full Version Price
Genuine Fractals Print Pro 5 - Full Version
PhotoFrame 3.1 Professional Edition - Full Version
Mask Pro 4.1.2 - Full Version
Intellihance Pro 4.2 - Full Version
onOne Software makes award-winning plug-ins for Adobe Photoshop, Adobe Lightroom & Apple Aperture that make digital photography easier, faster and better. Photographers use onOne plug-ins to speed up their photo editing workflow and give their photos the professional look with just a few clicks.

Download link:

http://hotfile.com/dl/103870219/cc6db67/7.Best.PHOTOSHOP.Plugins.part1.rar.html
http://hotfile.com/dl/103870221/efb33ab/7.Best.PHOTOSHOP.Plugins.part2.rar.html
http://hotfile.com/dl/103870241/7302f6f/7.Best.PHOTOSHOP.Plugins.part3.rar.html
http://hotfile.com/dl/103870250/8fe61bf/7.Best.PHOTOSHOP.Plugins.part4.rar.html
http://hotfile.com/dl/103870401/8f4ab09/7.Best.PHOTOSHOP.Plugins.part5.rar.html
http://hotfile.com/dl/103870403/020f046/7.Best.PHOTOSHOP.Plugins.part6.rar.html

Mirror link:
http://bitshare.com/files/he02tzn5/7.Best.PHOTOSHOP.Plugins.part6.rar.html

Mirror link:
http://www.filefrog.to/download/1324616/3PNQ8Z45KC/7.Best.PHOTOSHOP.Plugins.part6.rar
http://www.filefrog.to/download/1324684/UjQCfCJYu6/7.Best.PHOTOSHOP.Plugins.part1.rar
http://www.filefrog.to/download/1324685/TzZMBR8UE7/7.Best.PHOTOSHOP.Plugins.part2.rar
http://www.filefrog.to/download/1324686/FaMbyWuszl/7.Best.PHOTOSHOP.Plugins.part3.rar
http://www.filefrog.to/download/1324688/pcbn24f7uv/7.Best.PHOTOSHOP.Plugins.part5.rar
http://www.filefrog.to/download/1324704/RX86ijjSdf/7.Best.PHOTOSHOP.Plugins.part4.rar

Mirror link:
http://www.fileserve.com/file/H2vYGqb/7.Best.PHOTOSHOP.Plugins.part6.rar
http://www.fileserve.com/file/smPY4Pb/7.Best.PHOTOSHOP.Plugins.part1.rar
http://www.fileserve.com/file/2Ws7MD9/7.Best.PHOTOSHOP.Plugins.part2.rar
http://www.fileserve.com/file/KcU5crM/7.Best.PHOTOSHOP.Plugins.part5.rar
http://www.fileserve.com/file/93EUumH/7.Best.PHOTOSHOP.Plugins.part4.rar
http://www.fileserve.com/file/4CeDx9B/7.Best.PHOTOSHOP.Plugins.part3.rar

Mirror link:
http://www.filesonic.com/file/80673877/7.Best.PHOTOSHOP.Plugins.part6.rar
http://www.filesonic.com/file/80678592/7.Best.PHOTOSHOP.Plugins.part1.rar
http://www.filesonic.com/file/80678698/7.Best.PHOTOSHOP.Plugins.part4.rar
http://www.filesonic.com/file/80678778/7.Best.PHOTOSHOP.Plugins.part3.rar
http://www.filesonic.com/file/80678792/7.Best.PHOTOSHOP.Plugins.part5.rar
http://www.filesonic.com/file/80678986/7.Best.PHOTOSHOP.Plugins.part2.rar

Mirror link:
http://www.megaupload.com/?d=UDOF5B5U&f=/7.Best.PHOTOSHOP.Plugins.part6.rar

ScreenCamera 2.2.3.11


ScreenCamera 2.2.3.11

ScreenCamera 2.2.3.11 | 4.93 MB


ScreenCamera is just like a webcam you buy at the store, except it captures the desktop activity and not the person's face. If you have a real webcam then after you install ScreenCamera you will be able to use your real webcam on multiple programs and websites at the same time.
ScreenCamera is also a video recorder that can record online conversations, video tutorials, screencasts, and streaming videos from YouTube or any other website.

As a video camera ScreenCamera works with Skype, U-Stream, and all programs and websites that accept webcams as video sources.

Features
- Webcam multiplier
- Transform PC screen into a webcam
- Video Recorder
- Image Capture

Home Page - http://www.pcwinsoft.com/

Download link:

Mirror link:
http://bitshare.com/files/agru5qzz/ScreenCamera.2.2.3.11.rar.html

Mirror link:
http://www.filefrog.to/download/1324619/JKOTGQObFr/ScreenCamera.2.2.3.11.rar

Mirror link:
http://www.fileserve.com/file/4UE4DWB/ScreenCamera.2.2.3.11.rar

Mirror link:
http://www.filesonic.com/file/80674483/ScreenCamera.2.2.3.11.rar

Mirror link:
http://www.megaupload.com/?d=0H149WQ8&f=/ScreenCamera.2.2.3.11.rar

Xilisoft Photo to Flash 1.0.0 Build 0114


Xilisoft Photo to Flash 1.0.0 Build 0114
Xilisoft Photo to Flash 1.0.0 Build 0114 | 30 MBXilisoft Photo to Flash is the best flash slideshow maker which can create dynamic flash slideshows from a dozen of photos in formats of jpg, jpeg, png, gif, bmp, tiff, xbm, xpm to SWF, XML and HTML output formats. To create personalized flash, you are enabled to add background music, make a choice from many given flash templates, adjust the orientation and display sequence of the imported photos and etc. With Xilisoft Photo to Flash, your photo collections can be turned to a dynamic and vivid flash show.
Features:* Create great flash from a dozen of images in formats of jpg, jpeg, png, gif, bmp, tiff, xbm and xpm.* Export images to SWF format flash, HTML codes and XML files.* Apply your favorite music as the background music of created flash.* Multiple flash templates are free to choose to simplify the creation of flash.* Customize the orientation and display sequence of the imported images.* Background music editing functions are offered.
Download links :Download

Saturday, February 5, 2011

Pakistan cricket trio face corruption charges

Pakistan cricket trio face corruption charges

Mohammad Amir, Salman Butt and Mohammad Asif photographed in 2010 Mohammad Amir (left), Salman Butt (right) and Mohammad Asif will face corruption charges
Three Pakistan cricket team members and an agent will face corruption charges, the Crown Prosecution Service has said.
Mohammad Amir, Salman Butt and Mohammad Asif were accused of "spot-fixing" offences in the fourth Test against England at Lord's last August.
The players and their agent Mazhar Majeed will be charged with conspiracy to obtain and accept corrupt payments and also conspiracy to cheat.
They have always denied the accusations of bowling deliberate no-balls.
The International Cricket Council (ICC), which conducted its own investigation as the sport's governing body, is due to present its findings on Saturday.
But the BBC's sports editor, David Bond, reports that the three accused players have asked for the ICC tribunal's decision to be adjourned.
They are arguing, through their solicitors, that any decision from the tribunal would prejudice their criminal case.
Our correspondent says the ICC is likely to oppose that request but that a final decision will be made by the tribunal, which is headed by Michael Beloff QC.
On the criminal matter, the players - who are all from Pakistan - and Mr Majeed, 35, of Oaks Road, Croydon, are due to appear at the City of Westminster Magistrates' Court on 17 March.
'Public interest' Simon Clements, head of the CPS Special Crime Division, said the charges "relate to allegations that Mr Majeed accepted money from a third party to arrange for the players to bowl no-balls on 26 and 27 August 2010, during Pakistan's fourth Test at Lord's Cricket Ground in London".

Simon Clements of the CPS: "We are satisfied there is sufficient evidence for a realistic prospect of conviction"
He added: "We are satisfied there is sufficient evidence for a realistic prospect of conviction and it is in the public interest to prosecute."
He said summonses had been issued for the three players and they had been asked to return to the UK voluntarily, which they had agreed to do in September last year.
"Their extradition will be sought should they fail to return," Mr Clements added.
'Sad outcome' Asif's lawyers Addleshaw Goddard said he had co-operated fully with the Met Police.
"Today's decision by the Crown Prosecution Service to formally charge him is a sad and disappointing outcome to that investigation and he will now take some time to consider his response.
"We hope today's announcement will not prejudice the International Cricket Council's own decision, which is expected tomorrow."
Butt, the former Pakistan captain, and both Asif and Amir were provisionally suspended in September after the allegations of corruption surfaced during last year's tour of England.
It was claimed Asif and Amir deliberately bowled no-balls at pre-arranged times during the Test, with Butt also said to be involved, in return for money from a bookmaker's "middle man".
They denied manipulating parts of the game in this way, which is known as "spot-fixing".
The News of the World newspaper, which originally made the allegations against the players, said it would "continue to assist the police with their inquiries".

Amir, Asif and Butt handed lengthy bans by ICC

Amir, Asif and Butt handed lengthy bans by ICC

spot-fixing scandal, match-fixing scandal, mohammad amir, mohammad asif, salman butt, icc hearing, cricket scandal, news of the world, mazhar majeed, doha, qatar, qatar financial centre, michael beloff


Mohammad Amir. -File photo
An International Cricket Council corruption Tribunal has announced its verdict on the spot-fixing scandal that rocked the cricket world in August 2010, handing down lengthy bans to the trio of Mohammad Asif, Mohommad Amir and Salman Butt.
Butt faces a 10-year ban while Asif and Amir are banned for 7 and 5 years respectively. Their cricketing careers seem to be almost certainly over barring the opportunity for an appeal is permitted by the ICC.

ICC hands lengthy bans to trio



Friday, January 14, 2011

Microsoft Office Visio Professional 2007


Image 
 
Microsoft Office Visio Professional 2007

Format: .ISO

Microsoft Visio, marketed as Microsoft Office Visio, is a diagramming program for Microsoft Windows that uses vector graphics to create diagrams. It is currently available in three editions: Standard, Professional and Premium. Unlike the core Office 2007 applications, Microsoft Visio 2007 does not feature the Ribbon user interface.

The Standard and Professional editions both share the same interface, but the latter has additional templates for more advanced diagrams and layouts as well as unique functionality that makes it easy for users to connect their diagrams to a number of data sources and display the information graphically.

http://en.wikipedia.org/wiki/Microsoft_Visio

Install notes:
1. mount using magic disk or burn to dvd
2. autorun
3. use serial in serial.txt to validate
 
 
 

Monday, October 25, 2010

FarmVille New Secret Guide 2010

Posted Image


FarmVille New Secret Guide 2010 | 10MB
The Advantages of this eBook :

-> Simple Tutorial
-> Easy To Use
-> Every Level Can Use This Secret
-> Can Increase Your Level
-> and any more . . .

Hotfile Links :-

Code:
http://rapidshare.com/files/420984526/New_Farmville_Secret_Guide.pdf 
http://hotfile.com/dl/67970293/f03763a/New_Farmville_Secret_Guide.rar.html

Tuesday, September 7, 2010

Avast AntiVirus 4.8 PROFESIONAL Full + Life Time Key 1

Avast AntiVirus 4.8 PROFESIONAL Full + Life Time Key 1
Avast AntiVirus 4.8 PROFESIONAL Full + Life Time Key
size: 28.41 Mb


Avast! Professional Edition description
Complete ICSA certified antivirus package for small office, home office - SOHO
avast! Professional Edition is a complete ICSA certified antivirus package for small office home office use - SOHO.
Protect your system and valuable data against computer viruses with Avast! Professional Edition.
avast! 4 Professional Edition is a collection of award winning, high-end technologies that work in perfect synergy, having one common goal: to protect your system and valuable data against computer viruses. It represents a best-in-class solution for any Windows-based workstation. This page demonstrates its most important features and provides links to further resources.
Avast AntiVirus 4.8 PROFESIONAL Full + Life Time Key 1

Download:
http://www.fileserve.com/file/HDfH534/A.A....KeygeN_2010.rar

Photoshop Tutorials - Making AVATAR Look

Photoshop Tutorials - Making AVATAR Look
Photoshop Tutorials - Making AVATAR Look
1280x720 | 11:25 min | 997 MB | mp4
Gender: elearning
A great tutorial using Photoshop - This is really helpful training for you. I hope you like it ! Enjoy !

Photoshop Tutorials - Making AVATAR Look

Hotfile:
http://hotfile.com/dl/67741268/57f1df7/1.3....part1.rar.html
http://hotfile.com/dl/67741376/fe1cd09/1.3....part2.rar.html
http://hotfile.com/dl/67741436/7a7ba6d/1.3....part3.rar.html
http://hotfile.com/dl/67741448/40b823f/1.3....part4.rar.html
http://hotfile.com/dl/67741938/f45313d/1.3....part5.rar.html
http://hotfile.com/dl/67741973/865f30d/1.3....part6.rar.html
Mirror link:
http://www.fileserve.com/file/QT8USR6/1.3.Look_Ava.part1.rar
http://www.fileserve.com/file/r7HdMDb/1.3.Look_Ava.part2.rar
http://www.fileserve.com/file/qnYWQgt/1.3.Look_Ava.part3.rar
http://www.fileserve.com/file/dttfack/1.3.Look_Ava.part4.rar
http://www.fileserve.com/file/Mj6nnVG/1.3.Look_Ava.part5.rar
http://www.fileserve.com/file/RNccKZU/1.3.Look_Ava.part6.rar

Battle Metal - Street Riot Control 2010

Battle Metal - Street Riot Control(2010)
Battle Metal - Street Riot Control (2010/GER)

Description:
Battle Metal: Street Riot Control - crazy arcade racing game with shooter elements. Players will enjoy a huge fleet of vehicles, weight of various weapons and the ability to give light weight their cars with different armor. System requirements: - Operating system: Windows XP / Vista / Windows 7 - Processor: Pentium 2 GHz - RAM: 1 GB - Video: 128 MB - Free space on hard disk: 1,5 GB Installation: 1) Unpack using WinRAR 2) Mount image using Daemon Tools 3) Install the game 4) Play

Download:
http://www.fileserve.com/file/6pJCrb3/BATTLE.part1.rar
http://www.fileserve.com/file/CHCGxzK/BATTLE.part2.rar
http://www.fileserve.com/file/rHYS4as/BATTLE.part3.rar
http://www.fileserve.com/file/7BbYuYK/BATTLE.part4.rar

The Mark PC RIP

The Mark (PC/RIP)
The Mark (PC/RIP)
English | PC | Developer: T7 Games | Publisher: DreamCatcher Interactive | 293 MB
Genre: Modern First-Person Shooter







Terrorists stole a nuclear-tipped missile and plan to blast away one of Europe's largest city: LONDON! The missiles short range is a problem, but money is not, and the terrorists find an accomplice, Ilya Rakov, son of a Russian billionaire and arms dealer. Aleksandr Rakov. Ilya agrees to supply the terrorists with a ship that will bring the missile within range of London. He also agrees to hunt down the only two people who are capable of foiling the plot: Steve and Sandy Fletcher. Steve and his sister Sandy are officers in the US Marine Corps. Aleksandr Rakov is horrified by his sons plan. Unable to take direct action, he hires the elite mercenary Austin Hawke to protect and assist Fletch
The Mark (PC/RIP)
The Mark (PC/RIP)
The Mark (PC/RIP)

Massive Assault PCENG

Massive Assault PCENG
Massive Assault (PC/ENG)
English | PC | Developer: Wargaming.net | Publisher: Matrix Games | 184 MB
Genre: SciFi TurnBased Strategy

Take the command of AxisofGood forces and defeat the secret alliance of Shadow Clique on one of 6 distant planets. The rebels decided to seize the power on Earth by first conquering the space colonies, which provide vital energy resources to A.O.G. The war for global domination will unroll on continents, at sea and in the air. Lead your divisions, fleets and air squadrons against those, who dared threaten our freedom and democracy!The game utilizes Wargaming.nets highperformance 3D engine giving revolutionary look and feel to turn based globalscale games. The game play is smooth and easytolearn. The game contains original political system, preserving the intrigue throughout the whole war.

Each side has a bunch of allied countries, unknown to the enemy. Secret allies can disclose and provide troops at any moment, surprisingly shifting the power balance in particular region.The game is set in dynamic strategic environment, where the tide can turn for several times. And if you finally win, you will feel like the victory was snatched from the jaws of defeat. The secret alliance concept provides endless replay ability in each game the distribution of secret allies is totally different, so you will never have two alike games, facing unique strategic situation. You will have to employ the eternal principles of warfare, such as
Massive Assault PCENG


ACDSee Pro v3.0.475 Final Full + Lite + Portable

ACDSee Pro v3.0.475 Final Full + Lite + Portable
ACDSee Pro v3.0.475 Final Full + Lite + Portable | 258 MB
ACDSee Pro v3.0.475 Final Full + Lite + Portable
http://hotfile.com/dl/67717149/666c6a1/ACD35.part1.rar.html
http://hotfile.com/dl/67717180/7d738d7/ACD35.part2.rar.html
http://hotfile.com/dl/67717161/22aee6d/ACD35.part3.rar.html

Family Tree Maker 2010

Family Tree Maker 2010
Family Tree Maker 2010

Family Tree Maker 2010 provides users the tools they need to build their family tree, record their memories and organise their family photos, stories, videos and audio clips in a way that will help them easily capture and share the story of their ancestors.
Additionally, this new software provides unique ways to view your family history. Users can now track the migration paths of a person and their family through time, by mapping event locations with Microsoft Bing Maps. They can also view relationships between any two people in their family tree by using the improved relationship calculator and create family books made from information and photos from their tree.

Users can also utilize the robust collection of family history records on Ancestry.com.au and powerful search features -- without leaving Family Tree Maker. When connected to the Internet, Family Tree Maker 2010 automatically searches Ancestry.com.au for historical documents about the individuals in the user's family tree. With a few mouse clicks, users with an Ancestry.com.au subscription can view and import these historical records into their family tree.
Family Tree Maker 2010
http://hotfile.com/dl/67717961/da9130a/FTM10.part1.rar.html
http://hotfile.com/dl/67717963/3872afe/FTM10.part2.rar.html
http://hotfile.com/dl/67717964/d24aad6/FTM10.part3.rar.html