PDA

View Full Version : Have you all seen this ? Is it true ?


Buffoon
07-29-2002, 21:55
Just found this, anyone tested it ?

http://forum.gsmhosting.com/vbb/showthread.php?s=&threadid=51206

rgds

Buffoon

J
07-31-2002, 04:31
:D :D :D

ALieN_CHeMiST
07-31-2002, 06:19
Seen what? Topic is not there

THEKILLER
07-31-2002, 06:55
vBulletin Message
Invalid thread specified. If you followed a valid link, please notify the webmaster

davieb
07-31-2002, 07:13
Not an uncommon site today on this forum - topics dissapearing with no explanation!

Please, if you have time Buffoon - mail me details (I'd like to know what it was that dissapeared!) or better yet, post on a forum where the topic will remain!
Rgds

legija
07-31-2002, 08:45
unit algounit_dct4;

interface
uses MBUS_Constants;
type
Array8= array[0..7] of byte;
var
MirrorRecdIMEI, Calced8Bytes, RecdIMEI, XOREncodedIMEI: array8;
Lookup1Cntr, RollOver1, RollOver2: byte;
const
{$I maskarr.inc} //maskarray
{$I tblook1.inc}
{$I tblook2.inc}
{$I tblook3.inc}
DecodeIMEIMask:array8=($4A,$33,$78,$90,$11,$AF,$F2 ,$3C);
EncodeIMEIMask:array8=($30,$49,$02,$EA,$6B,$D5,$88 ,$46);
BitsOrder:array[0..16] of byte=(0,3,6,1,4,7,2,5,0,3,6,1,4,7,2,5,0);


procedure dct4_CalcSP(SomeImei: string; var SLMatrix: TSLMatrix);

implementation

procedure XORIMEI(Mask,SourceImei: array8; var DestIMEI: array8);
var f: integer;
a: byte;
begin
for f:=0 to 7 do begin
a:=Mask[f];
DestIMEI[f]:=SourceIMEI[f] xor a;
end;
end;

procedure MaskIMEI(var SomeRollOver: byte; Idx: integer; SomeMirror: array8; var DestIMEI: array8);
var f,g: integer;
a: byte;
begin
g:=0;
for f:=Idx to (Idx+7) do begin
a:=MaskArray[f] xor $FF;
inc(SomeRollOver,a);
DestIMEI[g]:=SomeMirror[g] xor a;
inc(g);
end;
end;

function Lookup1(var Counter: byte; SomeXorEncodedIMEI: array8):byte;
var a,R0,R6,R7: byte;
f: integer;
begin
Lookup1:=0;
if Counter>136 then exit;
R6:=Counter;a:=R6;
inc(Counter);
a:=a and 7;
a:=SomeXOREncodedIMEI[a];
R7:=a;
a:=R6;

//a:=(a shr 3) and $1F;
asm
push ax
mov al,a
rcr al,1
rcr al,1
rcr al,1
and al,$1F
mov a,al
pop ax
end;
a:=BitsOrder[a];
R0:=a;
a:=R7;
//inc(R0);
for f:=1 to R0 do begin
asm
push ax
mov al,a
rol al,1
mov a, al
pop ax
end;
end;
R7:=a;
a:=R6;
a:=TblLookup3[a] xor $FF;
inc(a,R7);
R7:=a;
Lookup1:=R7;
end;

procedure Calc_1(SomeXorEncodedIMEI: array8; var DestIMEI: array8);
var
f: integer;
LookUpCtr: byte;
a,b: byte;
begin
LookupCtr:=0;
for f:=0 to 7 do begin
//no-lookup operations here
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[0]:=DestIMEI[0] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[1]:=DestIMEI[1] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[2]:=DestIMEI[2] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[3]:=DestIMEI[3] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[4]:=DestIMEI[4] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[5]:=DestIMEI[5] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[6]:=DestIMEI[6] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[7]:=DestIMEI[7] xor a;
//Lookup operations here
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup1[DestIMEI[0]] xor $FF;
DestIMEI[0]:=b+a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup2[DestIMEI[1]] xor $FF;
DestIMEI[1]:=b xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup2[DestIMEI[2]] xor $FF;
DestIMEI[2]:=b xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup1[DestIMEI[3]] xor $FF;
DestIMEI[3]:=b+a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup1[DestIMEI[4]] xor $FF;
DestIMEI[4]:=b+a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup2[DestIMEI[5]] xor $FF;
DestIMEI[5]:=b xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup2[DestIMEI[6]] xor $FF;
DestIMEI[6]:=b xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
b:=TblLookup1[DestIMEI[7]] xor $FF;
DestIMEI[7]:=b+a;
//Permutations here
a:=DestIMEI[0]; //perm 1
inc(a,DestIMEI[1]);
DestIMEI[1]:=a;
inc(a,DestIMEI[0]);
DestIMEI[0]:=a;
a:=DestIMEI[2]; //perm 2
inc(a,DestIMEI[3]);
DestIMEI[3]:=a;
inc(a,DestIMEI[2]);
DestIMEI[2]:=a;
a:=DestIMEI[4]; //perm 3
inc(a,DestIMEI[5]);
DestIMEI[5]:=a;
inc(a,DestIMEI[4]);
DestIMEI[4]:=a;
a:=DestIMEI[6]; //perm 4
inc(a,DestIMEI[7]);
DestIMEI[7]:=a;
inc(a,DestIMEI[6]);
DestIMEI[6]:=a;
a:=DestIMEI[0]; //perm 5
inc(a,DestIMEI[2]);
DestIMEI[2]:=a;
inc(a,DestIMEI[0]);
DestIMEI[0]:=a;
a:=DestIMEI[4]; //perm 6
inc(a,DestIMEI[6]);
DestIMEI[6]:=a;
inc(a,DestIMEI[4]);
DestIMEI[4]:=a;
a:=DestIMEI[1]; //perm 7
inc(a,DestIMEI[3]);
DestIMEI[3]:=a;
inc(a,DestIMEI[1]);
DestIMEI[1]:=a;
a:=DestIMEI[5]; //perm 8
inc(a,DestIMEI[7]);
DestIMEI[7]:=a;
inc(a,DestIMEI[5]);
DestIMEI[5]:=a;
a:=DestIMEI[0]; //perm 9
inc(a,DestIMEI[4]);
DestIMEI[4]:=a;
inc(a,DestIMEI[0]);
DestIMEI[0]:=a;
a:=DestIMEI[1]; //perm 10
inc(a,DestIMEI[5]);
DestIMEI[5]:=a;
inc(a,DestIMEI[1]);
DestIMEI[1]:=a;
a:=DestIMEI[2]; //perm 11
inc(a,DestIMEI[6]);
DestIMEI[6]:=a;
inc(a,DestIMEI[2]);
DestIMEI[2]:=a;
a:=DestIMEI[3]; //perm 12
inc(a,DestIMEI[7]);
DestIMEI[7]:=a;
inc(a,DestIMEI[3]);
DestIMEI[3]:=a;
//Final swap //perm 13
a:=DestIMEI[1];
DestIMEI[1]:=DestIMEI[4];
DestIMEI[4]:=DestIMEI[2];
DestIMEI[2]:=a;
a:=DestIMEI[3];
DestIMEI[3]:=DestIMEI[5];
DestIMEI[5]:=DestIMEI[6];
DestIMEI[6]:=a;
end;

a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[0]:=DestIMEI[0] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[1]:=DestIMEI[1] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[2]:=DestIMEI[2] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[3]:=DestIMEI[3] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[4]:=DestIMEI[4] xor a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[5]:=DestIMEI[5] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[6]:=DestIMEI[6] + a;
a:=lookup1(LookUpCtr,SomeXorEncodedIMEI);
DestIMEI[7]:=DestIMEI[7] xor a;
end;

function Hex2int(Digit: Char): byte;
var b: byte;
c: char;
begin
c:=Digit;
b:=ord(c);
if (b<=$39) and (b>=$30) then b:=b-$30
else
b:=b-$41+10;
Hex2Int:=b;
end;

procedure dct4_CalcSP(SomeImei: string; var SLMatrix: TSLMatrix);
var
f,g,h: integer;
a,b: byte;
begin
f:=0;g:=0;
FillChar(SLMatrix,SizeOf(SLMatrix),0);
repeat
a:=(Hex2Int(SomeIMEI[f+1]))*16;
b:=Hex2Int(SomeIMEI[f+2]);
RecdIMEI[g]:=a + b;
inc(f,2);
inc(g);
until f=14;
RecdIMEI[7]:=$00;

for f:=0 to 7 do MirrorRecdIMEI[f]:=0; //Initialize mirror array

XORIMEI(DecodeIMEIMask,RecdIMEI,XOREncodedIMEI); //calculate XOR Encoded IMEI
RollOver1:=0; RollOver2:=0; //init CRC counters
f:=0;
repeat
MaskIMEI(RollOver1, f, MirrorRecdIMEI, Calced8Bytes);
Calc_1(XorEncodedIMEI, Calced8Bytes);
h:=0;
for g:=f to (f+7) do begin
a:=Calced8Bytes[h];
mirrorrecdimei[h]:=a;
SLMatrix[g]:=a; inc(h);
inc(RollOver2,a);
end;
inc(f,8);
until f=$3a0;

//Here calculation of verification data
Calced8Bytes[0]:=RollOver1;
Calced8Bytes[1]:=not RollOver1;
Calced8Bytes[2]:=RollOver2;
Calced8Bytes[3]:=not RollOver2;
Calced8Bytes[4]:=$5B;
Calced8Bytes[5]:=$72;
Calced8Bytes[6]:=$AE;
Calced8Bytes[7]:=$36;
XORIMEI(EncodeIMEIMask,RecdIMEI,XOREncodedIMEI);
Calc_1(XorEncodedIMEI, Calced8Bytes);
for f:=$3a0 to $3a7 do SLMatrix[f]:=Calced8Bytes[f-$3a0];
end;

end.

J
07-31-2002, 09:17
And now you have it!

This time it wont be edited, deleted or moved!!!

:D :D :D

davieb
07-31-2002, 10:03
Lol,
Nothing special - not what I was expecting!

Was given out by er2000 himself on PlanetGSM once the stuff was stolen..

And yeh - it IS for real.. Has been confirmed by a friend (TechTron) who has tested it .. All he needs is the last MBUS command to set SP data and we'll have a free, open source prog written in delphi/object-pascal!

You can help him by logging the mbus comms with commlite and mailing them to me (I'll pass them on) in the following way:


1. Download Comlite32 from http://www.rtcard.com/cliteb5/cliteb5.exe

2. Install & Start program

3. Select "Control" > "Connection Mode"

4. Select "Single Line Mode and COM1 port. Press OK,OK

5. Press "F2", and connect locked mobile+power it up.(or unlocked phone, if
you dont have locked)

6. Now Run "JIC Unlocker" and UNLOCK

7. When done close "JIC Unlocker"

8. Switch back to Comlite32 you sould see some data, save buffer to file.

9. Send buffer file to me


Thanks :D

CW
07-31-2002, 17:03
I disagree davieb about it being special, I beleive it was special and once again deleted by a moderator who obviously had an interest in not letting this be posted (I wonder who and why) once again we see posts being deleted and edited to enable those in the know to keep making money.

the problem is when news like this gets out then it takes more than a few tin pot moderators/dictators to keep it under wraps


regards
CW :mad: :mad: :mad:

davieb
07-31-2002, 19:56
Yeh, I didn't try to negate the importance of the deleted post- just of its contents (Their on many sites now, including the JIC forums, posted there by er2000!)

I think this forum is good, but if we want to keep up with the current event, we need to look at other forums also (PlanetGSM, NFREE, etc)

This forums policy, whereby moderators are (as you say) dictators is causing problems for those who can't afford the £10000 solutions in advance of us all. The posts regarding FAiD gone missing were the most appawling, as half of them were mine - giving free software developed with the help of many people!

I think things need sorting!

Chances are, this post too will dissapear as it goes against the word of some moderator (tho maybe not, now I've said it - they dont want to look like real dictators do they???)

...

zfrank
07-31-2002, 20:12
What subject was in the deleted thread?
Who posted it ?
I which forum?

I look in the log-file who deleted the treads..

davieb
07-31-2002, 20:21
The post was at http://forum.gsmhosting.com/vbb/showthread.php?s=&threadid=51206

But its not the only one (I dont keep track of the others) - they just dissapear on the whim of mods, usually under the guise of being off topic for the forum its posted in!
I will make a list in future - it might interest you!

Anyway, thanks for looking into it..

Regards

CRowmAN
07-31-2002, 20:42
I guess whilst mods trade there will always be some posts dissapearing in their forum..
it aint just on here either, it happens on all forums where money can be made.
Its everyones instincts to protect their business.. if a mod is already earning from a particular thing they will try to keep it under wraps.

ALieN_CHeMiST
08-01-2002, 02:04
Then maybe the current Mods need to be reviewed, not that I have anything against them. But if the forum is going to be a sales platform for a select few to sell their products for ridiculous prices they might as well close the board and just send us a newsletter once a month telling us whats new. The idea of a forum for enthusiasts and proffesionals to share their knowledge seems quite utopian now. Maybe the reason you can rate threads is just the beggining of a masterplan by the mods to charge for access to the best rated threads. Nothing would surprise me now!! I understand that people have products and they want to sell them, but the sales section resembles a political arena with hints of cloak and dagger novel. From GSM to character assasination, all is welcome. And you're right davieb, it needs to be sorted. Maybe some sort of user council could get access to the logs once a week or something to review the actions taken by the moderators?

Just a thought

davieb
08-01-2002, 02:19
@Jim:
Wow - I like your thinking and idea of a council is quite creative!
Why dont we take it further? A sort of GSM community council?
With branches (Board moderation (then a subsection for each board), trade (with powers to request council members and associates impose a ban on trade with known cheaters), and some more)?

Just an idea - but it could bring to the GSM community the balance it has needed for some time. For big traders/developers this would be good - no-one could crash the market without fear of abbandonment by the council...

Of course - if established correctly, we'd have many people involved (traders, board admins, board mods, developers - all from a variety of countries) acting as checks and balances for each other ensuring power is not abused?

I don't know - might sound crazy but I think a "council" could fix many of the scene's problems today and may be a valuable thing to have in the future!

Please - get back, on the thread, everyone, and share your thoughts!

NOKIANEEDS
08-01-2002, 02:27
top idea, but electing these members of the council maybe a problem in itself

J
08-01-2002, 02:32
Hi,

The idea of a "GSM Council" sounds good, but it will always have a problem!

How do you expect people to stop from crashing market prices?

These elements will always do so, anything for a quick buck!!!

As for the consumers, they will always buy from a cheap source if the product seems to be genuine and in some cases not genuine!

The so called council will have a lot of headaches, from my point of view!

And yes, who would elect the council, how much money will be "bunged"!!!

davieb
08-01-2002, 02:45
@J:
I suppose, but if we take the council to have 2 categorys of people involved:
Those with Seats, who are directly involved in the running of the council, council related work and those respected in the gsm community, and
Members - those with access to council services as long as they follow the rules.

Now, to be a member, you'd have to follow the rules - If we have something worth offering then perhaps members (consumers) will stick to the guidelines?
They might not buy from more expensive retailers but we'd have a better community as a whole

As for preventing market crashes - if everyone does act as a check for everyone else, we can make sure the technology developed in the council stays there (perhaps a reasearch branch, concentrating on secure end user products??)


@NokiaNeeds:
Well, you may be right there - perhaps we could run non-competitive elections over say, a month? Whereby people are nominated then voted for, for a particular seat (e.g. r&d, one of the retail seats, etc)? The holder of the seat then organises his/her "staff" as they see fit..

Of course - NO-ONEwould be garunteed a seat - all "elections" would happen fairly.

Anyone found to be in abuse of power will have their seat revoked (after appropriate discussion with seat holders of course)..

The way internet standards are developed is, and initial idea is put forward (in an RFC) then refined by those involved or wishing to participate. We could do this with the council - someone could start off with a list of recommended departments, amount of seats per departement (e.g. retail would have enough seats to encompass the major retails from which the initial products come, not resellers - tho the end product security research team would hold only one seat)

I am not suggesting this would be "quick-to-press" and it WOULD need a fair amount of planning but I think if everyone wanted it enough it could come into existance thru cooperation and work!

It have a major effect on the gsm community as a whole and therefor have many implications that need to be understood!

davieb
08-01-2002, 02:46
As for direct money contributions - I can't say..
I'm just elaborating on Jim's idea of a board council..

For it to be fair - we'd have to have input from all who wish to be involved!

ALieN_CHeMiST
08-01-2002, 02:51
I was thinking more of protecting the use of the forum for it's members than the traders. So that when something becomes public knowledge it is public knowledge and not hampered by traders who still have stock. The danger of market crashes would be avoided with realistic prices in the first place. The user council would have to be randomly selected every so often, at least part of it just to maintain the idea of a user council!! Maybe use the amount of posts or the rating of a member to qualify to be selected. With 15000 members there must be a few truly impartial people with a bit of common sense.

davieb
08-01-2002, 02:55
Yehp - I suppose your right there!

What I suggested was, of course, not a replacement of your idea but rather an expansion!

The different branches would allow for both user and retailer protection!

I myself am a user - into r&d more that retail (my age and earnings prohibit me becoming a major retailer in the market)

I just thought it may solidify the scene (not just the market) - if it's a bad or unimplementable idea then, lol, lemme know :D

CRowmAN
08-01-2002, 03:19
jeeez does everything have to be money based, why should it even be considered "A Market"..
I thought these sort of forums were really for hobbyists and a group of people to help each other learn a bit and mayb save each other a few quid.
Myself Ive worked on a few different little projects in many ways similar to gsm (never actually gsm yet but I am taking a interest now).
I would never dream of charging joe public fortunes for anything I consider to be a hack, about everything I have worked on has been for the pleasure of doing it. My payment has always been the pleasure I got in suceeding in what I attempt, and the thanks and appreciation from others Ive shared with.
I spose I'll never be rich with this way of thinking.. But at least Im always happy, unlike many of the gsm traders now.

davieb
08-01-2002, 03:31
@CRowmAN:
Yehp - I feel the same way... But if you were to try to use it to stabilise the scene and you missed out the retail market then you'd probably not have support from the retailers

You'll soon learn money/retail has pretty much taken over the scene these days - Check out NFREE forums tho for a more develpment/hack type approach to things!

ALieN_CHeMiST
08-01-2002, 03:36
@davieb: my post was intended to appear after J's. I hadn't seen your reply:-)

I think you might be laying the foundations for a user council. At least we've bought certain issues to light!!

@CRowmAN: U got the right idea:-))

