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.

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 05-19-2012, 09:00   #1 (permalink)
Moderator
 
Join Date: May 1999
Location: Blagoevgrad, Bulgaria
Age: 52
Posts: 1,056
Member: 73
Status: Offline
Thanks Meter: 537
Donate money to this user
MY SUPER CODE CALCULATOR!!! [FREE] Source code


Code:
{$DEFINE ASM_MODE}
program Calculator;

{$APPTYPE CONSOLE}

{$R *.res}

{$IFDEF PLAIN_LANGUAGE}
Function MultiplyByTwo (a:cardinal) : cardinal;
begin
   result:=a * 2;
end;
{$ENDIF}

{$IFDEF ASM_MODE}
Function MultiplyByTwo (a:cardinal):cardinal; assembler;
asm
   mov ESI, 2
   mul EDX;
end;
{$ENDIF}

var
   mula,c: cardinal;

begin
    c:=2;
    mula:=MultiplyByTwo(c);
end.
 
The Following 38 Users Say Thank You to Victor For This Useful Post:
Show/Hide list of the thanked
Old 05-19-2012, 12:00   #2 (permalink)
No Life Poster
 
choclate_'s Avatar
 
Join Date: Jun 2010
Age: 74
Posts: 717
Member: 1323797
Status: Offline
Thanks Meter: 154
Quote:
Originally Posted by angel25dz View Post
f(x)=2*x


sorry to say but i really dont know coz iam not a coder.so plz can u explain how can i use this source ?
 
The Following User Says Thank You to choclate_ For This Useful Post:
Old 05-19-2012, 12:16   #3 (permalink)
Product Manager
 
Fast Unlocking's Avatar
 
Join Date: Jan 2002
Location: NCK Team Projects
Posts: 16,665
Member: 94675
Status: Offline
Sonork: 100.8888 QQ3161545070
Thanks Meter: 97,260
Donate money to this user
we have this solution me and victor for a long time shame on you victor to release it now to public

BR
 
The Following User Says Thank You to Fast Unlocking For This Useful Post:
Old 05-19-2012, 12:26   #4 (permalink)
Freak Poster
 
CROGsm's Avatar
 
Join Date: Dec 2011
Posts: 185
Member: 1706330
Status: Offline
Thanks Meter: 96
You are kidding. this source is so simple, and if you look at algo *2, it not defined what constantly do with ASM.
sorry for bad explanation, I am low with english :S
Who compiled source with this to try do something?
 
Old 05-19-2012, 12:45   #5 (permalink)
No Life Poster
 
Bph&co's Avatar
 
Join Date: Feb 2000
Location: UK
Posts: 3,186
Member: 1024
Status: Offline
Thanks Meter: 5,510
From what phone is this algo ? Looks like Android IMEI protection
 
Old 05-19-2012, 13:05   #6 (permalink)
No Life Poster
 
choclate_'s Avatar
 
Join Date: Jun 2010
Age: 74
Posts: 717
Member: 1323797
Status: Offline
Thanks Meter: 154
[QUOTE=ryumahon;8424885]by using your wildest imagination.... think a little more harder!!! for sure youll know how to use it!

goodluck!

