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 03-29-2010, 19:31   #16 (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 y3kt View Post
You need to have rimradiocomm.dll registered in your system in order to get functionality, luck
there is any similar DLL for .net languages (C#) ??
  Reply With Quote
Old 05-12-2010, 15:26   #17 (permalink)
Major Poster
 
Join Date: Jun 2009
Posts: 43
Member: 1058096
Status: Offline
Thanks Meter: 3
can not use on blackberry 9520
  Reply With Quote
Old 05-12-2010, 16:00   #18 (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 angel25dz View Post
there is any similar DLL for .net languages (C#) ??
The same dll should work with c#, luck

Quote:
Originally Posted by tophuige View Post
can not use on blackberry 9520
if you have all dll together then it should work, luck
  Reply With Quote
The Following User Says Thank You to y3kt For This Useful Post:
Old 05-12-2010, 16:04   #19 (permalink)
No Life Poster
 
Join Date: Mar 2004
Location: jamshedpur
Age: 38
Posts: 4,303
Member: 59185
Status: Offline
Sonork: 100.1593175
Thanks Meter: 4,911
can u post complete source for this ?
  Reply With Quote
Old 05-12-2010, 19:37   #20 (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
Hi, complete source is HERE, it is all you need, luck
  Reply With Quote
The Following 3 Users Say Thank You to y3kt For This Useful Post:
Show/Hide list of the thanked
Old 05-13-2010, 01:24   #21 (permalink)
Product Manager
 
TestBox2's Avatar
 
Join Date: May 2008
Location: Ukraine
Age: 45
Posts: 3,234
Member: 772096
Status: Offline
Sonork: 100.69222
Thanks Meter: 8,277
some on c++


long CommReadWrite1(HANDLE hDevice, LPOVERLAPPED pOverlapped)
{
unsigned char pReadData[0x4000];

unsigned char pWriteSequence12[] = {0x00, 0x00, 0x0C, 0x00, 0x05, 0xFF, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00};
unsigned char pWriteSequence24[] = {0x00, 0x00, 0x18, 0x00, 0x07, 0xFF, 0x00, 0x01, 0x52, 0x49, 0x4D, 0x20, 0x43, 0x61, 0x6C, 0x20, 0x74, 0x61, 0x73, 0x6B, 0x00, 0x00, 0x00, 0x00}; // RIMCalTask
unsigned char pWriteSequence8[] = {0x00, 0x00, 0x08, 0x00, 0x0A, 0x01, 0x00, 0x02};
DWORD dwNumberBytesRead, dwNumberBytesWritten;



// VERIFIED
CommWriteToPhone(hDevice, pWriteSequence12, sizeof(pWriteSequence12), &dwNumberBytesWritten, pOverlapped);
CommReadFromPhone(hDevice, pReadData, 0x4000, &dwNumberBytesRead, pOverlapped);
if(dwNumberBytesRead != 0x14)
{
return 0; // cannot read BPIN
}


// VERIFIED
CommWriteToPhone(hDevice, pWriteSequence24, sizeof(pWriteSequence24), &dwNumberBytesWritten, pOverlapped);
CommReadFromPhone(hDevice, pReadData, 0x4000, &dwNumberBytesRead, pOverlapped);
if(dwNumberBytesRead == 0)
{
return 0; // no reply from device
}
  Reply With Quote
The Following 3 Users Say Thank You to TestBox2 For This Useful Post:
Show/Hide list of the thanked
Old 05-13-2010, 09:24   #22 (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 TestBox2 View Post
some on c++


long CommReadWrite1(HANDLE hDevice, LPOVERLAPPED pOverlapped)
{
unsigned char pReadData[0x4000];

unsigned char pWriteSequence12[] = {0x00, 0x00, 0x0C, 0x00, 0x05, 0xFF, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00};
unsigned char pWriteSequence24[] = {0x00, 0x00, 0x18, 0x00, 0x07, 0xFF, 0x00, 0x01, 0x52, 0x49, 0x4D, 0x20, 0x43, 0x61, 0x6C, 0x20, 0x74, 0x61, 0x73, 0x6B, 0x00, 0x00, 0x00, 0x00}; // RIMCalTask
unsigned char pWriteSequence8[] = {0x00, 0x00, 0x08, 0x00, 0x0A, 0x01, 0x00, 0x02};
DWORD dwNumberBytesRead, dwNumberBytesWritten;



// VERIFIED
CommWriteToPhone(hDevice, pWriteSequence12, sizeof(pWriteSequence12), &dwNumberBytesWritten, pOverlapped);
CommReadFromPhone(hDevice, pReadData, 0x4000, &dwNumberBytesRead, pOverlapped);
if(dwNumberBytesRead != 0x14)
{
return 0; // cannot read BPIN
}


// VERIFIED
CommWriteToPhone(hDevice, pWriteSequence24, sizeof(pWriteSequence24), &dwNumberBytesWritten, pOverlapped);
CommReadFromPhone(hDevice, pReadData, 0x4000, &dwNumberBytesRead, pOverlapped);
if(dwNumberBytesRead == 0)
{
return 0; // no reply from device
}
this code use winapi.....what about RIMRadioDriver.dll?? there is a managed version of this dll?? I can't find it !!
  Reply With Quote
Old 05-14-2010, 17:46   #23 (permalink)
Insane Poster
 
Join Date: Dec 2005
Location: BBM:282c2222 www.indo-gsm.com
Posts: 90
Member: 209767
Status: Offline
Thanks Meter: 112
Quote:
Originally Posted by y3kt View Post
Hi, complete source is HERE, it is all you need, luck
why not work delphi 7 sir?? any wrong in code...
  Reply With Quote
Old 05-15-2010, 02:58   #24 (permalink)
Freak Poster
 
Join Date: Mar 2005
Location: inside USB cable
Age: 41
Posts: 425
Member: 128122
Status: Offline
Thanks Meter: 256
Quote:
Originally Posted by smartmod.de View Post
That's exactly how I tried but I just got empty IMEI and MEP 0000000... I will try again later.

I wrote you a PM. Any chance you could provide me with the source?

Thanks!
If your BB got password enabled or put password and IT policy enabled, that would not work for you, just remove IT policy and wipe your BB to remove password. And that will work
  Reply With Quote
Old 05-15-2010, 03:21   #25 (permalink)
Freak Poster
 
Join Date: Dec 2006
Location: indonesia
Posts: 256
Member: 422015
Status: Offline
Thanks Meter: 64
can someody upload BBDEVMGRLib & RIMRadioCOM 1.3 Type Library

coz i dont want to download MFI Multiloader its too bigger file for download

thanks
  Reply With Quote
Old 05-15-2010, 10:49   #26 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 485
Member: 3179
Status: Offline
Thanks Meter: 142
can somebody help me source code for blackberry in visualbasic 2008


regards
  Reply With Quote
Old 05-15-2010, 21:55   #27 (permalink)
No Life Poster
 
balu_dark's Avatar
 
Join Date: Oct 2002
Location: Ukraine,Simferopol
Age: 48
Posts: 1,155
Member: 16251
Status: Offline
Thanks Meter: 38
Quote:
Originally Posted by mardi View Post
can somebody help me source code for blackberry in visualbasic 2008


regards
can somebody help you with money?
  Reply With Quote
Old 05-15-2010, 23:42   #28 (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
Hi to all, even though after all that i have explained here i see very easy to build an application to read MEP code from a BlackBerry i know that at the beginning most thing looks pretty difficult (i'm not a pro), that's why i am posting here my Delphi project which should work for everybody. RIMRADIOCOMLib_TLB is also included, so enjoy.

If anyone has an idea of how unlock codes are calculated and would like to share it for research purposes then it is welcome, i've been planning to find out how it is done but i don't think i have the time to start from scratch.

Luck!
Attached Files
File Type: rar BB_Logger.rar (111.4 KB, 3586 views)
  Reply With Quote
The Following 7 Users Say Thank You to y3kt For This Useful Post:
Show/Hide list of the thanked
Old 05-16-2010, 13:48   #29 (permalink)
Insane Poster
 
Join Date: Dec 2005
Location: BBM:282c2222 www.indo-gsm.com
Posts: 90
Member: 209767
Status: Offline
Thanks Meter: 112
Quote:
Originally Posted by y3kt View Post
Hi to all, even though after all that i have explained here i see very easy to build an application to read MEP code from a BlackBerry i know that at the beginning most thing looks pretty difficult (i'm not a pro), that's why i am posting here my Delphi project which should work for everybody. RIMRADIOCOMLib_TLB is also included, so enjoy.

If anyone has an idea of how unlock codes are calculated and would like to share it for research purposes then it is welcome, i've been planning to find out how it is done but i don't think i have the time to start from scratch.

Luck!
any wrong bro?? bcozz can not open in my delphi 7
  Reply With Quote
Old 05-16-2010, 14:03   #30 (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
I haven't try it in delphi 7 as i was using delphi 2005, but make a new project an open Unit1.pas in notepad and reproduce the code in oyur delphi 7 project, just add 2 edit text fields and name them as in the code, you should be good to go, i can't help more than that, luck
  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 03:33.



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.22080 seconds with 11 queries

SEO by vBSEO