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-16-2010, 14:20   #31 (permalink)
Freak Poster
 
Join Date: Mar 2009
Posts: 234
Member: 984268
Status: Offline
Thanks Meter: 150

Quote:
Originally Posted by dheasy_mns View Post
any wrong bro?? bcozz can not open in my delphi 7
edit Project1.dpr
Unit1 in '..\BB_Logger\Unit1.pas' to the dir. where the source is placed
  Reply With Quote
The Following User Says Thank You to mustipusti For This Useful Post:
Old 05-17-2010, 01:22   #32 (permalink)
Insane Poster
 
Join Date: Dec 2005
Location: BBM:282c2222 www.indo-gsm.com
Posts: 90
Member: 209767
Status: Offline
Thanks Meter: 112
big thanks to Y3KT..

finish learning imei+mep...
now work in delphi..

br.
dodo
  Reply With Quote
The Following 2 Users Say Thank You to dheasy_mns For This Useful Post:
Old 07-24-2010, 03:47   #33 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 485
Member: 3179
Status: Offline
Thanks Meter: 142
Quote:
Originally Posted by y3kt View Post
Hi, complete source is HERE, it is all you need, luck
cant open project1 need help
  Reply With Quote
Old 07-27-2010, 11:22   #34 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 485
Member: 3179
Status: Offline
Thanks Meter: 142
NEED HELP HOW TO USE IReturnUnlockCode,I CANT GET code

regards
  Reply With Quote
Old 07-27-2010, 11:41   #35 (permalink)
Freak Poster
 
Join Date: Mar 2009
Posts: 234
Member: 984268
Status: Offline
Thanks Meter: 150
Quote:
Originally Posted by mardi View Post
NEED HELP HOW TO USE IReturnUnlockCode,I CANT GET code

regards
heheheheheh your joking right? IReturnUnlockCode where did you found that?
  Reply With Quote
Old 07-27-2010, 18:05   #36 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 485
Member: 3179
Status: Offline
Thanks Meter: 142
Quote:
Originally Posted by mustipusti View Post
heheheheheh your joking right? IReturnUnlockCode where did you found that?
Get from rimradiocom.dll
i use this code
Code:
procedure TForm1.btnReadInfoClick(Sender: TObject);
var
  i: Cardinal;
  SwPartList: IGetSwPartList;
  PartList: PSafeArray;
  RRO: *****adioObj;
  Connection: IConnection;
  IMEI: IReadIMEI;
  StrImei: WideString;
  pl: WideString;
  BBPIN: IReadBBPIN;
  edtClipBoard: TEdit;
  BSN: IReadBSN;
  StrBsn: WideString;
begin
  // Create RIM Radio Object
  RRO := *****adioObj.Create(Form1);
  // Query different interfaces to see if are supported
  // if OK then read desired information
  if RRO.DefaultInterface.QueryInterface(IID_IConnection, Connection) = S_OK then
  begin
    // Connect to phone
    Connection.Connect('USB', 300, 19200, '');
    // Read BBPIN
    if (Connection.IsConnected = 1) and (RRO.DefaultInterface.QueryInterface(IID_IReadBBPIN, BBPIN) = S_OK) then
    begin
        ListBox1.Items.Add('BBPIN: ' + IntToHex(BBPIN.Execute,6));
    end;
    // IMEI
    if (Connection.IsConnected = 1) and (RRO.DefaultInterface.QueryInterface(IID_IReadIMEI, IMEI) = S_OK) then
    begin
      IMEI.Execute(StrImei);
      edtIMEI.Text := StringReplace(StrImei, '/', '', [rfReplaceAll]);
    end;
    // BSN
    if (Connection.IsConnected = 1) and (RRO.DefaultInterface.QueryInterface(IID_IReadBSN, BSN) = S_OK) then
    begin
      BSN.Execute(StrBsn);
      edtBSN.Text := StringReplace(StrBsn, '/', '', [rfReplaceAll]);
    end;
    // PartList
    if (Connection.IsConnected = 1) and (RRO.DefaultInterface.QueryInterface(IID_IGetSwPartList, SwPartList) = S_OK) then
    begin
      SwPartList.Execute(PartList);
      for i:=0 to PartList.rgsabound[0].cElements-1 do
      begin
         SafeArrayGetElement(PartList, i, pl);
         // From all partlist info just show MEP
         if Pos('MEP', pl) > 0  then
           edtMEP.Text := pl;
      end;
    end;
    // Create a TEdit to put IMEI + MEP + BSN + BBPIN together and paste it to clipboard
    edtClipBoard := TEdit.Create(Form1);
    edtClipBoard.Parent := Form1;
    edtClipBoard.Text := 'IMEI:' + edtIMEI.Text + ' MEP:' + edtMEP.Text + ' BSN: ' + edtBSN.text;
    edtClipBoard.SelectAll;
    edtClipBoard.CopyToClipboard;
    edtClipBoard.Free;
    // Finish then disconnect interface
    Connection.Disconnect;
  end;
  // Release Rim Radio Object
  RRO.Free;
