Slashdot Mirror


User: Cassivs

Cassivs's activity in the archive.

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

Comments · 46

  1. Re:Uh, "not quite" anyone? on Will Pervasive Multithreading Make a Comeback? · · Score: 1

    > Do you know were I can pick up a Cray for the house?
    Sure, try eBay.
    > And while you're out shopping, can you pick up a connection machine as well?
    That will be harder. :-)

  2. Re:So what? on SSH Vulnerability and the Future of SSL · · Score: 2
    The article says:
    The researchers studied user dynamics and determined that the timing information of the keystrokes leak information about the key sequences typed at about 1 bit of information about the content per keystroke pair. Because the entropy of passwords is only 4-8 bits per character, this 1 bit per keystroke pair information can reveal significant information about the content typed.
    So, let's say you have an 8 character password now. That's 7 key pairs (1-2, 2-3...7-8). So, you lost 7 bits of "randomness" in your password. Add two more randomish characters, and, assuming that you get 4 bits of entropy per character, you're now better off than you were before. And the brute force is now harder than it was before this attack was considered. 10 characters isn't that much worse than 8.
  3. Re:IE Stable? You're dreaming. on Linux: Browser Wars · · Score: 1

    Actually, Opera can do anti-aliased text too. There is a screenshot floating around somewhere too, but i can't find a link at the moment.
    As a sidenote, there's a new "technology preview" version of Opera for Linux out now.

  4. Re:Yes, it's real. on A Few Baaaaaad Apples · · Score: 1

    For those who can't read Japanese, you could try Babelfish, although the translation is quite terrible.

  5. Neater code on Calendar: Code, Free Speech, Or Mathematics? · · Score: 2
    Personally, I think this little snippet is much more obfuscated, and well, just more like "that's hacker code.":

    int dow(int m,int d,int y)
    {y-=m<3;return(y+y/4-y/100+y/400+"-bed=pen+mad. "[m]+d)%7;}

    Even though it only works for "a restricted range." This comes from here, which has some other information too.

  6. Re:I really don't think you meant multiuser on NetBSD/Alpha goes multiprocessor · · Score: 1

    Linux won't run on the 3000/300L now either. :)
    That pesky TURBOChannel bus.
    (The one on my desk is running OSF/1 at the moment)

  7. Re: large numbers (YES!) on Skirting AOL Checksumming -- Legally? · · Score: 2

    Oh,
    They don't just request checksums of aim.exe, they're currently requesting checksums of part of proto.ocm, and can probably request any file in the aim distribution they like. (the extension isn't actually sent, tcpdump shows "proto*" and the offset/length coming from the server during the request for an md5sum).
    so it's _considerably_ much worse than your calculations.

  8. Re:Problem with the checksum server on Skirting AOL Checksumming -- Legally? · · Score: 1

    The easy way out is to grab the latest libfaim from cvs, merge it with whatever fairly newish version of gaim you prefer- and then look at faimtest to see how it answers the md5 requests, and fix gaim appropriately. Then, find the aim binaries you need, put them where they're useful, and you're all set. (I've been connecting like this for a few weeks now).

    Or, older versions of gaim (i know gaim-0.9.20) have working oscar, and weren't affected apparently by the md5 digest thing, but newer versions of gaim are prettier/have more features/etc.

    Of course, current gaim clients are working fine right now.

    But, actually taking the checksums of the client is a slightly better fix (not perfect, but better).

    I'm not a big fan of this "central server distributing md5 sums" thing.

  9. Re:wait a second... on Slashdot Moving To FreeBSD · · Score: 2

    slashdot is currently in waltham, massachusetts eastern time.

  10. Re:OSCAR protocol work arounds. on AOL vs. Open Source AIM Clones · · Score: 2

    md5 digests are 128 bits.

  11. Re:DIRTY! on AOL vs. Open Source AIM Clones · · Score: 1

    hmm...
    Using v. 1.1.112 of the official client for Linux (not the java client), it hangs on "Verifying username and password" for me. Which it didn't do a week ago. And gaim/toc can login with this username. Maybe I'm just having odd problems though :)
    But the official Win32 client will run under wine, so if all else fails, that should keep working fine. (for those who need to read away messages, or for whatever other reason need OSCAR)

  12. Re:DIRTY! on AOL vs. Open Source AIM Clones · · Score: 2

    oh yeah...
    and the official AIM linux client is broken now too I do believe. :)
    great luck huh?
    at least toc still works, and the same trick won't work there. (tik is the legacy client that they won't (i hope) break support for- and it's open-source).

  13. Re:Primes aren't countable on Illegal Prime Number Unzips to DeCSS · · Score: 2

    Well, this number (call it N) is not neccesarily prime really, it could be divisible by a prime not on your list (which also shows that the primes are infinite).
    Example: 2*3*5*7*11*13+1=30031=59*509.
    More a little technicality than anything- the number itself is not always prime, but it does have a least divisor D (other than 1) such that D is not on your list and D is prime. (D can be N itself if N is prime).
    That said, the comment you replied to didn't say the primes were finite.

  14. Re:Uh... Isnt this an old hole? on Security Hole In TCP · · Score: 1
    From the post I responded to:

    Again, IIRC, OpenBSD's stack uses some of the best random numbers (as shown by nmap when it tries to predict the OS of the target.)

    Other than that, thanks :) I was curious as to why OpenBSD was rated so much lower. (although it's all relative)

    Background research for slashdot? What a strange idea. :)

  15. Re:Uh... Isnt this an old hole? on Security Hole In TCP · · Score: 2
    Hmm, let's test a few of my machines...
    #nmap -O hostname

    OpenBSD 2.8:
    TCP Sequence Prediction: Class=random positive increments
    Difficulty=28836 (Worthy challenge)
    Remote operating system guess: OpenBSD 2.6

    Digital (Tru64) UNIX 4.0F:
    TCP Sequence Prediction: Class=random positive increments
    Difficulty=355 (Medium)
    Remote OS guesses: Digital UNIX OSF1 V 4.0,4.0B,4.0D,4.0E, Digital UNIX OSF1 V 4.0-4.0F

    Linux 2.2.18:
    TCP Sequence Prediction: Class=random positive increments
    Difficulty=3738947 (Good luck!)
    Remote OS guesses: Linux 2.1.122 - 2.2.14, Linux kernel 2.2.13

    I don't have much else to test, but it seems to me that the Linux TCP/IP stack uses significantly better random numbers than OpenBSD, as shown by nmap. I'd wager some others do too.

  16. Re:List of CPU architectures supported by Linux? on Linux On Another New Architecture: PowerPC 64-bit · · Score: 2

    There's another list here, with some other ports mentioned, that a quick google search turned up.

  17. Re:List of CPU architectures supported by Linux? on Linux On Another New Architecture: PowerPC 64-bit · · Score: 2
    There's a list of most of the currently supported architectures available here, mentioning the architectures actually in the kernel tree, and some that aren't.
    Of course, this is not all of them, S/390 is even missing.

    And uLinux runs on architectures like the DragonBall, and other things too. I don't know of a complete list anywhere.

  18. No SMP yet though on Linux On Another New Architecture: PowerPC 64-bit · · Score: 1

    The little thread this started noted discrepancies in the number of CPUs reported in the bootlog (4, 8, and 1). There are 4 CPUs in the machine, it supports 8, and the native 64bit Linux port supports 1. But the 32bit Linux port (emulates 32bit on the Power3) supports SMP. I'd be interested to see a performance comparison between the 64bit native and 32bit emulation kernels. :)
    Of course, I assume SMP will be arriving sometime shortly.

  19. Re:Cool on Draft FIPS for the Advanced Encryption Standard · · Score: 1

    md5sum is a hash, meaning that it's a one way algorithm (it's believed impossible (very difficult) to get back the original text from the hashed text. Rijndael is a symmetric cipher, with a variable key length, meaning that, given knowledge of the key, it is trivial to get the plaintext (that's the whole point of it :). I'm not sure if Rijndael can be easily made into a hash (I would guess it could- maybe encode "" using the cleartext as the key?)
    On an somewhat unrelated sidenote: OpenBSD uses blowfish (by default) to encrypt passwords (cat /etc/passwd.conf). So I would _guess_ that it's apparently easy to transform a symmetric cipher into a hash. Although- I'm not a crypto expert. Although I have no idea on the relative security provided by Rijndael and MD5, I think Rijndael is considerably better, but that MD5 should suffice for typical systems.

  20. Re:Broken Mirrors on GNOME 1.4 Beta 2 is Out · · Score: 2
    ftp.snoopy.net:
    ftp> cd pub/gnome/stable/betas/gnome-1.4beta2
    550 pub/gnome/stable/betas/gnome-1.4beta2: No such file or directory

    ftp> open slave.opensource.captech.com
    ftp: slave.opensource.captech.com: Host name lookup failure

    download.sourceforge.net (ftp) doesn't have beta2 yet either, just the first. And rpmfind has too many users already. :)

    So, good luck finding a mirror :)

  21. Broken Mirrors on GNOME 1.4 Beta 2 is Out · · Score: 2
    Some of these mirrors are mighty broken:
    230- ftp.cybertrails.com
    230-Due to limited disk space at the moment,
    230-we have had to discontinue our gnome.org
    230-mirror for a month or so.

    can't find epoch.res.cmu.edu: Non-existent host/domain

    gnomeftp.blue-labs.org doesn't have beta up yet...

    Well, i think you get the picture, lots of broken mirrors.

  22. Re:The Painting Can Be Found Here on Van Gogh... the Astronomer · · Score: 1

    Actually, the article is more about "White House," although "Starry Night" is mentioned in passing. The original link is the correct one, of "White House."

  23. Re:The "layer" on Napster Adding "Protection Layer" · · Score: 2
    And what if this song is one that I wrote, that I don't mind freely distributing, would they put the "layer" in anyways?

    What if I owned the copyright to this hypothetical song, and forbade modifications to the file, would they be allowed to add this "protection layer?"

    Just a couple more thoughts, other than the ease of getting past it.

  24. Vapor everywhere on Uplifting Dolphins · · Score: 2

    From the article:

    Marten, who has been working with three dolphins at the park, says the dolphins already recognize and repeat the artificial whistles he has devised.

    However, they have yet to relate the whistles to the objects they refer to -- this will be the next goal of the research. "The second stage is to see if the dolphins recognize what the whistles stand for..."

    And then they claim that:

    "We'll be able to ask questions and they will be able to answer in very simple terms."

    All they have so far are dolphins mimicking sounds- no evidence that the dolphins can understand it at all. Like parrots.

    Seems vaporous to me. Or maybe I'm just cynical.

  25. Re:Why it's free? Simple.. on QNX Now Free For Non-Commercial use · · Score: 1

    I noticed on 2/2/01, when sunhelp.net mentioned it, and downloaded it (x86 only) the next day I think, to run on a laptop for a little bit (I have no Sparc hardware). So it's been a little while now, but not too long.