Home > Articles > Home & Office Computing > Entertainment/Gaming/Gadgets

Securing Your Wireless PDA Connection

There are times a Pocket PC owner might need to use a public hotspot to check email or surf the Internet. The problem is that most wireless hotspots are vulnerable to sniffer based attacks. Seth Fogie and Cyrus Peikari provide a step by step guide that you can use to securely communicate with almost any online service.
Like this article? We recommend

Like this article? We recommend

There are times a Pocket PC owner might need to use a public hotspot to check email or surf the internet. The problem is that most wireless hotspots are vulnerable to sniffer based attacks. Emails, web pages, chat sessions and more are all sent in plain text over the airwaves. Anyone with a sniffer program has the power to capture and review this information, which more often than not includes passwords and sensitive data.

While a PC owner has a plethora of options available to secure their wireless traffic, the Pocket PC owner is relatively left with few choices. There are some VPN software vendors that support Windows Mobile and these programs can be used to create a secure link between the PDA and some home office server. However, for most average users this is not a feasible solution because they have no access to a VPN server, and wouldn't know what to do with one even if it was available. So, what alternatives does the average Pocket PC user have?

This section will provide a step by step guide that you can use to securely communicate with most any online service (e.g. email, web, chat). While the requirements and steps are not plug-and-play, they are within grasp of most any well versed computer user. This particular solution is not free, but will only cost you about $100 a year. For this price you will not just get secure communications for your PDA, but you also get a web server, online email, your own domain name, and much more.

Overview of Communications

When you use Pocket IE to look at CNN.com, several things happen. First your Pocket PC has to learn the IP address of CNN.com's web site. This is accomplished by sending the desired domain name (www.cnn.com) to a domain name server, which will reply with the specific IP address where that resource can be found. Next Pocket IE will attempt to connect to the web server, and once connected, will ask the web server for the contents of the requested web page. The web page will be processed by the web server, and the results will be passed back to the PDA for viewing. Finally, Pocket IE will render the web page and display it to you on your screen.

There are two problems here. If someone is sniffer the wireless network that you are connected to, they will see the initial DNS query and the complete contents of the web page. If this page contains sensitive information, it would not belong to the attacker. Second, by connecting over an insecure wireless network, there is no way for you to be sure your wireless session isn't being hijacked. For example, the attacker could insert their own DNS query results into the airwaves and trick you into going to a fake website. Image the consequence if you were tricked into logging onto your online banking site!

Figure 1 illustrates the components to a standard web request. The blue line denotes the initial DNS request that occurs between the PDA user and the DNS server. This will provide the PDA user with the IP address of the Web Server, to which the PDA will next connect to download the requested web page. Note the vantage point of the attacker. He would have access to everything passing over the WLAN connection.

Figure 1Figure 1: Regular web request over WLAN.

To stop an attacker from capturing any plaintext data, you have to encryption the communications. By doing this, the attacker will only see garbled traffic that makes no sense. You should also setup and use some sort of secure login process to ensure no man in the middle attack is executed against you and your PDA.

Fortunately, all this can be accomplished via SSH( Secure Shell) and a little port forwarding/proxying. Unfortunately, this means you will need to access to an ssh server/client, a proxy server, and a make a few changes to your Pocket PCs network connection. However, given the options, there is no other easier or cheaper method to a secure connection on a public wireless network.

Requirements

There are a few requirements that need to be addressed prior to setting up the SSH tunnel. The following lists the necessary parts and their purposes.

SSH Server

To make this all work, you will need to find a SSH server online. I have used PHPWebHosting.com for sometime and found them to be reliable and rather inexpensive For about $10 a month I get unlimited web space, unlimited emails account, and unlimited sub-domains (within reason). Part of this package also includes the option for SSH access to the server, which is made available upon request and with a credit card.

There are other options available, but not many people will provide full SSH access to a server due to the security problems that can come with it. The provider has to have some form of control to keep their clients from rooting their box. There are numerous 0-day vulnerabilities that could be exploited via shell access to give the user root level permissions on the server. This type of risk is not something most people want to deal with.

SSH Client

There are only a handful of SSH clients for the Pocket PC/Windows Mobile platform. Of these, I have only found one program (PockeTTY) that provides support for a feature called 'port forwarding' or 'ssh tunneling'. You must have this option in order to create the link between your web requests and the SSH server.

PockeTTY is available from http://www.dejavusoftware.com/pocketty/. You can download a limited demo version that will disconnect the session after five minutes, or purchase the program for about $20. PockeTTY also includes support for a combination of algorithms and hashing functions that may or may not be of interest.

Proxy Server

In the previous section, we discussed some of the threats a PDA user must consider when using a public hotspot. Simply put, there is little to no security being offered by most public wireless networks. As a result, all emails and webpages are readable by anyone with a sniffer. Fortunately, there are a few means of protection, one of which is accomplished via an SSH tunnel. In this section, we will look at the optional requirements and provides a step by step outline for setting up your own SSH tunnel.

There are many options available when performing port forwarding. You can configure your Pocket PC to use the SSH tunnel to securely check your email, chat with people, or even view web pages. However, port forwarding is limited to only one server per port. While this isn't a problem for static online services like email that always have the same IP address, it is an issue if you want to surf the internet. By design, the SSH tunnel can only connect to one remote server per port. This means you would have to reconfigure the port forwarding each time you wanted to view a new webpage.

