Hi,
I'm using the sylvain/burst_ind branch and ccch_scan.
this produces bursts files.
with which application can i view them? what is the format of these dat files?
i cannot open them with wireshark...
any hints?
kind regards
I want to try to alter the mobile app (in gsm48_rr.c) to listen to all tmsi's.
i changed the code and altered all if statements where in the else part was the log 'Not for us'
i'm hoping the phone will start following the conversation with the immediate assignment packages...
this way i can start logging the beginning of the encryption....
am i doing stupid things? or is there already an app that does this?
thanks
For example. (reply-to doesn't seem to be set correctly in the list, btw?)
Von Samsung Mobile gesendetg.roelant(a)telenet.be hat geschrieben:and than write the file with wireshark?
i'm already using the mobile app with succes.
Van: "Denis Simonet" <denis.simonet(a)bluewin.ch>
Aan: "g roelant" <g.roelant(a)telenet.be>
Verzonden: Zaterdag 8 december 2012 18:26:19
Onderwerp: AW: Re: beginners question
You probably want to use the -i switch with a layer23 app and capture gsmtap with Wireshark.
Best regards
Denis
Von Samsung Mobile gesendet
g.roelant(a)telenet.be hat geschrieben:
I want to write the raw data to a file.
is that possible with a command?
tune the gsm to a channel (for inst. 67)
and capture all raw data into a file.
----- Oorspronkelijk e-mail -----
Van: "Alexander Huemer" <alexander.huemer(a)xx.vu>
Aan: baseband-devel(a)lists.osmocom.org
Verzonden: Vrijdag 7 december 2012 22:54:46
Onderwerp: Re: beginners question
Hi g,
On Fri, Dec 07, 2012 at 10:09:06PM +0100, g.roelant(a)telenet.be wrote:
> How can i write the burst frames?
Your question is very unspecific and therefore unlikely to be answered.
You may want to rethink what exactly you want to know.
Then, rephrase your question.
Kind regards,
-Alexander Huemer
Hello.
Attached patch will bring a5/3 support to osmo_a5. The implementatin is done based on
spec, results are compared to reference implementation from standard and test vectors.
Unfortunately there are several deficiencies:
- it doesn't work with real phonein test network yet
- no tests included
- code is probably suboptimal here and there
Anyway I would love to read your comments. It would be especially great if someone
will manage to test it against real phones in actual network.
--
best regards,
Max, http://fairwaves.ru
While running Cell-Log application, I found that the main branch of OsmocomBB gives wrong value of MCC/MNC in hex (but correct one in decimal), but the Sylvain testing branch gives correct value.
In practice this means compiling Cell-Log in testing branch gives the name of the country, but the compiling it in main branch does not recognise the country. Other side-effects are unknown to me at present.
Tracing through the source leads to the "gsm48_decode_lai" as the culprit. The code seems correct in the testing branch, but has not been updated in the main. Moreover, the code is shifted out from gsm48.c to sysinfo.c in the testing branch.
Testing branch decodes MCC/MNC to hex:
*mcc = ((lai->digits[0] & 0x0f) << 8)
| (lai->digits[0] & 0xf0)
| (lai->digits[1] & 0x0f);
But main branch decodes MCC/MNC to decimal:
*mcc = (lai->digits[0] & 0x0f) * 100
+ (lai->digits[0] >> 4) * 10
+ (lai->digits[1] & 0x0f);
The comment in main branch states that "/* Attention: this function retunrs true integers, not hex! */". There is no such comment in the testing branch.
So is this a problem because Cell_Log wrongly uses gsm48_decode_lai? Or does gsm48_decode_lai need to be updated in the main branch?
B.
The last changes in the airprobe svn seem to be 17 months ago. I was
wondering whether airprobe is assumed to be stable, without need for
further development, has been superseded by a different toolkit or if it
has been abandonded.