GSM Shop GSM Shop
GSM-Forum  

Welcome to the GSM-Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features.
Only registered members may post questions, contact other members or search our database of over 8 million posts.

Registration is fast, simple and absolutely free so please - Click to REGISTER!

If you have any problems with the registration process or your account login, please contact contact us .

Go Back   GSM-Forum > Other Gsm/Mobile Related Forums > GSM Programming & Reverse Engineering


GSM Programming & Reverse Engineering Here you can post all Kind of GSM Programming and Reverse Engineering tools and Secrets.

Reply
 
LinkBack Thread Tools Display Modes
Old 05-30-2010, 14:49   #1 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
which usb comand to read nokia SL3 security code


does any one knows how to read SL3 fones secrity code..
commnad i used for SL1 and SL2 didnot works ..
any idea..
  Reply With Quote
The Following User Says Thank You to khim_khim For This Useful Post:
Old 06-03-2010, 06:36   #2 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
some more ..
in n97 etc
pm field 308 sub field 5 didnot exist ..
thats why cant read secrutiy code..
i have made search over all pm fields but couldnot found hint..
any idea masters..
  Reply With Quote
Old 06-04-2010, 09:12   #3 (permalink)
selective member algo bruteforce SL3
 
Mr.Ultimate's Avatar
 
Join Date: Dec 2007
Location: IRELAND
Posts: 985
Member: 665113
Status: Offline
Sonork: 100.1583029
Thanks Meter: 1,165
if you had N97 on hand without security code and just set your own security code on it, something simple like 98765 then you should look for something like 39383736353 or any value=x x9x8x7x6x5x and then you would find it.

Other easier way is if you take that N97, perform full fbus flash and full factory set after flash the security code would be reset or erased, read all pm values after flash before turn phone on, then read all pm values after phone is on for first time then again , create your own security code and read full pm again and compare all pm values betwen files.

Good luck
  Reply With Quote
Old 06-05-2010, 14:04   #4 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
thnks for ur answer ..
but couldnot found in old fashion ...i think code is encrypted then stored.????
corect me if am wrong.

  Reply With Quote
Old 06-05-2010, 14:34   #5 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
another one with 12345 and 22336
  Reply With Quote
Old 06-05-2010, 20:46   #6 (permalink)
No Life Poster
 
bananin's Avatar
 
Join Date: Jun 2005
Location: Bogotá Colombia
Age: 43
Posts: 1,390
Member: 150844
Status: Offline
Thanks Meter: 309
Pm file are normal text file, not hex file.
Use text mode or notepad for search code.
  Reply With Quote
The Following User Says Thank You to bananin For This Useful Post:
Old 06-06-2010, 01:59   #7 (permalink)
No Life Poster
 
Dzirt's Avatar
 
Join Date: Nov 2009
Location: Syberia
Age: 34
Posts: 12,508
Member: 1157320
Status: Offline
Thanks Meter: 6,192
SL3 have special command? Funny.
Look on 6303 - SL3, but have code on same field.
Comand for reading? It is just read field and nothing more.
All new SmartPhones have decrypted or hidden field for code.
  Reply With Quote
Old 06-06-2010, 08:46   #8 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
Quote:
Originally Posted by bananin View Post
Pm file are normal text file, not hex file.
Use text mode or notepad for search code.
are u sure they are text files...
all entries there are in hex not simple text ..
  Reply With Quote
Old 06-06-2010, 08:51   #9 (permalink)
Junior Member
 
Join Date: May 2010
Posts: 17
Member: 1314304
Status: Offline
Thanks Meter: 1
Quote:
Originally Posted by Dzirt View Post
SL3 have special command? Funny.
Look on 6303 - SL3, but have code on same field.
Comand for reading? It is just read field and nothing more.
All new SmartPhones have decrypted or hidden field for code.
yes this i know not all sl3 but for all smart fones i must say...
i know for 6303 and 6700 etc they are same bec they have 308 sub field 5 present...
how to

Code:
 
All new SmartPhones have decrypted or hidden field for code
am keen for this ...
how to get this one.
  Reply With Quote
Old 06-06-2010, 11:28   #10 (permalink)
No Life Poster
 
Dzirt's Avatar
 