The way around this problem is to use a proxy server. A proxy server takes a clients request, obtains the web content, and then passes the results back to the client. At no point does the client have direct access to the web server that provided the web content. This type of functionality has two main purposes. First, a proxy server can help network administrators manage and monitor their clients web usage. Since all connections have to pass through the proxy, it becomes the point of control. The second function a proxy server provides is that it masks the client from the web server. In other words, the web server only sees the proxy servers address when a page is requested. This helps to provide anonymity to the client.

In this case, the proxy server will be acting like a single request point. The proxy server's address can be used as remote server to which all the tunneled forwarded requests are made. This way the proxy server handles all the web requests and passes the data back through the SSH server to the PDA.

Most people do not have a personal proxy server. However, the internet community is full of open proxies just waiting for you to connect through them. Sites such as http://www.publicproxyservers.com/page1.html have listings of these proxies. Note however, any public proxy you find online may not be secure, or may under the control of someone looking for sensitive information. If you just want to check out the latest posting at Slashdot.org or InformIT.com, then it really doesn't matter who is watching. Just be very sure you don't attempt to perform anything involving credit cards or user names and passwords.

DNS Server Address

When most people think of a web site, it is in the format of http://www.xyz.com. This is nice for us humans because these names are generally easy to remember and often relate to the content of the site. Computers, on the other hand, do not care or understand what http://www.xyz.com means. Instead, they use numeric addresses, called IP addresses, to locate each other on a network. This is accomplished via a Domain Name Service (DNS). Generally your ISP will assign you a server, but you can also use any one of thousands of static IP addresses. Since DNS requests always pass over port 53, we can also configure this request to pass through the SSH tunnel. If the DNS request was performed outside the tunnel, it would be subject to sniffing and man-in-the-middle spoofing attacks. Since PockeTTY supports multiple port forwards, and the server is a static value, it is simple to tunnel the DNS request along with HTTP web traffic.

Configuring the SSH Tunnel/Proxy

Assuming the entire previously mentioned component are installed or available, you can now configure Pocket PC to use the SSH connection for all HTTP traffic. The following will list the steps with applicable screen shots on Windows Mobile 2003 SE.

  1. Configure wireless network and connect to WLAN.

  2. Click Start→ Settings→ Connections Tab and Network Cards icon.

  3. Click on recently added and 'Connected' WLAN listing.

  4. Select 'Work' from Connects to: menu and click OK.

    Figure 2

    Figure 2: Select Work from Connects to: menu

  5. Select Network Adapters tab.

  6. Verify that My network card connects to: menu has 'Work' selected and click OK.

  7. Click Start→Settings→Connections and Connections icon.

  8. Click Set up my proxy server.

  9. Check This network connects to the Internet and This network uses a proxy server...

  10. Enter '127.0.0.1' in Proxy server: text box (figure 3).

    Figure 3

    Figure 3: Connection settings

  11. Select [Advanced] button and verify the 127.0.0.1 is added under http

  12. Close all open windows and execute PockeTTY.

  13. Click Session→Connect, select 'New SSH2 Connection' and hit [Configure].

  14. Enter host name of SSH server you have available on the Internet.

  15. Enter your user name (figure 4).

    Figure 4

    Figure 4: PockeTTY Connection Configuration

  16. Hit [Port Forward...] button and click the [Add] button (figure 5).

  17. Setup HTTP first with the following entries:

    1. Local port: 80

    2. Remote host: proxy server IP

    3. Remote port: proxy server HTTP port

  18. Setup DNS second with the following entries:

    1. Local port: 53

    2. Remote host: DNS server IP

    3. Remote port: 53

    Figure 5

    Figure 5: PockeTTY Port Forwarding setup

  19. Click [Done] and [Connect]. This should establish the SSH connection and setup the session (figure 6).

    Figure 6

    Figure 6: Successful connection in PockeTTY

  20. To test, open up Pocket IE and attempt to connect to a web site. Use a program like Airscanner's Mobile Firewall (Logs) to verify that your data is all passing over port 22. You can also connect to http://whatismyip.com to ensure you are passing through the proxy server IP address.

Summary

Once all the pieces, parts, and configurations are in place, any traffic passed between the PDA and a web server will be secured. Our example does not include email, but this can be added by included two more Forwarded Ports in our PockeTTY setup (e.g. 25 and 110 for the standard POP/SMTP connection). The following illustrates clearly how an SSH server can help protect WLAN users from attackers.

Figure 7

Figure 7: Communications overview using SSH

In figure 7, the yellow line illustrates the SSH encrypted tunnel. The attacker can see this, but since the data is all encrypted, there is nothing of value for the attacker to use. The initial DNS request is passed through the tunnel to the SSH server, which relays it on to the DNS server (blue line). With the correct IP address in hand, the PDA sends the web page request to the proxy server (red line), which looks at the IP address and retrieves the requested information (green line). The web page is then passed back to the SSH server and onto the PDA user via the encrypted tunnel.

Figure 8

Figure 8: Airscanner Firewall Logs

Note that the attacker is oblivious to the many connections occurring out on the internet. Airscanner's Firewall provides a look at the ports used during a lookup of Airscanner.com. As illustrated, only remote port 22 is in use. It is also equally as important to understand that all the web traffic is still in plain text as it passes from the web server through the proxy server and back to the SSH server. While the data on the WLAN side is secure, it is still possible for someone to sniff and capture the data out on the internet. Of course, this is always a threat that must be considered by internet users, regardless of whether they are using a wireless LAN or a standard wired connection.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020