summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/settings.py
diff options
context:
space:
mode:
authorTom2012-05-11 17:12:48 +0200
committerTom2012-05-11 17:12:48 +0200
commit9bfa449c9998c94b9fde3bc0e0dcc7bd6e97566d (patch)
tree7ad46e21541572397a220f415ca10af29f433304 /Src/PyCatcher/src/settings.py
parentfinished few experiments with documentation (diff)
downloadimsi-catcher-detection-9bfa449c9998c94b9fde3bc0e0dcc7bd6e97566d.tar.gz
imsi-catcher-detection-9bfa449c9998c94b9fde3bc0e0dcc7bd6e97566d.tar.xz
imsi-catcher-detection-9bfa449c9998c94b9fde3bc0e0dcc7bd6e97566d.zip
finished experiments seciton apart from tables where data is needed and appendix
Diffstat (limited to 'Src/PyCatcher/src/settings.py')
-rw-r--r--Src/PyCatcher/src/settings.py29
1 files changed, 16 insertions, 13 deletions
diff --git a/Src/PyCatcher/src/settings.py b/Src/PyCatcher/src/settings.py
index 11084dc..831fac6 100644
--- a/Src/PyCatcher/src/settings.py
+++ b/Src/PyCatcher/src/settings.py
@@ -1,6 +1,6 @@
#Core Configuration ------------------------------------------------------------------------------------------
-PyCatcher_settings = {'debug' : False,
+PyCatcher_settings = {'debug' : True,
}
Device_settings = { 'mobile_device' : '/dev/ttyUSB0',
@@ -13,7 +13,8 @@ Osmocon_lib = '/home/tom/imsi-catcher-detection/Src/osmolib/src'
Commands = {'osmocon_command' : [Osmocon_lib + '/host/osmocon/osmocon',
'-p', Device_settings['mobile_device'],
'-m', Device_settings['xor_type'],
- Osmocon_lib + '/target/firmware/board/' + Device_settings['firmware'] + '/layer1.compalram.bin'],
+ Osmocon_lib + '/target/firmware/board/' + Device_settings['firmware']
+ + '/layer1.compalram.bin'],
'scan_command' : [Osmocon_lib + '/host/layer23/src/misc/catcher'],
}
@@ -30,24 +31,26 @@ Provider_Country_list = {
}
LAC_mapping = {
- 'DB Systel GSM-R': [0,999999],
- 'T-Mobile' : [21000,22000],
- 'O2' : [0,99999],
- 'Vodafone' : [0,100000],
- 'E-Plus' : [0,100000]
+ 'DB Systel GSM-R': [0],
+ 'T-Mobile' : [21014,21015],
+ 'O2' : [50945],
+ 'Vodafone' : [793],
+ 'E-Plus' : [138,588]
}
ARFCN_mapping = {
- 'DB Systel GSM-R': [0,9999],
- 'T-Mobile' : [0,9999],
- 'O2' : [0,9999],
- 'Vodafone' : [0,9999],
- 'E-Plus' : [0,9999]
+ 'DB Systel GSM-R': [(0,1)],
+ 'T-Mobile' : [(13,39),(81, 102),(122,124),(587,611)],
+ 'O2' : [(0,0),(1000,1023),(637,723)],
+ 'Vodafone' : [(1,12),(50,80),(103,121),(725,751)],
+ 'E-Plus' : [(975,999),(777,863)]
}
LAC_threshold = 0
-RX_threshold = 0.05
+DB_RX_threshold = 0.05
+
+CH_RX_threshold = 0.02
#Database Configuration ----------------------------------------------------------------------------------------