Questions tagged [imei]

International Mobile Equipment Identity a number, usually unique, to identify 3GPP (i.e., GSM, UMTS and LTE) and iDEN mobile phones, as well as some satellite phones.

From http://en.wikipedia.org/wiki/International_Mobile_Equipment_Identity

It is usually found printed inside the battery compartment of the phone. It can also be displayed on the screen of the phone by entering *#06# into the keypad on most phones.

The IMEI number is used by a GSM network to identify valid devices and therefore can be used for stopping a stolen phone from accessing that network. For example, if a mobile phone is stolen, the owner can call his or her network provider and instruct them to "blacklist" the phone using its IMEI number. This renders the phone useless on that network and sometimes other networks too, whether or not the phone's SIM is changed.

The IMEI is only used for identifying the device and has no permanent or semi-permanent relation to the subscriber. Instead, the subscriber is identified by transmission of an IMSI number, which is stored on a SIM card that can (in theory) be transferred to any handset. However, many network and security features are enabled by knowing the current device being used by a subscriber.

283 questions
0
votes
1 answer

What information gets site from mobile users

I have question about mobile visitors. What information can a website administrator get from mobile user? For example: when I visit www.site.com from my phone device (I use mobile internet, not WiFi) what they will know about me? Can they can get my…
0
votes
0 answers

Why IMEI changes when I insert or remove SIM card?

I have used TelephonyManager.getDeviceId() for creating serial number for my android application. Now I have noticed it is changed when the user insert or removed SIM card!!! Why this happens? My device is Samsung Galaxy SM-T211 How can I stop…
Bob
  • 22,810
  • 38
  • 143
  • 225
0
votes
4 answers

IMEI number using iphone code

Possible Duplicate: How to get IMEI on iPhone? how can i get IMEI code from iphone simulator?
user292117
  • 1
  • 1
  • 3
0
votes
2 answers

What does the getDeviceId() method of the Android TelephonyManager return for a CDMA phone with LTE?

The definition of the method on developer.android.com simply says that the method returns the "unique device ID, for example, the IMEI for GSM and the MEID or ESN for CDMA phones." So, for a CDMA phone with LTE, e.g. an LTE phone on Verizon, which…
bureau13
  • 31
  • 4
0
votes
2 answers

Creating an Android Application that Reads the IMEI of a phone and then compares it to a database

I was asked by my boss to come up with an android application that checks the IMEI of a phone and then compares that IMEI to a database, displaying on the app if the IMEI is registered or not. I was assigned this project since nobody in the office…
0
votes
1 answer

IMEI number of a mobile phone using python

How can I get the IMEI number of a mobile phone using Python?
Nimmy
  • 5,051
  • 7
  • 33
  • 32
0
votes
1 answer

IMEI Number on non-network devices

I'm currently working on an application where the code uses the device IMEI number as a variable to store something in the DB. We need to see what device the reading originated from. ie: String IMEI = telephonyManager.getDeviceId(); However, I'm…
Marcubus
  • 113
  • 1
  • 10
0
votes
1 answer

I need a way to retrieve and log the IMEI, Serial, ICCID, and MEID of an iPhone device connected via usb

As it says in the title I'm after a way to retrieve and log the IMEI, Serial, ICCID, and MEID of an iPhone device connected via usb. Ideally this method would work with multiple devices plugged in at once and export the information to a spreadsheet…
0
votes
2 answers

IMEI in Unity for Android

Can i find the IMEI for Android in Unity? I found an example for the Android_ID for Unity: AndroidJavaClass up = new AndroidJavaClass ("com.unity3d.player.UnityPlayer"); AndroidJavaObject currentActivity = up.GetStatic
user3382615
  • 1
  • 1
  • 2
0
votes
1 answer

How to get IMEI in Android using code

I am trying to get IMEI of a phone by running this android code String imei="*#06#";//Checking the Phone's IMEI. Intent cintent= new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+Uri.encode(imei))); startActivity(cintent); I have set the…
Angwenyi
  • 319
  • 1
  • 4
  • 16
0
votes
2 answers

How to generate a IMEI?

I need to generate a IMEI in a iOS app since it's used for server-side checking ... and iPod's don't have a actual IMEI. I have searched and all I could find were IMEI validation methods and not how to generate one. Thank you.
Toncean Cosmin
  • 535
  • 4
  • 19
0
votes
1 answer

Taint verification of a string

I developed an application that extract the IMEI of the android and stores it in a string.To verify if this string is tainted or not by using eclipse,i used "getTaintString" as following: import dalvik.system.*; import…
0
votes
2 answers

Get iPhone info in C# application

I am looking for a way to retrieve information from an USB connected iPhone (IMEI, MODEL and so on). Actually I would like to retrieve all the info possible as I am looking for an easy way to keep track of all the employees phones.
Zee
  • 51
  • 6
0
votes
0 answers

How to get IMEI number programatically

I try to get the IMEI number of the iDevice, i already found out how, but it wont work, I am using this method https://github.com/cheetahray/IMEI , the UIDevice-IOKitExtensions thing, I get errors. Can someone please tell me how to use it? I got the…
David Gölzhäuser
  • 3,525
  • 8
  • 50
  • 98
0
votes
3 answers

Windows Phone 8 find out IMEI / device name + manufacturer

I need to find out on which Windows phone device my app is running. Is there a reliable way to find out the IMEI in WP8? If not, is the DeviceName and DeviceManufacturer field reliably filled in by most devices? The documentation says those fields…
Parzifal
  • 1,046
  • 3
  • 12
  • 25