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 02-02-2012, 20:44   #1 (permalink)
No Life Poster
 
fr3nsis's Avatar
 
Join Date: Oct 2005
Location: Rome , Italy
Posts: 1,530
Member: 190882
Status: Offline
Sonork: BB PIN: 7C83D9CE
Thanks Meter: 1,282
Donate money to this user
Blackberry php source


because some guys are trying to sell free thing here is it

Note: it's my first "web application" on php , i code on asp.net , so code is ugly but seems to work fine

http://pastebin.com/9XzNa01i

Last edited by fr3nsis; 02-02-2012 at 20:49.
  Reply With Quote
The Following 15 Users Say Thank You to fr3nsis For This Useful Post:
Show/Hide list of the thanked
Old 02-03-2012, 09:40   #2 (permalink)
No Life Poster
 
fr3nsis's Avatar
 
Join Date: Oct 2005
Location: Rome , Italy
Posts: 1,530
Member: 190882
Status: Offline
Sonork: BB PIN: 7C83D9CE
Thanks Meter: 1,282
Donate money to this user
if is delphi you ask for php , if php you ask for vb...come on take a book or use google and do yourself! i never write any single line on php and i spend 30 minutes of my time for do it!

ps. on source replace

for ($i = 1; $i <= 4; $i++) echo "<pre>Mep".$i.": ".myhash2code (my_sha1 ($Imei,$pass,$i),$mep)."\n";

with

for ($i = 1; $i <= 4; $i++) echo "<pre>Mep".strval($i+1).": ".myhash2code (my_sha1 ($Imei,$pass,$i),$mep)."\n";

or with
for ($i = 0; $i <= 4; $i++) echo "<pre>Mep".strval($i+1).": ".myhash2code (my_sha1 ($Imei,$pass,$i),$mep)."\n";
  Reply With Quote
The Following 2 Users Say Thank You to fr3nsis For This Useful Post:
Old 02-03-2012, 10:39   #3 (permalink)
Freak Poster
 
Join Date: Dec 2010
Posts: 237
Member: 1469903
Status: Offline
Sonork: 1637986
Thanks Meter: 65
you
Mep1: 73531xxxxx150386 = real MEP2
Mep2: 28663xxxx0113403 = real MEP3
Mep3: 48397xxxx3576620 = real MEP4
Mep4: 22765xxxx6201736 = real MEP5

and y3kt v1.4
MEP1: 0170xxxx47342198 => where is it ?
MEP2(NCK): 73xxxx7603150386 => you MEP1
MEP3: 28663xxxxx113403
MEP4: 48397xxxx3576620
MEP5: 2276xxxx6201736

