Posts

Showing posts with the label VIRUS

PRORAT HOW TO USE AND CONFIGURE FULL GUIDE

Image
Trojan Horse : ProRat How to use and Configure Full Guide By Parth M For Video Tutorial :    Click Here Requirements : 1. Prorat-  Click here  to download Trojan Prorat. 2. Hostname  -  Your IP address would probably be dynamic that it keeps changing everytime you disconnect and reconnect. You need a host name which always automatically keep pointing to your changing IP. Follow these steps -: 1. Log On to www.no-ip.com and register for an account. 2. Go to Hosts/Redirects -> Add Host and choose any free available hostname. Do not change any other option and simply click on Create Host. 3. Downloading and install their DNS update client available here http://www.no-ip.com/downloads.php Run it and enter your credentials. Update your host name and save it. 4. Lets check whether your IP has been associate with chosen host name or not. Go to command prompt and type 'ping yourhostname' (without quotes) , hopefully it should reply wit...

How to Remove a Virus Using Command Prompt

Image
BY PM Dear  BestHacking  readers today I am going to tell you    How to Remove a Virus Using Command Prompt  Virus is a computer program that can copy itself and infect your computer. These viruses can spread via USB/flash drive or from one computer to other computer by few written codes. There are many antivirus software available to remove viruses from computer. But there are some viruses or suspicious files which can’t be removed by any antivirus software.  Some suspicious files such as autorun.inf initiate all the viruses in pc. These files must be removed for safe operation of your pc, because they may lead to data loss, software damages etc. Such viruses and files can be removed by using cmd. In this article we will discuss how to remove a virus using command prompt. Following steps can be used to remove a virus using command prompt from your computer. Go to start menu and type “cmd” in the search box or Start>all programs>accessories...

Top 5 Cool Notepad Tricks

Image
By Prit Koradiya Share On Google+ Add This To Delicious Tweet/ReTweet This Share on Facebook StumbleUpon This Digg This I had previously share some Interesting computer tricks as well as cool Batch file programs. In this post i will share with you guys some of the cool  notepad tricks .As name suggest you don't require any program other then notepad. So lets  get started . 1. World Trade Center Attack Trick The flight number of the plane that had hit World Trade Center on  (9/11) was Q33NY. Now we call this trick or a coincidence or something else but whatever it is you will be definately amazed by the this trick.     1. Open  Notepad  and Type “ Q33N ” (without quotes) in capital letters.     2. Increase the font size to  72 .     3. Change the Font to  Wingdings . World Trade Center Notepad Trick 2. Matrix Effect Trick In this trick i will show you to make a  batch file  in notepad wh...

Delete folder via CMD

Some times Because of virus Folder Can't Delete So you need CMD's Help::  By Parth Makadiya Two ways to go here: RMDIR /S /Q drive:folder_name Can be used to remove a folder (directory) containing files and folders. Sometimes it will not remove an empty folder RD /S /Q J:\New Folder Removes empty folders only You'll notice I've added the following items: /S Add this to remove all directories and files in the specified folder in addition to the directory itself. This is called removing a directory tree. /Q Quiet mode, does not ask if its ok to remove a directory tree with /S. A third method, sometimes permissible, is the DELTREE command. Thankyou