Project

General

Profile

CatcherCatcher » History » Version 7

Linus, 12/23/2013 05:55 PM

1 1 Linus
h1. CatcherCatcher
2
3
The CatcherCatcher tool detects mobile network irregularities hinting at fake base station activity.
4
5
h3. Requirements
6
7
* Osmocom phone
8
* Osmocom cable
9
* Linux computer
10
11
h3. Download:
12
13 7 Linus
* We recoomend using our "Live System":https://opensource.srlabs.de/projects/mobile-network-assessment-tools/wiki/GSMmap-live
14
* Source Code is available in the OSMOCOM repository. See [[Tutorial]] for manual installation instructions.
15 3 Linus
<pre>git clone git://git.osmocom.org/osmocom-bb.git
16 2 Linus
git checkout luca/catcher</pre>
17 7 Linus
18 1 Linus
19 4 Linus
20 1 Linus
h3. Instructions
21
22 4 Linus
# Download "GSM Map Live System":https://opensource.srlabs.de/projects/mobile-network-assessment-tools/wiki/GSMmap-live
23
# "Install Image to Stick":https://opensource.srlabs.de/projects/mobile-network-assessment-tools/wiki/GSMmap-live#Instructions
24
# run: From the main menu, choose "Run a test -> FakeBTS"
25 1 Linus
26
h3. Mailing list
27
28
A public mailing list discussion is "here":https://lists.srlabs.de/cgi-bin/mailman/listinfo/catchercatcher
29
30 4 Linus
h2. Background & Development information
31 1 Linus
32 4 Linus
h3. OsmocomBB software
33 1 Linus
34
Currently, the IMSI Catcher detector is available only for the OsmocomBB platform.
35
If you'd like to test it, you can find all the needed information in our [[Tutorial]]
36
Please upload improvements as patches to this site or post to the "mailing list":http://lists.srlabs.de/cgi-bin/mailman/listinfo/catchercatcher until a Git is set up.
37
38 4 Linus
h3. Implementation on other platforms
39 1 Linus
40
While Osmocom provides access to most detailed GSM data, other platforms could, too, provide useful information for detecting IMSI catcher attacks.
41
42
Folks with insights into phone programming APIs, please help fill out this list:
43
44
|                           |\4.*Available on*                      |
45
| *Evidence*                | Blackberry  | [[Android]] | iOS | Symbian |
46
| Cipher indication         | |[1] *#32489# // OEM_SM_TYPE_SUB_CIPHERING_PROTECTION_ENTER | | |
47
| LAC                       | |[1a] getLac() | | |
48
| Cell ID                   | |[1a] getCid() | | |
49
| Retransmission counters   | | | | |
50
| TMSI                      | | | | |
51
| Send power                | |[1] LISTEN_SIGNAL_STRENGTHS ? | | |
52
| Silent call               | |[1]| | |
53
| Silent SMS                | |[1]|[2]| |
54
| Remote install            | |[1c] // INSTALL_ASSET| | |
55
| Network Roaming           | |[1b] getRoaming()| | |
56
|                 | | | | |
57
58
[1] TODO: Reference / API call needed
59
[1a]: android.telephony.gsm.GsmCellLocation
60
[1b]: android.telephony.ServiceState
61
[1c]: GTalkService
62
63
[2] TODO: Reference / API call needed
64
65
Preliminary information for developing an Android based Catcher can be found on the [[Android]] page. 
66
67 5 Linus
h3. IMSI catcher detection
68 1 Linus
69
70
For IMSI catchers to achieve their goals they will need to show behavior different from normal base stations. We distinguish between yellow, red, and black flags. Yellow flag are an indication that you might have been caught; red flags are a very strong indication; and black flags tell you: "You are being tracked down; throw away your phone and run."
71
72
| #   | *Flag* | *Evidence* | *Implementable in Osmocom* |
73
| Setup: |
74
| S1  | R | No encryption after using encryption with the same operator before | done |
75
| S2  | Y | Cipher mode complete message is sent more than twice               | wip  |
76
| S3  | R | … more than four times                                             | wip  |
77
| S4  | Y | IMEI not requested in Cipher Mode Complete message                 | done |
78
| S5  | Y | Cell is not advertising any neighbor cells                         | todo |
79
| S6  | Y | Cell reselection offset > 80db                                     | todo |
80
| Location updating (for information gathering, MITM): |
81
| L1  | Y | The LAC of a base station changes                                  | done |
82
| L2  | R | The LAC changes more than once                                     | done |
83
| L3  | Y | The LAC differs from all neighboring cells                         | wip  |
84
| L4  | Y | The network queries the phones IMEI during location update         | done |
85
| L5  | Y | The registration timer is set to a value < 10 minutes              | wip  |
86
| L6  | Y | The "IMSI attach procedure" flag is set                            | wip  |
87
| (when locating a victim): |
88
| L7  | Y | Receive a silent text message                                      | done |
89
| L8  | R | You are paged, but do not enter any transaction                    | done |
90
| L9  | R | Being assigned a traffic channel but not entering call control state/receiving a text message for 2 seconds | wip |
91
| L10 | B | ... 10 seconds                                                     | wip  |
92
| L11 | Y | You do not receive a call setup message while already being on a traffic channel for 2 seconds | done |
93
| L12 | R | ... 10 seconds                                                     | done |
94
| L13 | Y | Your phone sends at the highest possible power                     | wip  |