end;

end.
and get this logger http://forum.gsmhosting.com/vbb/atta...9&d=1280177026

some body know how use this
IID_IReturnUnlockCode TGUID = '{FD2BA101-FA4E-40DF-8C37-95BCF2DBB122}';
IReturnUnlockCode = interface;
Interface IReturnUnlockCode
ReturnUnlockCode = interface(IDispatch)
procedure Execute(category Byte; out outUnlockCode WideString); safecall;
end;


regards
  Reply With Quote
Old 07-27-2010, 18:47   #37 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 485
Member: 3179
Status: Offline
Thanks Meter: 142
This for test

regards
Attached Files
File Type: rar BBreader.rar (172.2 KB, 2522 views)
  Reply With Quote
The Following User Says Thank You to mardi For This Useful Post:
Old 10-12-2010, 03:03   #38 (permalink)
No Life Poster
 
karabey's Avatar
 
Join Date: Nov 2003
Age: 42
Posts: 1,055
Member: 45183
Status: Offline
Thanks Meter: 474
Can somebody do this in Java??

Contact me pls!
  Reply With Quote
Old 10-12-2010, 12:49   #39 (permalink)
Junior Member
 
Join Date: Dec 2004
Age: 53
Posts: 1
Member: 99173
Status: Offline
Thanks Meter: 0
Imei: 980042000432936
mep: Mep-07723-005
  Reply With Quote
Old 10-13-2010, 14:49   #40 (permalink)
Cheater -Don't Deal with him-
 
Join Date: Oct 2004
Age: 45
Posts: 338
Member: 85712
Status: Offline
Thanks Meter: 131
Hi y3kt;

Where can I find these Librarys ?
BlackBerry Dev1.0 Type Library and RIMRadioCOM 1.3 Type Library

I tried for google, but I did not had sucess
  Reply With Quote
Old 10-21-2010, 17:19   #41 (permalink)
No Life Poster
 
y3kt's Avatar
 
Join Date: Feb 2006
Location: Club-Berry
Posts: 1,938
Member: 238127
Status: Offline
Sonork: 100.1574867
Thanks Meter: 3,526
Donate money to this user
To have those libraries you need to register RIMRadioCom.dll, it comes with old MFI MultiLoader in bin folder, luck
  Reply With Quote
Old 10-22-2010, 19:31   #42 (permalink)
Junior Member
 
Join Date: Oct 2010
Location: Zulia - Venezuela
Posts: 11
Member: 1424779
Status: Offline
Thanks Meter: 0
go to this page How to read BlackBerry MEP without Cable | FastGSM.com follow the steps and youŽll get the mep code
  Reply With Quote
Old 10-24-2010, 02:16   #43 (permalink)
No Life Poster
 
y3kt's Avatar
 
Join Date: Feb 2006
Location: Club-Berry
Posts: 1,938
Member: 238127
Status: Offline
Sonork: 100.1574867
Thanks Meter: 3,526
Donate money to this user
Quote:
Originally Posted by carlosVEN View Post
go to this page How to read BlackBerry MEP without Cable | FastGSM.com follow the steps and youŽll get the mep code
This is about how to programtically read mep, luck
  Reply With Quote
The Following 2 Users Say Thank You to y3kt For This Useful Post:
Old 01-01-2011, 05:57   #44 (permalink)
Junior Member
 
Join Date: Jul 2010
Posts: 8
Member: 1352307
Status: Offline
Thanks Meter: 1
some one have done in c# languaje?
  Reply With Quote
Old 01-04-2011, 15:10   #45 (permalink)
No Life Poster
 
.:Gsm-Nikki:.'s Avatar
 
Join Date: May 2008
Posts: 1,154
Member: 783315
Status: Offline
Sonork: 100.1588917
Thanks Meter: 228
hi
guys, i have no knowlege in programming any thing..

it would be great if someone could make me a mep/imei reader with my avatar..

thanx a lot in advance

wbr
GsmNikki
  Reply With Quote
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
MEPSERVER - 1ST IN WORLD - BLACKBERRY MEP READER built for MAC users FuriouS TeaM FuriousGold 35 06-09-2010 09:56
ALL BlackBerry Meps Level & HTC qualcomm/Omap code reader ! Professional Services !! MB code Main Sales Section 0 03-03-2010 02:33

 



All times are GMT +1. The time now is 16:06.



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.21736 seconds with 10 queries

SEO by vBSEO