davieb
08-01-2002, 04:53
Lol, I do it all the time (open a window, post a reply, forget to refresh and post :D)

Well, if it works out - fair enough! If not, was just a possible suggestion :D

CW
08-01-2002, 08:14
I am so glad that this post was at least noticed by Zfrank as this is not the first time this has been overlooked, many have complained bitterly since DCT3 was finally put to bed by dejan about BIG brother Syndrome.

On DCT4 being free there were to my knowledge 3 posts deleted for no reason other than financial even a post by er2000 himself telling everyone that this was now free was deleted by the Mods and I know many of the old and trusted members are leaving in droves because of this unfair abuse of the board.

if we cannot regulate ourselves then maybe we should get rid of the Sales Forum as this in my opinion is the downslide of this once great Forum that is failing fast to commercial pressures.

Regards
CW

marketmike
08-01-2002, 08:16
Understand the sentiments behind such an idea but I reckon it's unworkable myself.

The web moves at such speed it's impossible too control, and afterall is the web not about freedom and lack of control?

Just as "The developers" couldn't control the market for long, neither can anyone else. I still think if the initial purchase price of DCT4 had been at the level we saw for the last few weeks a lot of traders would have happily bought the dongle etc as I did. Because of the games and attempts at controlling the price beyond what the consumer would bear look what happens.

