Click here to Skip to main content
15,886,026 members
Articles / Mobile Apps
Tip/Trick

Using SerialPort and AT Commands for Querying Cell Phones

Rate me:
Please Sign up or sign in to vote.
3.75/5 (3 votes)
29 Apr 2013CPOL2 min read 48.8K   2.5K   15   4
Decode and encode files by mobile serial number using AT commands.

Introduction

Connecting to a cell phone in an easy way and getting information is very important for some applications such as SMS senders and Bluetooth connections and this tip shows how to connect to cell phones that are connected to the computer by Bluetooth or USB cable that have one COM port and request an AT Command from mobile set.

Background

Decrypting and encrypting files and data is a very sophisticated subject but I am using that in this tip just for the main subject.

The project scenario steps are as follows:

  1. Connect a cell phone by Bluetooth or other connectivity tools to computer
  2. Select source file and mobile COM port and select output file path
  3. Create a target file and get the length of the source file in byte count
  4. Connect to mobile phone and read its serial number
  5. Decrypt/Encrypt source file to target file by XOR style that XOR all source file bytes by XOR to key value that in this project is the Mobile Phone serial number

Text and binary files format and their standards vary, for example character standards (ASCII, Unicode v1,2,3,4 and other), video and image files header and data.

For this reason, read and write files must be done in a basic way. Read and write byte to byte (8 bit) from source to target.

Using the Code

Reading COM Ports

From the static method in the SerialPort class load all COM (serial) ports to port combo:

C#
private void btnRefreshports_Click(object sender, EventArgs e)
{
    cmbPort.Items.Clear();
    string[] lPorts = SerialPort.GetPortNames();
    foreach (string str in lPorts)
    {
        cmbPort.Items.Add(str);
    }
    if (cmbPort.Items.Count > 0)
        cmbPort.SelectedIndex = 0;
}

Main method that reads the serial number from the mobile set

Before reading the mobile serial number, you must accept your mobile clarification about computer connection or pair your mobile set with computer before running the application.

Reading Serial Number Steps
  1. Prepare SerialPort
  2. Open SerialPort (connect to mobile set)
  3. Writing AT command to serial port and waiting in adequate time (2 second or 2000 milliseconds)
  4. Reading result and export serial number from it
  5. Return serial number

AT: Attention Command

AT+CGSN: AT Command for requesting product serial number identification (IMEI)

C#
private string GetMobileSerialNumber(string PortName)
{
    string key = "";
    SerialPort serialPort = new SerialPort();
    serialPort.PortName = PortName;
    serialPort.BaudRate = 56700;
    try
    {
        if (!(serialPort.IsOpen))
            serialPort.Open();
        serialPort.Write("AT\r\n");
        Thread.Sleep(3000);
        key = serialPort.ReadExisting();
        serialPort.Write("AT+CGSN\r\n");
        Thread.Sleep(3000);
        key = serialPort.ReadExisting();
        serialPort.Close();
        string Serial = "";
        for (int i = 0; i < key.Length; i++)
            if (char.IsDigit(key[i]))
                Serial += key[i];
        return Serial;
    }
    catch (Exception ex)
    {
        MessageBox.Show("Error in opening/writing to serial port :: " + ex.Message, "Error!");
        return "";
    } 
} 

Read from source file

This method reads from the source file fileName from byte number Offset size of bc (byte count):

C#
public byte[] ReadFileToByteArray(string fileName, int bc, long offset)
{
    try
    {
        byte[] buff = null;
        FileStream fs = new FileStream(fileName,
                                       FileMode.Open,
                                       FileAccess.Read);
        BinaryReader br = new BinaryReader(fs);
        br.BaseStream.Position = offset;
        buff = br.ReadBytes(bc);
        fs.Close();
        return buff;
    }
    catch
    {
        return null;
    }
}

Write to target file

This method writes to the target file fileName from byte number Offset size of bc (byte count):

C#
public bool WriteBytesToFile(byte[] buff, string fileName, int bc, long offset)
{
    try
    {
        FileStream fs = new FileStream(fileName,
                                       FileMode.Open,
                                       FileAccess.Write);
        BinaryWriter br = new BinaryWriter(fs);
        br.BaseStream.Position = offset;
        br.Write(buff, 0, bc);
        fs.Close();
        return true;
    }
    catch
    {
        return false;
    }
}

The following method is the manager method for other method calls:

In this method, call the serial number reader method and split the source file in smaller sizes, for example, 1 Mega Byte and read from the source by using the ReadFileToByteArray method and Decrypt/Encrypt bytes and write by WriteBytesToFile method.

C#
private void btnEncDec_Click(object sender, EventArgs e)
{
    if (cmbPort.Text != "" && txtSource.Text != "" && txtDistenation.Text != "")
    {
        string Key = GetMobileSerialNumber(cmbPort.Text);
        if (Key != "")
        {
            try
            {
                Stream stream = new FileStream
                (txtDistenation.Text, FileMode.Create, FileAccess.Write, FileShare.Read);
                stream.Close();
                stream = new FileStream
                (txtSource.Text, FileMode.Open, FileAccess.Read, FileShare.Read);
                long len = stream.Length;
                stream.Close();
                if (len>=1)
                {
                    try
                    {
                        byte[] buffer;
                        long Used=0;
                        int Mb=(int) Math.Pow(2,20);
                        while (Used < len)
                        {
                            int Itr = 0;
                            if (Used + Mb < len)
                            {
                                Itr = Mb;
                            }
                            else
                                Itr = (int)(len-Used);
                            if (Itr >= 1)
                            {
                                buffer = ReadFileToByteArray(txtSource.Text, Itr, Used);
                                for (int i = 0; i < Itr; i++)
                                {
                                    buffer[i] = (byte)(buffer[i] ^ Key[i%Key.Length]);
                                }
                                WriteBytesToFile(buffer, txtDistenation.Text, Itr, Used);
                                Used += Itr;
                            }
                            else
                                break;
                        }
                        MessageBox.Show("Successfully Done!");
                    }
                    catch
                    {
                        MessageBox.Show("Error!");
                    }
                }
            }
            catch
            {
                MessageBox.Show("Error!");
            }
        }
    }
    else
        MessageBox.Show("Please Fill Information");
}

Image 1

Points of Interest

  • Writing a full AT Command query and result on mobile and modems

History

  • Version 1.0 in April 2013

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
Software developer

Comments and Discussions

 
GeneralMy vote of 1 Pin
krranjeet914-Oct-13 22:46
krranjeet914-Oct-13 22:46 
GeneralRe: My vote of 1 Pin
Mojtaba Eng15-Oct-13 9:45
professionalMojtaba Eng15-Oct-13 9:45 
GeneralMy vote of 5 Pin
taha bahraminezhad Jooneghani1-May-13 22:45
taha bahraminezhad Jooneghani1-May-13 22:45 
i'm a phony but you are a hacker , i love hackers! hacking code is a hard job in your way! 5 for your hacking Smile | :)
GeneralRe: My vote of 5 Pin
Mojtaba Eng2-May-13 0:30
professionalMojtaba Eng2-May-13 0:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.