Unlock Server  
Your online unlock store
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. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

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 07-24-2002, 02:49   #1 (permalink)
Freak Poster
 
Join Date: Jul 2002
Location: MAD
Age: 39
Posts: 483
Member: 13545
Status: Offline
Thanks: 0
Thanked 2 Times in 2 Posts
Program to read a sec. code...

Hello..

Can any one help me to develop a small program using BORLAND C++ BUILDER or C++ LANG. to read a security code from nokia 6120 TDMA for ex. ...?
P.S.: I'm a programmer ..
Thanks in advance ...

Abed
Nokia Monster

Last edited by MrHazeem; 07-24-2002 at 02:54.
  Reply With Quote
Old 12-08-2007, 03:46   #2 (permalink)
Freak Poster
 
Join Date: Jul 2003
Location: cebu
Posts: 151
Member: 35831
Status: Offline
Thanks: 0
Thanked 4 Times in 4 Posts
theres another easier way than making a small program to read sec codes..
  Reply With Quote
Old 12-09-2007, 13:36   #3 (permalink)
Freak Poster
 
Join Date: Nov 2004
Posts: 251
Member: 91951
Status: Offline
Thanks: 3
Thanked 17 Times in 15 Posts
Quote:
Originally Posted by etgo View Post
theres another easier way than making a small program to read sec codes..
please check the date of this thread
  Reply With Quote
Old 12-24-2007, 20:45   #4 (permalink)
Temporary banned !!
 
Join Date: Jul 2005
Location: Palestine
Age: 26
Posts: 572
Member: 165433
Status: Offline
Thanks: 38
Thanked 70 Times in 34 Posts
hahahahahahahha.....................;;;;;
  Reply With Quote
Old 12-26-2007, 21:33   #5 (permalink)
No Life Poster
 
thecult's Avatar
 
Join Date: Feb 2002
Location: burning phones
Posts: 1,692
Member: 9700
Status: Offline
Thanks: 1
Thanked 58 Times in 38 Posts
it's curious, this was posted in year 2002, and now (2007) Nokia 6120 is an actual phone again
  Reply With Quote
Old 01-09-2008, 04:46   #6 (permalink)
Freak Poster
 
CrossX's Avatar
 
Join Date: Jun 2004
Location: KUBA
Age: 35
Posts: 170
Member: 69330
Status: Offline
Thanks: 68
Thanked 125 Times in 65 Posts
hey men

If dont have tdma or cdma box Use diego soft itīs free and it could read spc, sec. code, esn etc, etc.
good luk
  Reply With Quote
Old 01-09-2008, 20:50   #7 (permalink)
No Life Poster
 
Dave.W's Avatar
 
Join Date: Nov 2001
Location: England
Age: 30
Posts: 2,844
Member: 7653
Status: Offline
Thanks: 334
Thanked 830 Times in 300 Posts
did you see the date 2002???

this is talking about Nokia 6120, the phone with an antenna! DCT3! old school, you know?!
  Reply With Quote
Old 01-10-2008, 14:31   #8 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 37
Posts: 415
Member: 100920
Status: Offline
Thanks: 69
Thanked 21 Times in 13 Posts
I have the source ready 4 for read/write sec.code of msm qualcomm like LG U880/900/310/...
regardz && sorry4OT

Ack***
---
  Reply With Quote
Old 01-14-2008, 02:30   #9 (permalink)
Insane Poster
 
Join Date: Feb 2007
Location: Right beside you
Posts: 74
Member: 453484
Status: Offline
Thanks: 5
Thanked 3 Times in 3 Posts
share it

Quote:
Originally Posted by ack*** View Post
I have the source ready 4 for read/write sec.code of msm qualcomm like LG U880/900/310/...
regardz && sorry4OT

Ack***
---
get 'em uploaded so many mates avail on it
  Reply With Quote
Old 01-17-2008, 00:56   #10 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 37
Posts: 415
Member: 100920
Status: Offline
Thanks: 69
Thanked 21 Times in 13 Posts
Talking