End of the day there are plenty of forums on the web, personally I still rate this as the best, but the regular reports of threads being deleted or altered is becoming worrying.

Guess we'll all vote with our mouses over the coming months which forums we continue too visit.

Bads
08-01-2002, 08:52
You want to make a council?!?!

Bwahahahahahahha...wadda joke!!!

Guys i put ONE simple question to you...who would you trust?
At the end of the day how do you know the new elected mods were trustworthy?

The way i see it is that ANYTHING can be bought...for the right price...mods included! It would be a waste of time as greed gets the best of everyone especially in the virtual world such as this.

It would make no difference whatsoever as to the outcome of new elected mods. I think mods are doing a great job in here with the exception of a few (pointing NO fingers)

zfrank and other admins need to keep a tight grip of the deleted posts etc. I feel that for every post that is deleted there should be a PUBLIC LOG as to WHY it got deleted maybe zfrank can incorporate this into the forum as this would make clear as to the reasoning behind the post being deleted. Just a crapy message saying 'incorrect section' IS NOT GOOD ENOUGH!

As to the forum itself i rate it No1 on the NET, since joining it i have gained a wealth of knowledge and not to mention free software!

I, like market mike, bought a dongle for £150 quid on tuesday and on the following saturday it whent free...i was not bothered about this as i have said in my last posts i rather pay and get support for a reasonable price rather than an irrecoverable one.

