Project

General

Profile

CatcherCatcher » History » Version 2

Linus, 12/23/2013 05:27 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
* Source Code TODO
14 2 Linus
* "Live System":https://opensource.srlabs.de/projects/mobile-network-assessment-tools/wiki/GSMmap-live
15 1 Linus
16
h3. Instructions
17
18
# Download TODO
19
# unpack TODO
20
# run: TODO call
21
* TODO command line parameters
22
23
h3. Mailing list
24
25
A public mailing list discussion is "here":https://lists.srlabs.de/cgi-bin/mailman/listinfo/catchercatcher
26
27
28
h1. OsmocomBB software
29
30
Currently, the IMSI Catcher detector is available only for the OsmocomBB platform.
31
If you'd like to test it, you can find all the needed information in our [[Tutorial]]
32
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.
33
34
h1. Implementation on other platforms
35
36
While Osmocom provides access to most detailed GSM data, other platforms could, too, provide useful information for detecting IMSI catcher attacks.
37
38
Folks with insights into phone programming APIs, please help fill out this list:
39
40
|                           |\4.*Available on*                      |
41
| *Evidence*                | Blackberry  | [[Android]] | iOS | Symbian |
42
| Cipher indication         | |[1] *#32489# // OEM_SM_TYPE_SUB_CIPHERING_PROTECTION_ENTER | | |
43
| LAC                       | |[1a] getLac() | | |
44
| Cell ID                   | |[1a] getCid() | | |
45
| Retransmission counters   | | | | |
46
| TMSI                      | | | | |
47
| Send power                | |[1] LISTEN_SIGNAL_STRENGTHS ? | | |
48
| Silent call               | |[1]| | |
49
| Silent SMS                | |[1]|[2]| |
50
| Remote install            | |[1c] // INSTALL_ASSET| | |
51
| Network Roaming           | |[1b] getRoaming()| | |
52
|                 | | | | |
53
54
[1] TODO: Reference / API call needed
55
[1a]: android.telephony.gsm.GsmCellLocation
56
[1b]: android.telephony.ServiceState
57
[1c]: GTalkService
58
59
[2] TODO: Reference / API call needed
60
61
Preliminary information for developing an Android based Catcher can be found on the [[Android]] page. 
62
63
h1. IMSI catcher detection
64
65
66
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."
67
68
| #   | *Flag* | *Evidence* | *Implementable in Osmocom* |
69
| Setup: |
70
| S1  | R | No encryption after using encryption with the same operator before | done |
71
| S2  | Y | Cipher mode complete message is sent more than twice               | wip  |
72
| S3  | R | … more than four times                                             | wip  |
73
| S4  | Y | IMEI not requested in Cipher Mode Complete message                 | done |
74
| S5  | Y | Cell is not advertising any neighbor cells                         | todo |
75
| S6  | Y | Cell reselection offset > 80db                                     | todo |
76
| Location updating (for information gathering, MITM): |
77
| L1  | Y | The LAC of a base station changes                                  | done |
78
| L2  | R | The LAC changes more than once                                     | done |
79
| L3  | Y | The LAC differs from all neighboring cells                         | wip  |
80
| L4  | Y | The network queries the phones IMEI during location update         | done |
81
| L5  | Y | The registration timer is set to a value < 10 minutes              | wip  |
82
| L6  | Y | The "IMSI attach procedure" flag is set                            | wip  |
83
| (when locating a victim): |
84
| L7  | Y | Receive a silent text message                                      | done |
85
| L8  | R | You are paged, but do not enter any transaction                    | done |
86
| L9  | R | Being assigned a traffic channel but not entering call control state/receiving a text message for 2 seconds | wip |
87
| L10 | B | ... 10 seconds                                                     | wip  |
88
| L11 | Y | You do not receive a call setup message while already being on a traffic channel for 2 seconds | done |
89
| L12 | R | ... 10 seconds                                                     | done |
90
| L13 | Y | Your phone sends at the highest possible power                     | wip  |