Hi all.
Does anyone know where I can get T5Lukes cem cracking software?
Vida CEM swapping
-
hampus10699
- Posts: 1
- Joined: 1 March 2024
- Year and Model: 2006 V70
- Location: Sweden
- xanthefin
- Posts: 444
- Joined: 4 May 2019
- Year and Model: 1997 850
- Location: Pluto
- Has thanked: 106 times
- Been thanked: 130 times
Sure i can tell more as i get finished with project i started last year. I have programming ready and all how i just need finish one last piece and make then it clean after mess as into one usable thing.Skavac wrote: ↑01 Mar 2024, 11:30Can you tell me more? You can program the remote if UEM is missing? Can the long UEM code be sniffed from radio?xanthefin wrote: ↑29 Feb 2024, 03:24 You need go another way if you want add used remote in UEM.
This way only good if you get UEM + remotes as you already noticed SEED Key is rolling one.
You need program they remote itself if want make it as a new specially when UEM is missing or sniff it all via radio.
-
ricked
- Posts: 38
- Joined: 24 May 2021
- Year and Model: xc90
- Location: lowlands
- Has thanked: 6 times
- Been thanked: 2 times
its gone...Dudde wrote: ↑01 Mar 2024, 14:16Page 223hampus10699 wrote: ↑01 Mar 2024, 14:11 Hi all.
Does anyone know where I can get T5Lukes cem cracking software?
here you can get it again:
30 days valid
https://easyupload.io/15802z
-
oscilloscope
- Posts: 285
- Joined: 20 May 2022
- Year and Model: 2005
- Location: uk
- Has thanked: 27 times
- Been thanked: 11 times
sounds interesting...xanthefin wrote: ↑01 Mar 2024, 14:19Sure i can tell more as i get finished with project i started last year. I have programming ready and all how i just need finish one last piece and make then it clean after mess as into one usable thing.Skavac wrote: ↑01 Mar 2024, 11:30Can you tell me more? You can program the remote if UEM is missing? Can the long UEM code be sniffed from radio?xanthefin wrote: ↑29 Feb 2024, 03:24 You need go another way if you want add used remote in UEM.
This way only good if you get UEM + remotes as you already noticed SEED Key is rolling one.
You need program they remote itself if want make it as a new specially when UEM is missing or sniff it all via radio.
-
oscilloscope
- Posts: 285
- Joined: 20 May 2022
- Year and Model: 2005
- Location: uk
- Has thanked: 27 times
- Been thanked: 11 times
i attempted to message the guy who is selling these legacy programmers in ru but i never received a reply. mind you it was quite some time ago i messaged. ( somthing like 2-3 years ago)Kravi80 wrote: ↑19 Feb 2024, 10:42http://www.ddmauto.ru/programmatoryi/st ... c-m30855fw
Clk, busy, p50, p60 no need to be connected in M32C UART mode (in M32C SPI must be connected).
Chips adm... and 93c86 must be desoldered.
-
vtl
- Posts: 4724
- Joined: 16 August 2012
- Year and Model: 2005 XC70
- Location: Boston
- Has thanked: 114 times
- Been thanked: 605 times
You can read M32C for free with m16c-flasher.de software and $2 USB-UART adapter. Search for m16c-flasher.de in this topic for config and instructions.oscilloscope wrote: ↑03 Mar 2024, 13:48 i attempted to message the guy who is selling these legacy programmers in ru but i never received a reply. mind you it was quite some time ago i messaged. ( somthing like 2-3 years ago)
- sanjurjo
- Posts: 5
- Joined: 6 March 2024
- Year and Model: 2003 V70R
- Location: Pinneberg
- Has thanked: 3 times
Hi everybody,
I have a V70R MY2004 with a brick-style CEM (30657629).
What I want is to crack the PIN and upload it to d5t5 so I can enjoy VDASH even more.
What would be the right procedure here? As i understand, the only way to go with this CEM is to read it directly f.e. with an arduino nano using the code in this post (viewtopic.php?p=609357#p609357) from T5Luke. After that I would have the CEM-image as .bin. At what offset should I look for the PIN and how many bytes is it long? Or can T5Luke's tool (CEMtool) be used for finding it as well?
I'm completely new in this and I appreciate the work done here very much, as well as the patience with guys like me
I have a V70R MY2004 with a brick-style CEM (30657629).
What I want is to crack the PIN and upload it to d5t5 so I can enjoy VDASH even more.
What would be the right procedure here? As i understand, the only way to go with this CEM is to read it directly f.e. with an arduino nano using the code in this post (viewtopic.php?p=609357#p609357) from T5Luke. After that I would have the CEM-image as .bin. At what offset should I look for the PIN and how many bytes is it long? Or can T5Luke's tool (CEMtool) be used for finding it as well?
I'm completely new in this and I appreciate the work done here very much, as well as the patience with guys like me
-
vtl
- Posts: 4724
- Joined: 16 August 2012
- Year and Model: 2005 XC70
- Location: Boston
- Has thanked: 114 times
- Been thanked: 605 times
At offset 0x4000 or 0x6000. CEM CPU is 16 bit big endian, on x86 you may need to swap the bytes to little endian, like:sanjurjo wrote: ↑06 Mar 2024, 09:12 Hi everybody,
I have a V70R MY2004 with a brick-style CEM (30657629).
What I want is to crack the PIN and upload it to d5t5 so I can enjoy VDASH even more.
What would be the right procedure here? As i understand, the only way to go with this CEM is to read it directly f.e. with an arduino nano using the code in this post (viewtopic.php?p=609357#p609357) from T5Luke. After that I would have the CEM-image as .bin. At what offset should I look for the PIN and how many bytes is it long? Or can T5Luke's tool (CEMtool) be used for finding it as well?
I'm completely new in this and I appreciate the work done here very much, as well as the patience with guys like me
00 11 22 33 44 55 -> 11 00 33 22 55 44
I don't now if T5Luke's software does it. When I desoldered the flash and read it in the programmer I had to swap bytes.
-
dikidera
- Posts: 1304
- Joined: 15 August 2022
- Year and Model: S60 2005
- Location: Galaxy far far away
- Has thanked: 67 times
- Been thanked: 175 times
For byte swapping I recommend https://github.com/rgrahamh/byte-swappervtl wrote: ↑06 Mar 2024, 09:17At offset 0x4000 or 0x6000. CEM CPU is 16 bit big endian, on x86 you may need to swap the bytes to little endian, like:sanjurjo wrote: ↑06 Mar 2024, 09:12 Hi everybody,
I have a V70R MY2004 with a brick-style CEM (30657629).
What I want is to crack the PIN and upload it to d5t5 so I can enjoy VDASH even more.
What would be the right procedure here? As i understand, the only way to go with this CEM is to read it directly f.e. with an arduino nano using the code in this post (viewtopic.php?p=609357#p609357) from T5Luke. After that I would have the CEM-image as .bin. At what offset should I look for the PIN and how many bytes is it long? Or can T5Luke's tool (CEMtool) be used for finding it as well?
I'm completely new in this and I appreciate the work done here very much, as well as the patience with guys like me
00 11 22 33 44 55 -> 11 00 33 22 55 44
I don't now if T5Luke's software does it. When I desoldered the flash and read it in the programmer I had to swap bytes.
Has prebuilt binaries for Windows and is great for this.
-
- Similar Topics
- Replies
- Views
- Last post
-
- 1 Replies
- 6431 Views
-
Last post by RickHaleParker
-
- 5 Replies
- 8699 Views
-
Last post by forumoto