If this deleteing thing continues no-one will trust anyone else in here and may result in a decline in sales via this forum and even worse mass movement of people from this forum to others.

Thanks for reading.

carlito
08-01-2002, 09:25
Even a message posted by Dejan was deleted by Y2k when he give his flasher program free to us and this was the reply of Dejan

Dejan Kaljevic
Junior Member


Registered: Feb 2001
Member: 3354
Location:
Posts: 20

To Y2K
What do you mean "Off Topic"
Without me you never be able to have "Flasher"
section!
Also, my software is tool for "Flasher" that allows changing MCU & PPM.



Again, my site is: http://users.net.yu/~dejan/



Report this post to a moderator | IP: Logged

02-24-2002 18:53

And this was the reply from Y2k

Y2K
Administrator


Registered: May 1999
Member: 69
Location: home
Posts: 312


dejan you got mail!


__________________
best regards Y2K



Report this post to a moderator | IP: Logged

02-24-2002 19:18


Dejan Off Topic hahahaha lol

Bph&co
08-01-2002, 11:12
Originally posted by carlito
Even a message posted by Dejan was deleted by Y2k when he give his flasher program free to us and this was the reply of Dejan

Dejan Kaljevic
Junior Member


Registered: Feb 2001
Member: 3354
Location:
Posts: 20

