Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
blogs.pcworld.com
Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
1–10 of 15 posts
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#2Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#3The lack of encryption in these things is just astonishing. Sure, encryption isn't a magic bullet, but it's the first line of defense, and most programming languages make it so damn easy to use.
I wonder how long hackers have been exploiting these things _without_ announcing them.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#4The lack of encryption in these things is just astonishing. Sure, encryption isn't a magic bullet, but it's the first line of defense, and most programming languages make it so damn easy to use.
What's more, for many of these kinds of systems, encryption that is anything more than a speed bump is very hard to get right, because of key management and round trip limits.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#5The lack of encryption in these things is just astonishing. Sure, encryption isn't a magic bullet, but it's the first line of defense, and most programming languages make it so damn easy to use.
Somehow, I'm guessing they're not running a JVM on an TI MSP4xx microcontroller. It's actually not damn easy to get encryption working on controller boards. What's more, for many of these kinds of systems, encryption that is anything more than a speed bump is very hard to get right, because of key management and round trip limits.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#6The lack of encryption in these things is just astonishing. Sure, encryption isn't a magic bullet, but it's the first line of defense, and most programming languages make it so damn easy to use.
Somehow, I'm guessing they're not running a JVM on an TI MSP4xx microcontroller. It's actually not damn easy to get encryption working on controller boards. What's more, for many of these kinds of systems, encryption that is anything more than a speed bump is very hard to get right, because of key management and round trip limits.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#7Earlier quoted context omitted.
Somehow, I'm guessing they're not running a JVM on an TI MSP4xx microcontroller. It's actually not damn easy to get encryption working on controller boards. What's more, for many of these kinds of systems, encryption that is anything more than a speed bump is very hard to get right, because of key management and round trip limits.
Even in a controller card, it's very easy to at least do some Caesar cipher or anything simple like that. They could even do something a little more complex without much troble.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#8Earlier quoted context omitted.
Somehow, I'm guessing they're not running a JVM on an TI MSP4xx microcontroller. It's actually not damn easy to get encryption working on controller boards. What's more, for many of these kinds of systems, encryption that is anything more than a speed bump is very hard to get right, because of key management and round trip limits.
A lot of controllers have builtin encryption hardware. If you put encryption in the original spec, its not that hard to include.
I'm not sure it's that easy when you're constrained to a 16 bit part that can't big bigger than a wallet, has almost no power available, needs to be distributed in volumes of hundreds of thousands or more, needs to cost almost nothing per part, and needs to be one of the vendors that plays well with RF.
Again, this also misses the point that key management and protocol design are more important than the algorithm; it's not necessarily an easy problem to provision keys to 1,000,000 floating devices, nor is it necessarily easy to design a secure protocol that has to run in 1 round trip at 45MPH.
Just some thoughts. Obviously we can agree that this system needs to be more secure. I'm not sticking up for FasTrak; I'm just trying to respect the problem.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#9Earlier quoted context omitted.
Even in a controller card, it's very easy to at least do some Caesar cipher or anything simple like that. They could even do something a little more complex without much troble.
I'm not sure what the security advantage of ROT13 is.
Re: Transportation Hack 2.0: Flaw Found Calif.'s FasTrak System
#10Earlier quoted context omitted.
I'm not sure what the security advantage of ROT13 is.
I didn't say ROT13, it could be ROTx, or it could have a variable x (as with a big key), whatever... the advantage would be to make it slightly more difficult to find the meaning of the numbers in the card. I know security by obscurity doesn't work, but it's better than nothing.