Join Date: Nov 2009
Location: Syberia
Age: 34
Posts: 12,508
Member: 1157320
Status: Offline
Thanks Meter: 6,192
If someone have that info - off course not share.
  Reply With Quote
Old 06-07-2010, 10:31   #11 (permalink)
Freak Poster
 
balanel's Avatar
 
Join Date: Jan 2002
Location: Bucharest Romania
Age: 40
Posts: 246
Member: 8530
Status: Offline
Sonork: 100.1601224
Thanks Meter: 29
hi

via usb is
1B0010230012000D0004013400050000000000000000000A
and the answer from phone is

1B100023001E0D340005000100000000000000180000000A31 3233343500000000000000

sec code is
3132333435=12345

1B100023001E0D340005000100000000000000180000000A39 3939393900000000000000

sec code is

3939393939=99999
  Reply With Quote
The Following 4 Users Say Thank You to balanel For This Useful Post:
Show/Hide list of the thanked
Old 06-07-2010, 12:25   #12 (permalink)
No Life Poster
 
Dave.W's Avatar
 
Join Date: Nov 2001
Location: England
Age: 41
Posts: 2,821
Member: 7653
Status: Offline
Thanks Meter: 823
About the 3132333435 = 12345

The security code (say 12345), this is in character format.

If you find the ascii code of each digit you get like:
0 = 48
1 = 49
2 = 50
4 = 51
etc etc

You can look this up in ascii - char tables online or convert in code.

Now, bus transmission needs to be in hexadecimal form, so we must find hex equivalent of the ascii code:

48 becomes 0x30
49 becomes 0x31
50 becomes 0x32
etc etc

If you can convert dec to hex then this is easy (in software its very simple).

Just to say its nothing "magical" just fun*****tal computer stuff

The following site hopefully explains all:

Ascii Table - ASCII character codes and html, octal, hex and decimal chart conversion
  Reply With Quote
The Following User Says Thank You to Dave.W For This Useful Post:
Old 06-07-2010, 13:06   #13 (permalink)
No Life Poster
 
angel25dz's Avatar
 
Join Date: Jul 2006
Location: ..::DZ-25::..
Posts: 529
Member: 315181
Status: Offline
Sonork: 100.1593455
Thanks Meter: 301
Quote:
Originally Posted by balanel View Post
hi

via usb is
1B0010230012000D0004013400050000000000000000000A
and the answer from phone is

1B100023001E0D340005000100000000000000180000000A31 3233343500000000000000

sec code is
3132333435=12345

1B100023001E0D340005000100000000000000180000000A39 3939393900000000000000

sec code is

3939393939=99999
this command is not for SL3 phones, work only with the others BB5 phones

./wbr
  Reply With Quote
Old 06-07-2010, 14:09   #14 (permalink)
Freak Poster
 
balanel's Avatar
 
Join Date: Jan 2002
Location: Bucharest Romania
Age: 40
Posts: 246
Member: 8530
Status: Offline
Sonork: 100.1601224
Thanks Meter: 29
with 6700c works and is sl3
  Reply With Quote
Old 06-07-2010, 14:40   #15 (permalink)
No Life Poster
 
angel25dz's Avatar
 
Join Date: Jul 2006
Location: ..::DZ-25::..
Posts: 529
Member: 315181
Status: Offline
Sonork: 100.1593455
Thanks Meter: 301
don't work with N97 & N86....

after comparing 02 PM's files with 02 different user code, I think the security code is stored in field 308 subfield 1, but I don't know how it's stored !
  Reply With Quote
The Following User Says Thank You to angel25dz For This Useful Post:
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Seeking for flash nokia 5110 old version (3 version) can exchange for new Tomas Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 8 10-14-2017 19:29
New Nokia Software!!!!!!! Jefferson Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 52 12-30-2016 08:17
Need software upgrade for Nokia 5110 ptkrf Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 30 02-24-2016 10:21

 



All times are GMT +1. The time now is 03:05.



Powered by Searchlight © 2024 Axivo Inc.
vBulletin Optimisation provided by vB Optimise (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
- GSM Hosting Ltd. - 1999-2023 -
Page generated in 0.25272 seconds with 10 queries

SEO by vBSEO