To Y2K
What do you mean "Off Topic"
Without me you never be able to have "Flasher"
section!
Also, my software is tool for "Flasher" that allows changing MCU & PPM.



Again, my site is: http://users.net.yu/~dejan/



Report this post to a moderator | IP: Logged

02-24-2002 18:53

And this was the reply from Y2k

Y2K
Administrator


Registered: May 1999
Member: 69
Location: home
Posts: 312


dejan you got mail!


__________________
best regards Y2K



Report this post to a moderator | IP: Logged

02-24-2002 19:18


Dejan Off Topic hahahaha lol


Hi,

Please dont bring this old story here !

Y2K was 100 % right. Dejan is nothing more than any other
member.

If he wants to be here he needs to follow basic rules like everyone else.

If you think he is a g o d - please feel free to pray in your house,
not here. We dont like the way he comes here and strike
with his thunder lights !

How many times he answered a question in 10 pages thread ?

The guy just use this place like a private message board.

But I aggree with davie about the er2000 posting 2 days ago ( the one with the Hex).

It was so funny - I opened it and while reading pressed refresh and the Topic was gone.

Sometimes even my postings in Sales got edited - I think is kinda
not proffesional to edit other Moderators postings, but maybe
whoever does this - has his good reasons.

BR

BufferMess
08-01-2002, 16:43
To Bph&co

Have you ever tried to find out who edited your posts? I think it is not so hard!

