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 06-14-2010, 00:52   #31 (permalink)
Freak Poster
 
Join Date: May 2010
Posts: 254
Member: 1305804
Status: Offline
Thanks Meter: 22
same method as motorola?


hi,
Did you try to use same method to get unlock code for Motorola?

thank you
  Reply With Quote
Old 06-14-2010, 01:05   #32 (permalink)
Freak Poster
 
Join Date: May 2008
Posts: 102
Member: 780325
Status: Offline
Thanks Meter: 26
yes good idea test for moto
  Reply With Quote
Old 02-24-2011, 19:54   #33 (permalink)
No Life Poster
 
Join Date: Oct 2002
Posts: 2,367
Member: 16927
Status: Offline
Thanks Meter: 134
in php someone have source?

br,
fingusio
  Reply With Quote
Old 02-24-2011, 22:57   #34 (permalink)
Freak Poster
 
Join Date: Jun 2009
Location: !!!! AWAY FROM BOARD, STUDY !!
Posts: 363
Member: 1055354
Status: Offline
Thanks Meter: 252
Quote:
Originally Posted by fingusio View Post
in php someone have source?

br,
fingusio
Here is 2 PHP sources, one by me and one by frozenice
http://forum.gsmhosting.com/vbb/f83/...uawei-1070125/

Demo: http://www.bb5.at/huawei.php?imei=353144032055161
  Reply With Quote
The Following 2 Users Say Thank You to sergeymkl For This Useful Post:
Old 03-26-2011, 21:03   #35 (permalink)
Junior Member
 
Join Date: Mar 2011
Posts: 2
Member: 1544033
Status: Offline
Thanks Meter: 0
Is there anyone can unlock the new firmware of Huawei E1750 11.126.11.01.439 ?
Your method used to get the unlock code is not worked with this version
  Reply With Quote
Old 07-20-2011, 09:57   #36 (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
Quote:
Originally Posted by apollo88 View Post
Is there anyone can unlock the new firmware of Huawei E1750 11.126.11.01.439 ?
Your method used to get the unlock code is not worked with this version

E1752 Viettel latest FW unlock done by SmartFlasher Done!


Only, Successfully Unlocked / Flashed Modems By MKey - GSM-Forum
  Reply With Quote
The Following User Says Thank You to TestBox2 For This Useful Post:
Old 06-11-2012, 18:51   #37 (permalink)
Banned
 
Join Date: Dec 2006
Location: EGYPT
Posts: 80
Member: 406664
Status: Offline
Sonork: 100.1597132
Thanks Meter: 26
Nice guys i hope to calculate any NCK
none stop go ahead

B.R
HASSAN ELHADDAD
  Reply With Quote
Old 05-21-2013, 15:58   #38 (permalink)
Junior Member
 
Join Date: Aug 2009
Posts: 2
Member: 1103683
Status: Offline
Thanks Meter: 0
how about nokia master code ?
do you have sourcecode to unlocker ?
  Reply With Quote
Old 05-21-2013, 21:57   #39 (permalink)
Insane Poster
 
Join Date: May 2008
Location: Poland ;)
Age: 38
Posts: 69
Member: 776944
Status: Offline
Thanks Meter: 26
For all Copy-Pasters Perhaps the most flexible one, in Delphi ;-)
What you think guys

Code:
//huawei datacard unlocker for command line interface
program hwe620dccli;

{$APPTYPE CONSOLE}

uses
  MD5, SysUtils;

function Hex2Int ( HexString : String ) : Integer;
 begin
   Hex2Int := StrToInt('$'+HexString)
 end;

function Hash2Str(hash: TMD5Digest): String;
  var i: byte;
    begin
    Result:='';
    for i:=Low(Hash.v) to High(Hash.v) do
      Result:=Result+IntToHex(Hash.v[i], 2);
    end;

    const
        UNLOCK_SALT : String = '5e8dd316726b0335';
        FLASH_SALT : String = '97b7bc6be525ab44';

    var
        IMEI: String;
        Unlock, Flash : String;
        U_Hash, F_Hash : TMD5Digest;

        U_Result: Array[0..3] of String[2];
        F_Result: Array[0..3] of String[2];

        U_Code: LongWord;
        F_Code: LongWord;

        i: byte;

begin
Writeln('HWE Unlock Tool / McManiek');

  Write('Enter Device IMEI :');
  Readln(IMEI);

    //simple check that user is a twat...

      if Length(IMEI)<>15 then
        begin
          Writeln('Calculation Result : Looks like You`re a TWAT!');
        end
            else

                //lets calculate codes ;-)
                begin
                  Unlock:=IMEI+UNLOCK_SALT;
                  Flash:=IMEI+FLASH_SALT;

                  U_HASH:=MD5String(Unlock);
                  F_HASH:=MD5String(Flash);

                for i:=Low(U_Result) to High(U_Result) do
                  begin
                  U_Result[i] := IntToHex(U_HASH.V[i] xor U_HASH.V[i+4] xor U_HASH.V[i+8] xor U_HASH.V[i+12], 2);
                  F_Result[i] := IntToHex(F_HASH.V[i] xor F_HASH.V[i+4] xor F_HASH.V[i+8] xor F_HASH.V[i+12], 2);
                  end;

                  U_Code:=Hex2Int(U_Result[0]+U_Result[1]+U_Result[2]+U_Result[3]) AND $1FFFFFF OR $2000000;
                  F_Code:=Hex2Int(F_Result[0]+F_Result[1]+F_Result[2]+F_Result[3]) AND $1FFFFFF OR $2000000;

                  Writeln('Calculation Result :');
                  Writeln('Unlock : '+IntToStr(U_Code));
                  Writeln('Flash  : '+IntToStr(F_Code));

                end;

Readln;
end.
To compile it, you just need Delphi and this unit :
http://download.4programmers.net/md5.zip
  Reply With Quote
Old 05-22-2013, 20:47   #40 (permalink)
Banned
 
Join Date: Nov 2009
Location: Lima, Perú
Posts: 1,477
Member: 1159099
Status: Offline
Thanks Meter: 6,371
and here for all lazy
src huawei code.rar

pic
http://img198.imageshack.us/img198/528/11252699.bmp
  Reply With Quote
The Following 3 Users Say Thank You to xcachorrox For This Useful Post:
Show/Hide list of the thanked
Old 12-09-2022, 19:47   #41 (permalink)
Freak Poster
 
Join Date: Dec 2014
Location: amateur team
Posts: 106
Member: 2303526
Status: Offline
Thanks Meter: 24
update...

Do you have C# source code for Huawei v1,v2, v3 calculator ?

thank you
  Reply With Quote
Old 12-09-2022, 19:48   #42 (permalink)
Freak Poster
 
Join Date: Dec 2014
Location: amateur team
Posts: 106
Member: 2303526
Status: Offline
Thanks Meter: 24
(reposted) sorry, delete
  Reply With Quote
Old 03-06-2023, 21:34   #43 (permalink)
Junior Member
 
Join Date: Mar 2023
Location: es
Age: 25
Posts: 2
Member: 3033615
Status: Offline
Thanks Meter: 0
Detected as a trojan. Will post a clean version online later.
  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
[02-07-09] Huawei Unlock by Code in REAL TIME !!! UnlockBase.com UnlockBase 0 07-06-2009 23:55
Bb5 no tp unlocker source code needed [Shadab_M] BB5KING 2 03-30-2009 15:15
Need Gd90 Unlocker Source Code or Command. XzZ GSM Programming & Reverse Engineering 1 09-23-2002 12:12

 



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



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

SEO by vBSEO