Results 1 to 6 of 6

Thread: RFID and the SQL Injection

  1. #1
    Senior Member gore's Avatar
    Join Date
    Oct 2002
    Location
    Michigan
    Posts
    7,177

    RFID and the SQL Injection

    http://reviews.cnet.com/4520-3513_7-...ml?tag=nl.e501

    Pretty cool article on the possibilities.

  2. #2
    PHP Code:
    function sanitize_int($integer$min=''$max='')
    {
      
    $int intval($integer);
      if(((
    $min != '') && ($int &lt$min)) || (($max != '') && ($int &gt$max)))
        return 
    FALSE;
      return 
    $int;

    http://www.antionline.com/showthread...hreadid=264685

    RFID is useful but shouldn't be used until it can support proper security... it will be hammered at first just like any "new" technology...

  3. #3
    Master-Jedi-Pimps0r & Moderator thehorse13's Avatar
    Join Date
    Dec 2002
    Location
    Washington D.C. area
    Posts
    2,885
    /me remembers when wireless first came on the scene.

    Ahhh, the memories.

    Looks like we get to ride the wave again.

    Our scars have the power to remind us that our past was real. -- Hannibal Lecter.
    Talent is God given. Be humble. Fame is man-given. Be grateful. Conceit is self-given. Be careful. -- John Wooden

  4. #4
    Well, you can all thank Wal-Mart for pushing the technology that wasn't ready for prime time.

  5. #5
    Member
    Join Date
    Sep 2005
    Posts
    77
    Semi-recently saw an article about Nokia manufacturing a new phone... or rather an RFID kit built into the shell of the phone that reads and can retransmit RFID data. Scary to think about any device that can pick up potential malicious RFID code and retransmit it to another medium.

    Clicky Clicky
    %42%75%75%75%75%72%70%21%00

  6. #6
    Senior Member gore's Avatar
    Join Date
    Oct 2002
    Location
    Michigan
    Posts
    7,177
    I saw an article about that too. Not that it bothers me, I mean every peice of kit I've ever heard of had a point where the kit was new and needed more testing that you can't get out of anything but releasing to the public.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •