Article Discussion Hacking the Database

Hacking the Database

  1. daniel

    daniel C-Busser Moderator

    Joined:
    Jul 26, 2004
    Messages:
    766
    Likes Received:
    20
    Location:
    Adelaide
    daniel submitted a new resource:

    Reports: Hacking the Database - Reports: Hacking the Database

    Read more about this resource...
     
    Last edited by a moderator: Nov 3, 2017
    daniel, Oct 22, 2004
    #1
  2. daniel

    daniel C-Busser Moderator

    Joined:
    Jul 26, 2004
    Messages:
    766
    Likes Received:
    20
    Location:
    Adelaide
    Bug #1

    Rohan found a bug in the above script!

    Code:
     <xsl:value-of select="substring(@Value,1,4)"/>,
     <xsl:value-of select="substring(@Value,6,4)"/>,
     <xsl:value-of select="substring(@Value,11,4)"/>,
    
    The script assumes all values are in the format 0xff (4 letters long), but low values get stored as 0xf (3 letters long), for example

    Code:
    <PP Name="GroupAddress" Value="0x1 0x2 0x4 0x8 0x10 0x20 0x40 0x80 0xff" xmlns=""/>.  
    
    So we'll have to figure out how to tokenise this value properly. Stand by for a revised script. Thanks Rohan!
     
    daniel, Jun 29, 2005
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.