no way to compare when less than two revisions

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.


Vorhergehende Überarbeitung
Letzte Überarbeitung
project:osmocombb [06.03.2015 21:36] laura
Zeile 1: Zeile 1:
 +====== osmocombb ======
 +See [[http://bb.osmocom.org|osmocomBB]] for more information
 +
 +Unterseiten zum Projekt:
 +
 +  * [[osmocomBBHowto|Howto get started]]
 +  * [[osmocomBBWTFistGSM|WTF ist GSM?]]
 +  * [[osmocomBBSMS|SMS-foo]]
 +
 +====== Roadmap ======
 +
 +===== Schritt 1 =====
 +
 +Ziel: Proof of concept, dass die Strategie funktioniert
 +
 +  * Logging-Hardware beschreiben
 +  * Testlogs aufzeichnen
 +  * Die beiden logs auswerten und Ortsinformationen extrahieren
 +  * Damit dann die Visualisierung aufbauen, Entwurf von bl0r: 
 +  
 +Schnelle und hässliche Google Maps Visualisierung: http://d.pr/RPUS , 120 Zeilen hässliches JavaScript, Daten mit JSON: http://d.pr/rKdO, Animation http://d.pr/kzWX, Code: http://d.pr/jFxU (Bilder nicht lizensiert!). Rotes Handy: http://dl.dropbox.com/u/8594528/icon_phone_rot.png
 +
 +Aus pcap / tcpdump direkt verwertbare Daten machen ohne Wireshark:
 +  CELLID=0
 +  INPUTFILE="c3kl.pcap"
 +  tcpdump -Attttr $INPUTFILE -w- | rawshark -d encap:EN10MB -t e -r- -F gsm_a.imsi -F frame.time_epoch -s | grep -E "1=\"[0-9\.]*\" 0=\"[0-9]*\" -" | sed -e "s/.*1=\"\([0-9]*\).*\" 0=\"\([0-9]*\)\" -/\2 { timestamp: \1, cell: $CELLID }, /g" > $CELLID.cell
 +Alle vorhandenen Daten zusammenführen und JSONfoo für die Visualisierung bauen:
 +  rm all.cell; for i in `ls *.cell`; do cat $i >> all.cell; done;
 +  echo "var mobiles = [" > data.js
 +  cat all.cell | perl -e 'while (<>) { chomp; ($x,@rest) = split; push @{$d{$x}}, "@rest ";}; for $key (sort { $a <=> $b } keys %d) { print "  { imsi: ", $key, ", points: [ ", @{$d{$key}}, "], marker: null },\n"}' >> data.js
 +  echo "];" >> data.js
 +  echo "mapData.mobiles = mobiles;" >> data.js
 +
 +===== Schritt 2 =====
 +
 +Ziel: Daten flächendeckend aufzeichnen
 +
 +  * Position von Basisstationen feststellen und geeignete Aufzeichnungsstandorte finden
 +  * Hinreichende Anzahl von Logstationen aufbauen und testen (diese müssen im Feld zuverlässig sein)
 +
 +
 +==== Metadaten ====
 +---- dataentry projekt ----
 +name      : Osmocombb
 +contact   : 
 +tags_tags : 
 +type      : projekt
 +subtype   : technisch
 +----
  
project/osmocombb.txt · Zuletzt geändert: 06.03.2015 21:53 von laura
Falls nicht anders bezeichnet, ist der Inhalt dieses Wikis unter der folgenden Lizenz veröffentlicht: CC Attribution-Noncommercial-Share Alike 4.0 International
Recent changes RSS feed Driven by DokuWiki