Slashdot Mirror


User: freaklabs

freaklabs's activity in the archive.

Stories
0
Comments
16
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 16

  1. Re:slashvertisement on How To Monitor Leaky Radioactive Water Tanks · · Score: 3, Interesting

    Hi. I live in Tokyo, am one of the founders of Tokyo Hackerspace, and would probably be considered one of the Japanese geeks.

  2. Re:Solar Perhaps on How To Monitor Leaky Radioactive Water Tanks · · Score: 2

    Hi. Actually these are storage tanks and are designed to hold water. Once they are filled, its unlikely water is pumped out unless there's a suitable place to dump it. That doesn't seem to be the case.

  3. Re:A really, really bad idea (seriously!) on Crowdsourcing Radiation Monitoring In Japan · · Score: 4, Informative

    Actually we're working with health physicists that were at Three Mile Island and geiger manufacturers. We also have two gamma spectrometers that we're using to identify isotopes and we're putting together data templates so that people who upload data can also mention the tube, conversion factor, CPM, orientation, etc. We're also collaborating with local universities who are also helping us collect data and will be using it in their research.

  4. Re:What a great project..! on A Video Guide To Akihabara · · Score: 1

    Yeah, actually we shot it on a Tuesday afternoon because the weekend would have been mayhem. A lot of the shops had no camera policies so Patrick filmed it all on his D-SLR hung at stomach level so that he just looked like a tourist rather than someone filming footage.

  5. Re:mostly pointless on A Video Guide To Akihabara · · Score: 2, Insightful

    Hee hee hee...yes, I love enclosures. But perhaps you missed the FPGA development boards, the canine robot, 300 yen 5.6-inch LCDs, induction motors, wall of thermocouples, wall of tweezers, wall of heat sinks, wall of fans, airwolf RC helicopter, EL wire vest, RGB acrylic panel, surplus components, and the giant Mario statue.

  6. Re:This won't affect the smart grid... on Smart Grid Computers Susceptible To Worm Attack · · Score: 2

    Hmmmm...I now realize that posting on Slashdot after I'm dead drunk is not a good thing...oh well...huzzah!!!

  7. Re:If you build it... on Smart Grid Computers Susceptible To Worm Attack · · Score: 1

    I agree. Instead of being covered up, this kind of thing needs to be brought into the open and the vulnerabilities need to be studied and understood. That's the quickest way to get them fixed.

  8. Re:lazy engineering on Smart Grid Computers Susceptible To Worm Attack · · Score: 3, Interesting

    And of course you can buy the old Radio Shack auto-dialer and replace the crystal. That turns it into a red-box where you can emulate the DTMF tones that signal coins being dropped into the slot.

  9. Re:This won't affect the smart grid... on Smart Grid Computers Susceptible To Worm Attack · · Score: 1

    p.s. you succeed.

  10. Re:This won't affect the smart grid... on Smart Grid Computers Susceptible To Worm Attack · · Score: 2, Informative

    Uhhh...I read the article. If it were a pure software exploit. It wouldn't be an expensive issue to fix as mentioned in the last line of the article.
    And if you read my blog article, you'd see that smart meters aren't able to communicate with each other and instead communicate on the utility's backhaul.
    And if you read my blog article, you'd see that Travis Goodspeed posted a blog article of his own detailing a side channel attack on 802.15.4.
    Uhhh...personally, I don't care if you read my blog or not, but since programmers normally try not to repeat themselves, you might want to check out my blog for details on this.

  11. This won't affect the smart grid... on Smart Grid Computers Susceptible To Worm Attack · · Score: 5, Informative

    The attack in question is a side-channel attack that is limited to using a microcontroller with an external 802.15.4 radio that includes an encryption engine. The actual AES-128 algorithm wasn't broken. Instead the vulnerability is that the AES keys are sniffed on the exposed bus when you load the keys into the radio's registers. Contrary to popular belief, you can't take over the nation's smart grid from this attack, and it would be difficult to even take over your neighbor's meter unless you broke into his house. I have more info on my site where I respond to the hack from Travis Goodspeed. The blog post is at http://freaklabs.org/index.php/Blog/Misc/Clearing-the-Air-About-Hacking-Into-The-Smart-Grid.html

    Akiba
    FreakLabs Open Source Zigbee Project
    http://www.freaklabs.org/

  12. $50 Downgrade on Performance Tests Show Early Windows 7 Build Beats Vista · · Score: 2, Funny

    Microsoft is the only company I know that can get its customers to pay for a downgrade.

  13. An Open Source Company Bites the Dust on Was the Yahoo-Google Deal a Ploy To Weaken Yahoo? · · Score: 1

    Although I am a google fan, I think that this article has some relevancy. It talks about a "certain non-evil company" that offered to buy it out to prevent it from taking VC investment. After which it got cold feet, the deal fell through, and the company went under. http://news.cnet.com/8301-13505_3-10053013-16.html

  14. Mixi on Japan To Get 1Gbps Home Fiber Connections · · Score: 1

    It's great how Japanese users can get 1 Gbps links to surf their Mixi friends faster. Japan should probably beef up the computer education so that the people can take advantage of the links.

  15. Re: No great feat on TCP/IP Meets Physical Reality · · Score: 2, Interesting

    I would have to say that the TCP/IP stack is a side show. The main feature is that it's an OS (or OS-like) that removes the burden of state machine implementation for protocol stacks. Each pseudo-thread is two bytes (one pointer) and it runs multiple processes. It also comes with a wireless sensor networking stack that can handle routing and mesh networking, a graphical toolkit for GUIs, and a library that's tailored towards memory-constrained protocol stack design. Did I mention you could also play Commodore 64 games with it?

  16. Using Contiki on my open source Zigbee project on TCP/IP Meets Physical Reality · · Score: 5, Interesting

    Currently, there are two popular "OSes" being used for wireless sensor networks. One of them is TinyOS and one of them is Contiki. The challenge is that WSN nodes are usually battery operated, small, and need to last for a very long time. That means that you're memory restricted and power restricted which are difficult limitations for OS developers. I prefer using Contiki on my open source Zigbee project because its developed in ANSI C, unlike TinyOS which requires a variant of C called NesC. I'm also using a lot of libraries from Contiki which is keeping the protocol stack size down. I'm probably around 30-40 kB right now which is already big by WSN standards. FYI, the Contiki uIP protocol stack is about 20kB including the OS. The Contiki OS alone is about 2.5 kB, and some people have gotten TCP/IP on it running with 250 bytes of RAM. Not sure how they pulled it off. Contiki is really an amazing OS. For those interested in checking out my project, in can be found here: http://www.freaklabs.org/ Akiba