Quote:
Originally Posted by MobSol View Post
get 'em uploaded so many mates avail on it
ok
Code:
procedure TFormMain.Btn_ReadLockClick(Sender: TObject);
var pck : t_intvect;
i : integer;
begin
if not(FormMain.InitializeCOM) then exit;
setlength(pck,133);
pck[0] := $26;
pck[1] := $52;
for i:=2 to 133 do
pck[i] := $00;
DO_CMD(pck,True,True,False);
pck := ReadCMD;
if pck[0] = $13
then
else EdtUSER_CODE.Text := Char(pck[3])+Char(pck[4])+Char(pck[5])+Char(pck[6]);
end;
Code:
procedure TFormMain.Btn_WriteLockClick(Sender: TObject);
var pck : t_intvect;
i : integer;
begin
if not(FormMain.InitializeCOM) then exit;
setlength(pck,133);
pck[0] := $27;
pck[1] := $52;
for i:=2 to 133 do
pck[i] := $00;
pck[3] := Integer(EdtUSER_CODE.Text[1]);
pck[4] := Integer(EdtUSER_CODE.Text[2]);
pck[5] := Integer(EdtUSER_CODE.Text[3]);
pck[6] := Integer(EdtUSER_CODE.Text[4]);
DO_CMD(pck,True,True,False);
pck := ReadCMD;
end;
  Reply With Quote
Old 01-17-2008, 04:02   #11 (permalink)
No Life Poster
 
Join Date: Mar 2001
Location: ..still in idle mode...
Posts: 1,007
Member: 3900
Status: Offline
Thanks: 14
Thanked 31 Times in 28 Posts


2002 and DO_CMD(pck,True,True,False)....
  Reply With Quote
Old 01-17-2008, 10:05   #12 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 37
Posts: 415
Member: 100920
Status: Offline
Thanks: 69
Thanked 21 Times in 13 Posts
DO_CMD(arg1,arg2,arg3,arg4)

send arg1 to device

arg1 = array of byte
arg2 = add 2 byte(z) CRC ? y or n
arg3 = add 1 byte EOq ($7E) ? y or n
arg4 = read after write ? y or n
---
  Reply With Quote
Old 01-17-2008, 18:00   #13 (permalink)
Product Supporter
 
Join Date: Feb 2007
Posts: 2,728
Member: 445973
Status: Offline
Thanks: 2,232
Thanked 1,607 Times in 678 Posts
ack***: please stop post sources, lets other ppl make money !
  Reply With Quote
Old 01-18-2008, 07:07   #14 (permalink)
Insane Poster
 
Join Date: Feb 2007
Location: Right beside you
Posts: 74
Member: 453484
Status: Offline
Thanks: 5
Thanked 3 Times in 3 Posts
Ack***,

FormMain.InitializeCOM (FormMain) - this part is missing from the program you have posted, if you have it, pls upload it too so we may start playing with it

BR
  Reply With Quote
Old 01-19-2008, 08:40   #15 (permalink)
Insane Poster
 
Join Date: Aug 2005
Location: I will Show U With My Heart...
Age: 41
Posts: 95
Member: 167947
Status: Offline
Thanks: 4
Thanked 45 Times in 24 Posts
wow verry surprise
yes sir we need it
  Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

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
Which program to read the flash of CX65?? gianlukko Siemens-Benq RingTones and WallPapers 9 07-04-2005 16:21
Wot is best program to read a orange sim JPM646 Sim Cloning and Scaning 2 03-15-2003 17:11
What program to read eeprom V50 at presence EMMIBOX ??? dms3000 Old Legacy Motorola (EMMI) 0 07-24-2002 12:11
Problems reading 8310 sec. code using Neelix CompleteFone Nokia Digital Core Technology 4 ( DCT-4 ) 5 02-02-2002 14:39
Need program to read & write part of flash be4 (not full flash) maks Alcatel & TCL Old Models 2 11-16-2001 12:26


All times are GMT +1. The time now is 10:11.



Powered by Searchlight © 2013 Axivo Inc.
vBulletin Optimisation provided by vB Optimise v2.5.2 (Lite) - vBulletin Mods & Addons Copyright © 2013 DragonByte Technologies Ltd. ()
- GSM Hosting Ltd. - 1999-2013 -
Page generated in 0.51804 seconds with 8 queries

SEO by vBSEO