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 07-24-2002, 02:49   #1 (permalink)
Freak Poster
 
Join Date: Jul 2002
Location: MAD
Age: 50
Posts: 483
Member: 13545
Status: Offline
Thanks Meter: 2
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 *******

Last edited by MrHazeem; 07-24-2002 at 02:54.
  Reply With Quote
Old 12-08-2007, 04:46   #2 (permalink)
Freak Poster
 
Join Date: Jul 2003
Location: cebu
Posts: 146
Member: 35831
Status: Offline
Thanks Meter: 4
theres another easier way than making a small program to read sec codes..
  Reply With Quote
Old 12-09-2007, 14:36   #3 (permalink)
Freak Poster
 
Join Date: Nov 2004
Posts: 250
Member: 91951
Status: Offline
Thanks Meter: 18
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, 21:45   #4 (permalink)
Temporary banned !!
 
Join Date: Jul 2005
Location: Palestine
Age: 37
Posts: 571
Member: 165433
Status: Offline
Thanks Meter: 72
hahahahahahahha.....................;;;;;
  Reply With Quote
Old 12-26-2007, 22:33   #5 (permalink)
No Life Poster
 
thecult's Avatar
 
Join Date: Feb 2002
Location: burning phones
Posts: 1,704
Member: 9700
Status: Offline
Thanks Meter: 62
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, 05:46   #6 (permalink)
Freak Poster
 
CrossX's Avatar
 
Join Date: Jun 2004
Location: CUBA
Age: 45
Posts: 170
Member: 69330
Status: Offline
Thanks Meter: 125
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, 21:50   #7 (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
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, 15:31   #8 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
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, 03:30   #9 (permalink)
Insane Poster
 
Join Date: Feb 2007
Location: Right beside you
Posts: 84
Member: 453484
Status: Offline
Thanks Meter: 5
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, 01:56   #10 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
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, 05:02   #11 (permalink)
No Life Poster
 
Join Date: Mar 2001
Location: ..still in idle mode...
Posts: 989
Member: 3900
Status: Offline
Thanks Meter: 31


2002 and DO_CMD(pck,True,True,False)....
  Reply With Quote
Old 01-17-2008, 11:05   #12 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
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, 19:00   #13 (permalink)
Product Supporter
 
andrew_tm's Avatar
 
Join Date: Feb 2007
Location: Europe
Posts: 8,010
Member: 445973
Status: Offline
Thanks Meter: 3,489
ack***: please stop post sources, lets other ppl make money !
  Reply With Quote
Old 01-18-2008, 08:07   #14 (permalink)
Insane Poster
 
Join Date: Feb 2007
Location: Right beside you
Posts: 84
Member: 453484
Status: Offline
Thanks Meter: 5
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, 09:40   #15 (permalink)
Insane Poster
 
Join Date: Aug 2005
Location: I will Show U With My Heart...
Age: 52
Posts: 95
Member: 167947
Status: Offline
Thanks Meter: 45
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 18:11
What program to read eeprom V50 at presence EMMIBOX ??? dms3000 Motorola Old Legacy (EMMI) 0 07-24-2002 12:11
Problems reading 8310 sec. code using Neelix NUGSM Nokia Digital Core Technology 4 ( DCT-4 ) 5 02-02-2002 15:39
Need program to read & write part of flash be4 (not full flash) maks Alcatel & TCL Old Models 2 11-16-2001 13:26

 



All times are GMT +1. The time now is 12:57.



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.23544 seconds with 9 queries

SEO by vBSEO