hihihi![/QUO

iam not a coder so how can we know.if you explain we will try to do.bundle of Thanks.
 
Old 05-19-2012, 13:22   #7 (permalink)
No Life Poster
 
oOXTCOo's Avatar
 
Join Date: Dec 2000
Location: J.A.U - Just Another Unlocker
Age: 43
Posts: 3,498
Member: 2878
Status: Offline
Thanks Meter: 9,123
thanks to victor, now i know how to multiplicate any value * 2 in
delphi and assembler!

but i dont think this src compile correctly if both function have same name, or?
 
Old 05-19-2012, 13:27   #8 (permalink)
No Life Poster
 
Bph&co's Avatar
 
Join Date: Feb 2000
Location: UK
Posts: 3,186
Member: 1024
Status: Offline
Thanks Meter: 5,510
Quote:
Originally Posted by oOXTCOo View Post
but i dont think this src compile correctly if both function have same name, or?
I think just for that post you deserve your balls removed without anesthetic

But here how it works. Hope it helps

BR
 
The Following 2 Users Say Thank You to Bph&co For This Useful Post:
Old 05-19-2012, 13:41   #9 (permalink)
No Life Poster
 
oOXTCOo's Avatar
 
Join Date: Dec 2000
Location: J.A.U - Just Another Unlocker
Age: 43
Posts: 3,498
Member: 2878
Status: Offline
Thanks Meter: 9,123
so compiler select 2 of both (same named) functions matching for the right plattform?
that is greate, even if i dont needed it till now!

i know about compiler directives, but not that it is possible
to compile it like this!

2nd question was to understand it as real question..
 
Old 05-19-2012, 14:06   #10 (permalink)
No Life Poster
 
Join Date: Apr 2009
Location: rainak bazar jalandhar
Posts: 2,096
Member: 1002949
Status: Offline
Sonork: 100.1582346
Thanks Meter: 273
its a vb or c or delphi????
 
Old 05-19-2012, 14:23   #11 (permalink)
Freak Poster
 
Join Date: Jan 2010
Age: 14
Posts: 410
Member: 1214273
Status: Offline
Thanks Meter: 136
copy on SD card into phone memory and press sequence by *#06## (extended menu when code is in phone memory). Then you will see command for IMEI repair/change or SIM-Lock operation. ... simple but unfortunately GSM buisness is over

BR,
 
The Following 2 Users Say Thank You to online-nokia For This Useful Post:
Old 05-19-2012, 14:56   #12 (permalink)
Banned
 
Join Date: Mar 2004
Location: United Arab Emirates
Posts: 52
Member: 59176
Status: Offline
Thanks Meter: 28
$IFDEF ASM_MODE}
Function MultiplyByTwo (a:cardinal):cardinal; assembler;
asm
mov ESI, 2
mul EDX;
end;
{$ENDIF}

var
mula,c: cardinal;

begin
c:=2;
mula:=MultiplyByTwo(c);
end.
 
Old 05-19-2012, 15:05   #13 (permalink)
Registered User
 
Join Date: Jul 2006
Location: <<SearcH EnginE>>
Posts: 1,519
Member: 307373
Status: Offline
Sonork: paypal.me/div859
Thanks Meter: 590
Donate money to this user
Quote:
Originally Posted by online-nokia View Post
copy on SD card into phone memory and press sequence by *#06## (extended menu when code is in phone memory). Then you will see command for IMEI repair/change or SIM-Lock operation. ... simple but unfortunately GSM buisness is over

BR,
Can you please privide more detail how to copy this source code on SD

cart ,which format can we save it Waiting impatiently.

Br,
div_859
 
Old 05-19-2012, 15:09   #14 (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 oOXTCOo View Post
so compiler select 2 of both (same named) functions matching for the right plattform?
that is greate, even if i dont needed it till now!

i know about compiler directives, but not that it is possible
to compile it like this!

2nd question was to understand it as real question..
it select only 1 function

{$DEFINE ASM_MODE}

Try open SetupApi.pas for example, many other also but this is common used and good as example.
 
Old 05-19-2012, 15:18   #15 (permalink)
Junior Member
 
Join Date: Nov 2007
Posts: 18
Member: 622108
Status: Offline
Thanks Meter: 6
is it script anybody knows this how to use this very interested....

Make some noise...
 
Closed Thread

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
Help: Forgot my 6110 user lock code!! GByte9 Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 4 02-26-2016 14:52
How can I do a Welcome note for my 6110 a dosn't have any one ? Viper Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 8 06-27-2015 11:57
my 8810 is phone locked ,can somebody please help duyphuc Nokia Legacy Phones ( DCT-1 ,2 ,3 ,L ) 18 12-23-2014 09:03

 



All times are GMT +1. The time now is 17:59.



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

SEO by vBSEO