I replace

}else{
$size=15;
by
}else{
$size=16;

thanks for the job
  Reply With Quote
Old 02-03-2012, 10:50   #4 (permalink)
No Life Poster
 
fr3nsis's Avatar
 
Join Date: Oct 2005
Location: Rome , Italy
Posts: 1,530
Member: 190882
Status: Offline
Sonork: BB PIN: 7C83D9CE
Thanks Meter: 1,282
Donate money to this user
solution is on my last post or just not do copy/paste without try to understand code

about 15 or 16 , if the for starts from 0 need to be 15
  Reply With Quote
Old 02-03-2012, 22:38   #5 (permalink)
Junior Member
 
Join Date: Dec 2011
Posts: 34
Member: 1700459
Status: Offline
Thanks Meter: 1
Quote:
Originally Posted by fr3nsis View Post
because some guys are trying to sell free thing here is it

Note: it's my first "web application" on php , i code on asp.net , so code is ugly but seems to work fine

<?php $Imei="355466040328886"; $mep="MEP-31845-001"; $pass=createPrivateP - Pastebin.com
THANK YOU

I posted that I was selling php source in sales section, but only to try stopping fingusio from ripping people off for $200, I had no intention of selling the one I coded, even though it is much better than yours or the one fingusio is selling

BR
Des
  Reply With Quote
Old 02-03-2012, 23:00   #6 (permalink)
No Life Poster
 
Join Date: Oct 2002
Posts: 2,367
Member: 16927
Status: Offline
Thanks Meter: 134
PHP BB source is coded by my coder.
Till now i never saw any free BB PHP. So if will be free somewhere i also give it all source in PHP (two files, one main code, second file with meps).

I never advocated anyone to buy it. If have many customers and need buy so buy. If have 2per month dont buy - its easy.

I try contact with people who buy from Us and can paste here opinion.
  Reply With Quote
Old 02-04-2012, 02:03   #7 (permalink)
Insane Poster
 
Join Date: Mar 2011
Location: Venezuela
Age: 40
Posts: 74
Member: 1543952
Status: Offline
Sonork: 0
Thanks Meter: 60
Quote:
Originally Posted by drg-mobile View Post
THANK YOU

I posted that I was selling php source in sales section, but only to try stopping fingusio from ripping people off for $200, I had no intention of selling the one I coded, even though it is much better than yours or the one fingusio is selling

BR
Des

So.... Post it!!! dont you?....
  Reply With Quote
Old 02-04-2012, 10:40   #8 (permalink)
Freak Poster
 
Join Date: Dec 2010
Posts: 237
Member: 1469903
Status: Offline
Sonork: 1637986
Thanks Meter: 65
test version by me

test - Pastebin.com
  Reply With Quote
The Following 2 Users Say Thank You to neor For This Useful Post:
Old 02-04-2012, 10:48   #9 (permalink)
Product Manager
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 13,325
Member: 11170
Status: Offline
Sonork: 1603694
Thanks Meter: 6,944
Quote:
Originally Posted by neor View Post
test version by me

test - Pastebin.com
Great implementation

Just a sugestion, put mep in array and use array_search function from php
code will be 50% short and more faster .
  Reply With Quote
The Following User Says Thank You to orbita For This Useful Post:
Old 02-04-2012, 16:42   #10 (permalink)
Insane Poster
 
Join Date: Jan 2012
Posts: 58
Member: 1710257
Status: Offline
Thanks Meter: 11
16 digit works perfectly... 8 digit - last number missing
Example
IMEI : 012345678901234
MEP : MEP-30218-002

Mep2(NCK): 6927171x

Mep4: 1550136x


Actual value

MEP2: 69271717
MEP4: 15501362
  Reply With Quote
Old 02-04-2012, 17:59   #11 (permalink)
Freak Poster
 
Join Date: Dec 2010
Posts: 237
Member: 1469903
Status: Offline
Sonork: 1637986
Thanks Meter: 65
fix
if ($pos>0){
$size=7;
to
if ($pos>0){
$size=8;
  Reply With Quote
The Following 3 Users Say Thank You to neor For This Useful Post:
Show/Hide list of the thanked
Old 02-05-2012, 04:03   #12 (permalink)
Freak Poster
 
Join Date: Jul 2006
Location: inside out
Posts: 328
Member: 303799
Status: Offline
Sonork: inside outside
Thanks Meter: 59
Quote:
Originally Posted by Maxpayn3 View Post
16 digit works perfectly... 8 digit - last number missing
Example
IMEI : 012345678901234
MEP : MEP-30218-002

Mep2(NCK): 6927171x

Mep4: 1550136x


Actual value

MEP2: 69271717
MEP4: 15501362
looks like

6+1
Mep2(NCK):69271717 first digit + 5th digit = 7
Mep4:15501362 first digit + 5th digit = 2
  Reply With Quote
Old 02-05-2012, 06:53   #13 (permalink)
Freak Poster
 
Join Date: Aug 2009
Location: E G Y P T
Age: 26
Posts: 347
Member: 1102520
Status: Offline
Sonork: 100.1617999
Thanks Meter: 94
Subtract the second and the third number also
  Reply With Quote
Old 02-05-2012, 17:37   #14 (permalink)
FFX
Freak Poster
 
FFX's Avatar
 
Join Date: Jun 2010
Location: Venezuela
Posts: 313
Member: 1332792
Status: Offline
Thanks Meter: 120
Quote:
Originally Posted by orbita View Post
Great implementation

Just a sugestion, put mep in array and use array_search function from php
code will be 50% short and more faster .
Could you give an example of how you would use in this case?. Sorry for the inconvenience but barely learn. thanks
  Reply With Quote
Old 02-05-2012, 18:45   #15 (permalink)
No Life Poster
 
fr3nsis's Avatar
 
Join Date: Oct 2005
Location: Rome , Italy
Posts: 1,530
Member: 190882
Status: Offline
Sonork: BB PIN: 7C83D9CE
Thanks Meter: 1,282
Donate money to this user
Quote:
Originally Posted by dennis27 View Post
looks like

6+1
Mep2(NCK):69271717 first digit + 5th digit = 7
Mep4:15501362 first digit + 5th digit = 2
dont know why , probably the cold , i not remember to add = on cicle so
on source is

if ($pos>0){
$size=7;
}else{
$size=15;
}
for ($i = 0; $i < $size; $i++) {

instead must be

if ($pos>0){
$size=7;
}else{
$size=15;
}
for ($i = 0; $i <= $size; $i++) {

if you want have 7 or 15 like size values
  Reply With Quote
The Following User Says Thank You to fr3nsis 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
TO ALL : IMPORTANT CHANGEMENT ON GSM-SOURCE.COM source GSM Mobile Links 12 09-06-2001 11:16
Special Update @ Gsm-Source source GSM Mobile Links 0 08-13-2001 01:41
News @ GSM-SOURCE.COM source GSM Mobile Links 7 08-09-2001 12:33
New 2 programming and need some source codes?? Salami1_1 GSM Mobile Links 0 07-10-2001 21:13
Source for all the latest unlock info and products Buffoon GSM Mobile Links 0 03-19-2001 12:18

 



All times are GMT +1. The time now is 15:45.



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

SEO by vBSEO