I don`t know whether a moderator has privileges to edit other mods post but I think within few months our forum is going to weaken.

Best Regards
Sean

Bads
08-01-2002, 19:18
Bhp&Co

I dont agree with you mate when you say Dejan comes and goes...after all like the post sugests there would not be a flasher section if it was not for him!!! and how can you say pray to him in your own house?! It was his research that brought us the DCT-3 and now may even bring DCT-4?

All haaaill dejan *bow* *bow*

OK so his postings are few and far between mate BUT remember i bet you most people in this forum have joined or remain faithful to this forum is because of his postings and free software which he has provided over the last year. I give repect where its due and Dejan Deserves a lot for what he has done. He has given more valuable and FREE software on here than anyone else!

But i agree with you it is funny how threads go missing, admin needs to do more to keep a track and its not hard to find out who deleted what thread.

Bph&co
08-01-2002, 20:37
Hi,

Well you have the right to cherish him as much as you like, but the
words you say only prove that you have only surface knowledge
about this business.

1. All the Reverse Engineering Dejan does is not unique and I can
tell you the names of at least of 3 people that are better programmers and Reverse Engineeres than him. They just prefer
to stay in the shadow.

2. If you go back in History you will see that all his free releases
were because he wanted to harm other peoples business, lead
by greed and envy, not because he is Father of Hackers and
like people like you and does this for fun.

3. And for the last 3 years in this Forum I have been reading posts
by a thousands of members and there is only one who never answer questions to help others or enter any discussion, but the same time create a mess for monhts. You know his name.

I respect your opinion, because you have one. But I still stay
behind Y2K - even no one else agree with him that time.

Best Reagards

CRowmAN
08-01-2002, 23:07
Im sorry but I cant undersand this bit of the last post


2. If you go back in History you will see that all his free releases
were because he wanted to harm other peoples business, lead
by greed and envy, not because he is Father of Hackers and
like people like you and does this for fun.


I respect people like Dejan who GIVE their work away, They spend many many many hours studying for the benefit of all of us.

The thing I cant understand here... where is Dejans greed ??
His GIVE his work away for free..
The only greed I see here is the greed of the big traders and wannabe traders who were charging small fortunes for all the hacks and are kinda miffed coz even dct4 is free..

At the end of the day unlocking a phone is a hack and its people like Dejan who have made it all possible.. If it harms other peoples business then thats kinda tough luck... if Dejan is doing it for free why should others earn from his work and other people like him.

Bads
08-02-2002, 00:10
im afraid i agree with crownman i think dejan has no motive, when people sell for extortionous prices i and a long with many people agree that people like dejan are a ***send, after all monopolising something is wrong, and for critisising people who release thier OWN work is wrong also.

I respect other peoples opinions but i would rather give my work away and claim fame rather than be hacked by my own employees (DCT-4) who claim to be my friend and then steal work just to make a few quid.

i can understand the frustration for people who invest big amounts of money into a project only to find it is free the next day because some 4ssw1pe has hacked it. If the price was right in the first place you would sell a lot more units AND if someone was to steal or hack your software then it would not be such a big deal anyway as people would respect the value for money they have recieved and would then willingly stick up for software authors/distributors and BUY AGAIN.

just my thoughts.

thanks for reading.

Charly
08-02-2002, 01:02
Hi all

I think this is getting off topic now but Bph&co is not saying Dejan is not a good guy he is saying that he is motivated by the same market forces that have crept up in this topic and he is right Dejan has only given away anything to either stop others making money or to make money himself.

1.DCT3 was given away in "*******" competition with Zulea and his Nokey box (Remember those)

2.DCT3 FAID Calculation was given away with IMEI software after it was cracked again to stop people making money.

3.IMEI changing was sold at 10.000 a pop then given away to stop others that hacked it making money.

4.Dejan will probably release DCT4 unlock now he wont make anymore from it, but you wont see him giving any IMEI solution until he makes his money or someone else works it out.

Dejan is in this game to make money like anyone else and only gives when it serves his purpose.

Please dont start shouting ungrateful because your wrong I am very grateful and have said this many times, but he is not G0D and I wont bow to serve him, he is a very intelligent man who deserves alot of credit for his work but Bph&co is still correct you only got given what you got to spite someone else full stop.


Regards
Charlie

Meam
08-02-2002, 01:32
Originally posted by Bph&amp;co



Hi,

Please dont bring this old story here !

Y2K was 100 % right. Dejan is nothing more than any other
member.

If he wants to be here he needs to follow basic rules like everyone else.

If you think he is a g o d - please feel free to pray in your house,
not here. We dont like the way he comes here and strike
with his thunder lights !

How many times he answered a question in 10 pages thread ?

The guy just use this place like a private message board.

But I aggree with davie about the er2000 posting 2 days ago ( the one with the Hex).

It was so funny - I opened it and while reading pressed refresh and the Topic was gone.

Sometimes even my postings in Sales got edited - I think is kinda
not proffesional to edit other Moderators postings, but maybe
whoever does this - has his good reasons.

BR
:D :D :D
are you trying to be funny?

ALieN_CHeMiST
08-02-2002, 03:22
See what I mean about this forum!!!! We started talking about deleted posts and the personal stuff is coming out already. I don't give a toss if "A" is a better programmer than "B".
What matters is that A has no power over what B decides to give away, for whatever reason.

@Bph&Co: You're a moderator yourself and claim to have had posts deleted, but you seem to not have questioned why or by who. What are we moderating?? Language? Or what we eat? Or what gets published and what not.? What are good reasons for editing a post? You sell your box of tricks for 100, I still have 25 left that cost me 100. So I edit your post so I can sell my 25 useless boxes and don't loose my precious money. The punter's loose out because your box is better and cheaper than mine, but anytime someone goes to post something good about your product (or bad of mine) I use the power of Mod to remove/delete/postpone or even re-write the whole thread!!

Forum? I don't think so, more like the Senate if you catch my drift.

legija
08-03-2002, 06:55
Or, mybe this is what you are looking for ?

:10000000020BF3C2B530B4FD7E08EF25E0FF30B43B
:10001000FD20B4FD30B003430701DEEE30B4FDD265
:10002000B520B4FD22C2B57E0830B4FDEF30E70440
:10003000D2B58002C2B520B4FDEF25E0FFDEEA3084
:10004000B4FDD2B520B4FD22C2B57E0830B4FDEFB8
:1000500030E704D2B58002C2B520B4FDA2B030B5FD
:1000600001B392B5EF25E0FFDEE230B4FDD2B5205A
:10007000B4FD22C2AF1200038F081200038F0912D1
:1000800000038F0AE50A540F601D24FC602724FC3E
:10009000603924FD605424FC60558000E50AC45496
:1000A000F0F590B2B180FC1200038F30AF30053014
:1000B00012004880F77F011200257F021200257F81
:1000C000031200257F0412002580FE753006120001
:1000D00003D530FA7F011200257F021200257F032D
:1000E0001200257F0412002580FE12000380FBE42D
:1000F000F530120003741B2530F8A6077413253061
:10010000F8E4F60530E530C3940840E67E057F88C4
:100110007D1B120598E4F533F532F534F535E4F539
:10012000307E00E5352530FFEE3534FE74DE2FF5E8
:1001300082EE3401F583E493FF740B2530F8A607B3
:10014000E6FF2532F53274132530F8E6FE740B25F0
:1001500030F8EF6EF60530E530B408C51207EDE46F
:10016000F530740B2530F8E6FF2533F5337413258D
:1001700030F8A607740B2530F8E6FF12002505308D
:10018000E530C3940840DB74082535F535E4353493
:10019000F534C3E53594A0E5349403408185320BF2
:1001A000E532F4F50C85330DE533F4F50E750F5B90
:1001B0007510727511AE7512367E057F907D1B121B
:1001C00005981207EDE4F530740B2530F8E6FF12C0
:1001D00000250530E530C3940840ED80FE228830CC
:1001E000000807001300004000000500000000A404
:1001F0000000050000000108000005000000016C7F
:1002000000000500000001D00000050000000234DD
:10021000000005000000029800000500000000003A
:1002200000003F007F206F07FFFFF80002FC030083
:100230000503000000003F007F206F3EFFFFC0006D
:1002400002FF02000103000000003F007F206F3F1B
:10025000FFFFC000030102000103000000003F0097
:100260007F206F07FFFF07FE030308000503000060
:1002700000003F007F206F07FFFF07FE030B080011
:100280000503000000003F007F206F07FFFFF8001C
:10029000031303000503000000003F007F206F3EB2
:1002A000FFFFC000031602000103000000003F0032
:1002B0007F206F3FFFFFC000031802000103000012
:1002C00000003F007F206F07FFFF07FE031A0800B2
:1002D0000503000000003F007F206F07FFFF07FEBF
:1002E000032208000503000000003F007F206F0785
:1002F000FFFFF800032A03000503000000003F0091
:100300007F206F3EFFFFC000032D020001030000AD
:1003100000003F007F206F3FFFFFC000032F02005F
:100320000103000000003F007F206F07FFFF07FE72
:10033000033108000503000000003F007F206F0725
:10034000FFFF07FE033908000503000000003F001F
:100350007F206F07FFFFF800034103000503000043
:1003600000003F007F206F3EFFFFC00003440200FB
:100370000103000000003F007F206F3FFFFFC0002F
:10038000034602000103000000003F007F206F07CA
:10039000FFFF07FE034808000503000000003F00C0
:1003A0007F206F07FFFF07FE0350080005030000D2
:1003B00000003F007F206F07FFFFF8000358030095
:1003C0000503000000003F007F206F3EFFFFC000DC
:1003D000035B02000103000000003F007F206F3F2D
:1003E000FFFFC000035D02000103000000003F00AA
:1003F0007F206F07FFFF07FE035F08000503000073
:1004000000003F007F206F07FFFF07FE0367080023
:100410000503000000003F007F206F07FFFFF8008A
:10042000036F03000503000000003F007F206F3EC4
:10043000FFFFC000037202000103000000003F0044
:100440007F206F3FFFFFC000037402000103000024
:1004500000003F007F206F07FFFF07FE03760800C4
:100460000503000000003F007F206F07FFFF07FE2D
:10047000037E08000503000000003F007F206F0797
:10048000FFFFF800038603000503000000003F00A3
:100490007F206F3EFFFFC0000389020001030000C0
:1004A00000003F007F206F3FFFFFC000038B020072
:1004B0000103000000003F007F206F07FFFF07FEE1
:1004C000038D08000503000000003F007F206F0738
:1004D000FFFF07FE039508000503FFFFFFFFFFFF77
:1004E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C
:1004F000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C
:10050000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB
:10051000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEB
:10052000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB
:10053000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCB
:10054000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBB
:10055000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAB
:10056000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B
:10057000FFFFFFFFFFFFFFFFFFFFFFFFFFFF6CAC71
:10058000121EDBEDC3C248944A33789011AFF23C9F
:10059000304902EA6BD588468E368F37E4FFE5375F
:1005A0002FF582E43536F583E493FEED2FF8E6FC73
:1005B000EE6CFE74272FF8A6060FBF08E1228E23EB
:1005C0008F248C258D26E4FFE5242FF582E4352346
:1005D000F583E493FE74272FF8A6060FBF08E9E41D
:1005E000FFEFC39B501BE5262FF582E43525F583ED
:1005F000E493FEEF54072427F8E6FDEE6DF60F8036
:10060000E022AE2FEEC3948840037F0022052FEE38
:1006100054072427F8E6FFEE131313541F900BE240
:1006200093F8EF08800123D8FDFFEE900B5A932F2B
:10063000FF227D08EDC454F0F52F120602EF620B85
:10064000120602C3E50C9FF50C120602C3E50D9FCE
:10065000F50D120602EF620E120602EF620F12068D
:1006600002C3E5109FF510120602C3E5119FF511B4
:10067000120602EF6212AF051DEF70030207ECAC29
:100680000F850C0F850D0C8C0DAC10850E1085118F
:100690000E8C11C3E50B950FF50BC3E50F950BF50C
:1006A0000FC3E50C9510F50CC3E510950CF510C3C0
:1006B000E50D9511F50DC3E511950DF511C3E50E89
:1006C0009512F50EC3E512950EF512C3E50B950DC7
:1006D000F50BC3E50D950BF50DC3E50F9511F50F62
:1006E000C3E511950FF511C3E50C950EF50CC3E5A7
:1006F0000E950CF50EC3E5109512F510C3E5129595
:1007000010F512C3E50B950CF50BC3E50C950BF535
:100710000CC3E50D950EF50DC3E50E950DF50EC355
:10072000E50F9510F50FC3E510950FF510C3E51112
:100730009512F511C3E5129511F512EDC454F0248C
:1007400008F52F120602C3E50B9FF50B120602EF08
:10075000620C120602EF620D120602C3E50E9FF54F
:100760000E120602C3E50F9FF50F120602EF62108C
:10077000120602EF6211120602C3E5129FF512ED96
:10078000C454F0F52F120602E50B900A5A936FF548
:100790000B120602E50C90095A93C39FF50C120642
:1007A00002E50D90095A93C39FF50D120602E50E5E
:1007B000900A5A936FF50E120602E50F900A5A93AB
:1007C0006FF50F120602E51090095A93C39FF510BA
:1007D000120602E51190095A93C39FF51112060201
:1007E000E512900A5A936FF512020676227D08E40C
:1007F000F52FAF051DEF7003020921120602EF620B
:100800000B120602EF250CF50C120602EF250DF572
:100810000D120602EF620E120602EF620F120602BE
:10082000EF2510F510120602EF2511F51112060240
:10083000EF6212120602E50B90095A932FF50B1284
:100840000602E50C900A5A936FF50C120602E50DAC
:10085000900A5A936FF50D120602E50E90095A930D
:100860002FF50E120602E50F90095A932FF50F127D
:100870000602E510900A5A936FF510120602E51170
:10088000900A5A936FF511120602E51290095A93D5
:100890002FF512E50B250CF50C250BF50BE50D25B9
:1008A0000EF50E250DF50DE50F2510F510250FF5AC
:1008B0000FE5112512F5122511F511E50B250DF5A2
:1008C0000D250BF50BE50F2511F511250FF50FE59E
:1008D0000C250EF50E250CF50CE5102512F512254C
:1008E00010F510E50B250FF50F250BF50BE50C2585
:1008F00010F510250CF50CE50D2511F511250DF55C
:100900000DE50E2512F512250EF50EAF0C850F0C18
:10091000850D0F8F0DFF85100E8511108F110207A9
:10092000F2120602EF620B120602EF250CF50C1212
:100930000602EF250DF50D120602EF620E120602F9
:10094000EF620F120602EF2510F510120602EF25D6
:1009500011F511120602EF621222012DE293BE453B
:1009600015AE780387A4B838CF3F08670994EB2603
:10097000A86BBD18341BBBBF72F74035489C512F84
:100980003B55E3C09FD8D3F38DB1FFA73EDC8677FC
:10099000D7A611FBF4BA92916483F133EFDA2CB548
:1009A000B22B88D199CB8C841D14819771CA5FA317
:1009B0008B573C82C4525C1CE8A004B4854AF613F1
:1009C00054B6DF0C1A8EDEE039FC209B244EA99829
:1009D0009EABF260D06CEAFAC7D900D41F6E43BC5C
:1009E000EC5389FE7A5D49C932C2F99AF86D16DB7B
:1009F000599644E9CDE646428F0AC1CCB965B0D2DA
:100A0000C6AC1E4162292E0E7450025AC3257B8A41
:100A10002A5BF0060D476F709D7E10CE1227D54CD5
:100A20004FD679306836757DE4ED806A9037A25EE6
:100A300076AAC57F3DAFA5E51961FD4D7CB70BEEEC
:100A4000AD4B22F5E7732321C805E166DDB3586994
:100A500063560FA1319517073A288000B00960EF5F
:100A6000B9FD10129FE469BAADF8C038C2654F06EF
:100A700094FC19DE6A1B5D4EA88270EDE8EC72B33F
:100A800015C3FFABB6474401AC25C9FA8E411A2104
:100A9000CBD30D6EFE2658DA320F20A99D8498051F
:100AA0009CBB228C63E7C5E173C6AF245B876627D6
:100AB000F757F496B1B75C8BD55479DFAAF63EA30D
:100AC000F111CAF5D1177B9383BCBD521EEBAECC9E
:100AD000D63508C88AB4E2CDBFD9D050593F4D624F
:100AE000340A4888B5564C2E6B9ED23D3C0313FB0E
:100AF0009751754A917123BE762A5FF9D4550BDC64
:100B000037311674D777A7E607DBA42F46F3614584
:100B100067E30CA23B1C8518041D29A08FB25AD88C
:100B2000A67EEE8D534BA19AC10E7A49A52C81C4A5
:100B3000C7362B7F439533F26C686DF00228CEDD0B
:100B40009BEA5E997C1486CFE542B840782D3AE95D
:100B5000641F92907D396FE0893000000000000032
:100B6000000016733B1E8E70BD86477E2456F177BB
:100B70008846B1BAA3B7100AC537C95A28AC64A5CC
:100B8000ECABC66795580DF89AF666DC053DD38A3E
:100B9000C3D86AE9364943BFEBD49B68A0655D576B
:100BA000921F715CBB22C1BE7BBC63945F2A61B89B
:100BB0003432FDFB1740E6511D418F29DD0480DEF4
:100BC000E7317F01A2F739DA6F23FE3AD01CD1302A
:100BD0003E12CD0FE0A8AF82592C7DADB2EFC28797
:100BE000CE75000306010407020500030601040791
:100BF000020500758137020073FFFFFFFFFFFFFF53

carlito
08-03-2002, 08:49
dct4 dongle?

Bph&co
08-03-2002, 09:10
Hi,

To Charly: thanks for understanding - it is visible that you follow
what has been going on for the last few years. It is sad that all
this is not known by most of the members and a lot of people
feel under estimated and they just prefer to go away.

Typical example is the good friend of mine Y2K - who had all the
anger and rage of most members just because he didnt follow the
common opinion. He used to help a lot of people, but as you know
he is not with us for a long time...

To Bads: I dont have anything against programers giving their
work for free. I just see this history repeating - giving free becauce of hate - nothing more.

To Alien: Maybe you know maybe not - I dont really care do we
sell or not. I feel better if dont fight over business, simply not worth it.

Hopefully the things we do are usefull to somebody. Yes not all
of them are free, but hacking HW require money, I am not rich so
need to have something to invest, sorry.

Yes I aggree that editing posts in favour to sell your product is
bad, but only demand create supply so why not you guys spent
some time making products and give them not cheap - give them
free on the first time. All of us will be so happy, we all be friends,
and this discussion will be useless.

Best Regards

gsmxxx
08-03-2002, 09:21
It is true that some moderators on this site abuse their position and powers to benifit their own pockets! NO names mentioned!

Admin - There is a vbulletin hack which logs every action of every moderator! Maybe you should install this if u havent done so already! :)

BufferMess
08-03-2002, 15:56
Thanks Meam. I pointed my question to Bph&Co but get right answer from you!

Best Regards
Sean Archer

marketmike
08-04-2002, 03:07
As mentioned this thread seems too have gone "Off Topic", so far the best idea I've seen is the public log and reasons for editing or deleting a thread/post.

Such an idea would only take a little extra work for the mods, but the transparency or not of their decisions would hopefully allay any fears amongst posters behind their reasons.

Anyway, doubt much more can be said, hopefully the admin and other's will consider such an idea for the benefit of all concerned.

Bads
08-04-2002, 09:31
gsmxxx:

vbulletin hack you say! Great maybe this can be incorporated into a public deleted/moved section.

Main way i see it that this can work is to force a link to be created in the original thread to a public 'reasons' section where the reason for the move is declared. This way the thread is moved easily and a comprehesive log is created of ALL reasons for movement/deletion.

This thread is going off topic, someone close it.

Cheers all.

pez8210
08-05-2002, 08:02
@Legija Dongle? Dct-4 Clip?

Please tell to us;)

Tom_x
08-06-2002, 00:22
Hex from Legija is dongle hex (atmel 89c4051) for dct4 unlocker (starwars version)

pez8210
08-07-2002, 04:44
thanks tom

Noiser
08-09-2002, 14:18
Anyone has schemas for this clip¿

Thanks in Advance:cool:

davieb
08-09-2002, 16:58
Its not a clip - Its a dongle!

brinki
08-09-2002, 20:39
Hi!

If someone have this scheme DCT4 dogle, please send to forum.
brinki@seznam.cz

Thanx

:rolleyes: :rolleyes: :rolleyes: :rolleyes:

brinki:rolleyes: