vote up 0 vote down star

A Sprint cellular modem plugs into a laptop - often the PCMCIA slot. To connect, the user opens a program called the Connection Manager. This program has a menu option to display the serial number and phone number of the modem that's currently inserted.

Does that imply that the serial/phone number of the modem could be available to other programs running on the system? (Note: let's assume this is Windows XP.)

Specifically, could a company's VPN software be configured to pass along information about which modem is being used to connect?

Finally, is there existing VPN software that already does this, or would it have to be custom-programmed?

flag

68% accept rate

2 Answers

vote up 1 vote down check

Sometimes you can get the modem's serial number using the AT command set. To see this in action, go to your control panel and open up Phone and Modem Options. Select the Modems tab, select the modem you're interested in, and choose Properties.

In the modem window, select the Diagnostics tab, and press the Query Modem button.

This opens the serial port and sends a series of AT commands to gather various settings and information. You can open the serial port in your program (or a terminal program), send the AT command, and get the same information back.

You may need to check your specific modem's AT command set to find where the serial number is stored, or use a serial port spy program to see how Sprint's program does it.

I'm not aware of any VPNs that use this information, and I can think of several ways to spoof it, since communications between the modem and the computer are not cryptographically secure.

-Adam

link|flag
Awesome! Spoofing here is not a big concern - the problem is that average users are swapping cards and not telling anybody. The company wants an automatic way to poll who has what card. I doubt anyone would know how to hack it. – Nathan Long Sep 11 '08 at 16:35
(By the way, the "Query Modem" step you described did work. Going through "phone and modem options" made me give a default area code first, and since I will configure multiple cards on this machine I'm not sure if that's good. The query can also be found via Device Manager, righ – Nathan Long Sep 11 '08 at 16:40
vote up 1 vote down

Open hyperterminal or make a serial port connection programatically and use Hayes AT language to talk to it. Most software also has it listed in the device properties and/or diagnostics.

AT+GSN

press enter

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.