Page 2 of 2 FirstFirst 12
Results 17 to 26 of 26

Thread: Can anyone see any sort of relationship between these numbers?

  1. #17
    The late but legendary peterb - Onward and Upward peterb's Avatar
    Join Date
    Aug 2005
    Location
    Looking down & checking on swearing
    Posts
    19,378
    Thanks
    2,892
    Thanked
    3,403 times in 2,693 posts

    Re: Can anyone see any sort of relationship between these numbers?

    So the first set of numbers is a seed for the code that generates the second set?

    That would imply that there is no casual relationship between the two, especially if it is being used as a security application..

    It could be some sort of hash function or a seudo-random number generator but I don't think you will find any obvious pattern.

    You could generate some form of rainbow table by writing code that generates the input sequence of numbers starting at 0000-0001 and ending at 9999-9999 (assuming that is a valid range - if they are time related that may not be the case) and analysing the output generated by the code (it is the source code that has been lost?) but I don't think that would help much in deducing the algorithm.
    (\__/)
    (='.'=)
    (")_(")

    Been helped or just 'Like' a post? Use the Thanks button!
    My broadband speed - 750 Meganibbles/minute

  2. #18
    Banhammer in peace PeterB kalniel's Avatar
    Join Date
    Aug 2005
    Posts
    31,043
    Thanks
    1,881
    Thanked
    3,382 times in 2,718 posts
    • kalniel's system
      • Motherboard:
      • Gigabyte Z390 Aorus Ultra
      • CPU:
      • Intel i9 9900k
      • Memory:
      • 32GB DDR4 3200 CL16
      • Storage:
      • 1TB Samsung 970Evo+ NVMe
      • Graphics card(s):
      • nVidia GTX 1060 6GB
      • PSU:
      • Seasonic 600W
      • Case:
      • Cooler Master HAF 912
      • Operating System:
      • Win 10 Pro x64
      • Monitor(s):
      • Dell S2721DGF
      • Internet:
      • rubbish

    Re: Can anyone see any sort of relationship between these numbers?

    So you have an encoding function translating the first set into the second.. you're going to need a much bigger sample and some number crunching to figure out the function imho.

  3. #19
    jim
    jim is offline
    HEXUS.clueless jim's Avatar
    Join Date
    Sep 2008
    Location
    Location: Location:
    Posts
    11,466
    Thanks
    614
    Thanked
    1,649 times in 1,310 posts
    • jim's system
      • Motherboard:
      • Asus Maximus IV Gene-Z
      • CPU:
      • i5 2500K @ 4.5GHz
      • Memory:
      • 8GB Corsair Vengeance LP
      • Storage:
      • 1TB Sandisk SSD
      • Graphics card(s):
      • ASUS GTX 970
      • PSU:
      • Corsair AX650
      • Case:
      • Silverstone Fortress FT03
      • Operating System:
      • 8.1 Pro
      • Monitor(s):
      • Dell S2716DG
      • Internet:
      • 10 Mbps ADSL

    Re: Can anyone see any sort of relationship between these numbers?

    I agree with Kalniel.

    The program will surely have been designed to protect against this kind of thing? Or at least it won't make the numbers easy to guess. It could be doing any combination of a fairly wide array of functions, since a chain of 50 operations would only take milliseconds on a modern PC to run.

    If it's dividing, throwing away remainders, picking a digit within the result, multiplying that by another digit, and then dividing by the square root of a different digit... no-one's got any hope.

    Unless you know that it was a fairly simple function in the original source code, I'd give up

  4. #20
    Seething Cauldron of Hatred TheAnimus's Avatar
    Join Date
    Aug 2005
    Posts
    17,168
    Thanks
    803
    Thanked
    2,152 times in 1,408 posts

    Re: Can anyone see any sort of relationship between these numbers?

    Quote Originally Posted by peterb View Post
    You could generate some form of rainbow table by writing code that generates the input sequence of numbers starting at 0000-0001 and ending at 9999-9999 (assuming that is a valid range - if they are time related that may not be the case) and analysing the output generated by the code (it is the source code that has been lost?) but I don't think that would help much in deducing the algorithm.
    And the winner is!

    Look for the convergence where you have the same output from different inputs. Normally these types of hashing functions do collide. But I don't think you have that code to be able to run it any more, so your a bit stuffed.

    Or you could send me the compiled binary that validates the code, I've a long train journey on Friday assuming I don't fly down, and its been a while....
    throw new ArgumentException (String, String, Exception)

  5. #21
    Technojunkie
    Join Date
    May 2004
    Location
    Up North
    Posts
    2,580
    Thanks
    239
    Thanked
    213 times in 138 posts

    Re: Can anyone see any sort of relationship between these numbers?

    Hexus = cracking forum now?

    You've effectively said "hi, write me a keygen pls, kthxbai"

    How about a different angle - is the database itself unencrypted?
    Last edited by mikerr; 30-06-2010 at 09:42 AM.
    Chrome & Firefox addons for BBC News
    Follow me @twitter

  6. #22
    Seething Cauldron of Hatred TheAnimus's Avatar
    Join Date
    Aug 2005
    Posts
    17,168
    Thanks
    803
    Thanked
    2,152 times in 1,408 posts

    Re: Can anyone see any sort of relationship between these numbers?

    err he claims its an in house bit of VB, some places to curtail external use of their binaries do this sort of thing.

    I've seen a lot of code that simply throws if the PC isn't a member of a certain domain (obviously compiled as a string const!)
    throw new ArgumentException (String, String, Exception)

  7. #23
    Technojunkie
    Join Date
    May 2004
    Location
    Up North
    Posts
    2,580
    Thanks
    239
    Thanked
    213 times in 138 posts

    Re: Can anyone see any sort of relationship between these numbers?

    Yes, but the point needed to be made!

    Hacking the binary may be a better idea, if contacting the author ( if even known) is out of the question.
    Chrome & Firefox addons for BBC News
    Follow me @twitter

  8. #24
    HEXUS webmaster Steve's Avatar
    Join Date
    Nov 2003
    Posts
    14,283
    Thanks
    293
    Thanked
    841 times in 476 posts

    Re: Can anyone see any sort of relationship between these numbers?

    Train a multi-layer artificial neural network on the keys you have, then (hopefully) it'll "Just work" for any input you give it
    PHP Code:
    $s = new signature();
    $s->sarcasm()->intellect()->font('Courier New')->display(); 

  9. #25
    Banhammer in peace PeterB kalniel's Avatar
    Join Date
    Aug 2005
    Posts
    31,043
    Thanks
    1,881
    Thanked
    3,382 times in 2,718 posts
    • kalniel's system
      • Motherboard:
      • Gigabyte Z390 Aorus Ultra
      • CPU:
      • Intel i9 9900k
      • Memory:
      • 32GB DDR4 3200 CL16
      • Storage:
      • 1TB Samsung 970Evo+ NVMe
      • Graphics card(s):
      • nVidia GTX 1060 6GB
      • PSU:
      • Seasonic 600W
      • Case:
      • Cooler Master HAF 912
      • Operating System:
      • Win 10 Pro x64
      • Monitor(s):
      • Dell S2721DGF
      • Internet:
      • rubbish

    Re: Can anyone see any sort of relationship between these numbers?

    Quote Originally Posted by Steve View Post
    Train a multi-layer artificial neural network on the keys you have, then (hopefully) it'll "Just work" for any input you give it
    And you won't be any closer to the underlying algorithm They've got a black box already

  10. #26
    Headless Chicken Terbinator's Avatar
    Join Date
    Apr 2009
    Posts
    7,670
    Thanks
    1,209
    Thanked
    727 times in 595 posts
    • Terbinator's system
      • Motherboard:
      • ASRock H61M
      • CPU:
      • Intel Xeon 1230-V3
      • Memory:
      • Geil Evo Corsa 2133/8GB
      • Storage:
      • M4 128GB, 2TB WD Red
      • Graphics card(s):
      • Gigabyte GTX Titan
      • PSU:
      • Corsair AX760i
      • Case:
      • Coolermaster 130
      • Operating System:
      • Windows 8.1 Pro
      • Monitor(s):
      • Dell Ultrasharp U2711H
      • Internet:
      • Virgin Media 60Mb.

    Re: Can anyone see any sort of relationship between these numbers?

    Kalniel: "Nice review Tarinder - would it be possible to get a picture of the case when the components are installed (with the side off obviously)?"
    CAT-THE-FIFTH: "The Antec 300 is a case which has an understated and clean appearance which many people like. Not everyone is into e-peen looking computers which look like a cross between the imagination of a hyperactive 10 year old and a Frog."
    TKPeters: "Off to AVForum better Deal - £20+Vat for Free Shipping @ Scan"
    for all intents it seems to be the same card minus some gays name on it and a shielded cover ? with OEM added to it - GoNz0.

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Why my relationship failed (getting it out of my system)
    By Andeh13 in forum General Discussion
    Replies: 66
    Last Post: 17-04-2010, 12:52 PM
  2. Problem with massive numbers of "undelivered" mail items coming through...
    By Shmee150 in forum PC Hardware and Components
    Replies: 13
    Last Post: 25-10-2007, 12:16 PM
  3. Looking for some sort of 3.5mm Mini headphone socket switch.
    By Trash Man in forum Consumer Electronics
    Replies: 1
    Last Post: 11-10-2007, 09:32 PM
  4. Help me sort my BIOS
    By Steve in forum PC Hardware and Components
    Replies: 0
    Last Post: 23-12-2003, 04:44 PM
  5. please help sort out a SATA/winxp problem?!?!
    By dgr in forum PC Hardware and Components
    Replies: 4
    Last Post: 27-08-2003, 10:04 AM

Posting Permissions

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