Slashdot Mirror


User: Fruit

Fruit's activity in the archive.

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

Comments · 198

  1. Re:hardly unfortunate on How Not to Write FORTRAN in Any Language · · Score: 2, Informative
    Actually C has those too:
    int main(void) {
    char x[7][13];
    printf("%d\n", sizeof x);
    return 0;
    }

    % ./a.out
    91
  2. Re:Finally - make it an impulse purchase on Think Secret Predicts Sub-$500 Headless Mac · · Score: 1

    True, you have support libraries in the /Library folder that may be orphaned, but this happens in every OS

    This doesn't happen in Debian (if you use deborphan or debfoster). In Debian, every file is accounted for and dependencies are documented. No guesswork involved and your system will remain a lot cleaner.

  3. Re:Cool. Upgrade Path on Firefox 0.10.1 Released, Fixes Security Hole · · Score: 1

    apt doesn't do that, the hardworking package maintainers do that.

  4. Re:Now we know nothing will ever be done about spa on UN Takes Aim At Spam Epidemic · · Score: 2, Insightful

    It's only a commercial activity in the sense that robbing old ladies is a commercial activity. I don't see any problem in restraining that.

  5. Re:Damn Straight. on Beastie Boys Respond to DRM Claims · · Score: 2, Informative

    Downloading is allowed under copyright law. Offering it for download isn't.
    (Dutch copyright law).

  6. Re:Great browser, but... on A Look at the Newly Released Mozilla Firefox 0.9 · · Score: 1

    Apply the background to the html-tag instead of the body-tag and you'll be fine. Or at least, that's what worked for me.

  7. Re:Next Time on Venus Transit Finished · · Score: 2, Interesting

    This website has ready-made movies for your downloading convenience.

  8. Re:Non-issue on GoboLinux Compile -- A Scalable Portage? · · Score: 1

    Yes please, if zle would support multibyte character encodings. Which it doesn't.

  9. Re:Flame me if you want... but... on A First Look At The GIMP 2.0 · · Score: 1

    I think you'd rather want to use jpegtran for rotations: it rotates your JPEGs losslessly.

  10. Re:completely underwhelmed by Subversion... on Subversion 1.0 Released · · Score: 1

    That size problem is just the DB log. In older versions you could clean it up using svnadmin list-unused-dblogs and the newer versions (based on db4.2) remove them automatically.

  11. Re:Project competition on Mandrake Blocked By XFree86 4.4 License · · Score: 1

    Two wrongs don't make a right.

  12. Re:NTFS not GPL, FAT not free on XFS Merged into Linux 2.4 · · Score: 1

    Journalling helps against sudden crashes, not against media corruption. Soft updates might be a much better option.

  13. Re:ext3vs XFS? on XFS Merged into Linux 2.4 · · Score: 3, Informative

    ext2dump is unsupported; in particular I recall a quote from Linus to the extent that anyone who uses ext2dump might just as well not make backups at all.

    xfsdump on the other hand will work correctly.

  14. Re:YEAH, WOO HOOO - ALRIGHT! on XFS Merged into Linux 2.4 · · Score: 1

    Delete times were mostly fixed in XFS 1.3, if I recall correctly.

  15. Re:An Overview on XFS Merged into Linux 2.4 · · Score: 3, Informative

    No. That is wrong. It's usually *harder* to retrieve a deleted file from an XFS filesystem than from ext2/ext3, not in the first place because the on-disk structures are more complicated.

  16. Re:For a kernel compilation newbie... on Linux 2.6.0-test9 Released · · Score: 1
    But more importantly, the 2.6 kernels use a new set of module handling utilities!

    You need to grab a module-init-tools package from somewhere. This package should be able to coexist with the previous modules package so that you have a way to go back to a 2.4 kernel if need be.

  17. Re:Problem of semantics on Linux Crypto Packages Demolished · · Score: 1
    It's one thing to find flaws in Open Source products, but Peter *did* get a bit too personal with his "penis-shaped sound waves" remark. He may be right (I think he is) but phrasing it like that will simply make those developers take a defensive stand instead of a constructive one.

    This is what inspired the grandparent post, not the actual problems that Gutmann found.

  18. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1

    tinc encrypts RSA_KEYLEN bits of data using the RSA key. That part is in the docs.

  19. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1
    Mallory sends CHAL_REPLY SHA1(H2) encrypted with S1 to Bob, Bob responds with CHAL_REPLY SHA1(H1) encrypted with S2 to Mallory. Mallory sends CHAL_REPLY SHA1(H1) encrypted with S2 to Alice. Alice responds with CHAL_REPLY SHA1(H2) encrypted with S3 to Mallory.

    Mallory at this point only knows H2 encrypted with S2, but not H2 itself because Mallory doesn't know S2. He therefore can't send CHAL_REPLY SHA1(H2) encrypted with S1. The attack fails.

  20. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1

    tinc already pads to RSAKEYLEN by the way. Not exactly raw.

  21. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1

    No, I didn't miss it. I was just guessing which attack you're referring to.

  22. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1
    Alice encrypts the session key with Bob's public key, and sends it across the network. Mallory takes the packets and deletes it. Mallory encrypts his own session key with Bob's public key, and sends it to Bob. Mallory then creates a second (possibly different) session key and encrypts it with Alice's public key and sends it to Alice. Mallory sends Bob a encrypted challenge string, and Bob replies with hashed results. Mallory repeats this with Alice.

    The challenge that Alice sent is encrypted using the original session key. Bob decrypts it with Mallory's fake key and gets garbage. The hash of this garbage is not what Alice expects and Alice drops the connection.

    Vice versa, Bob sends Alice a hash, encrypted using Mallory's fake session key. Alice decrypts it with her real session key and gets garbage. When she returns the hash of this garbage, Bob rejects it and closes the connection.

    In your scheme you also subvert the other session key. This only makes the mess worse for Mallory, because now the challenge replies get garbled as well.

    The reply that Bob returns to Mallory's challenge is simply the hash of Mallory's challenge, decrypted using Mallory's own session key. No information is leaked here.

  23. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1
    The problem here seems to be that what is called an "IV" in this instance isn't really an IV in the sense that it usually has with CBC ciphers.

    This counter is prepended to packets to provide the necessary perturbation that is enough to make packets different. In fact, this is preferable to using random numbers because you avoid the birthday paradox.

    As for the RSA argument: assuming you're referring to the problem of page 236 of Practical Cryptography by Ferguson and Schneier: tinc uses the 0xFFFF value for the rsa e value, a string would have to be as short as 2048^(1/65535), which means 1 bit, to be vulnerable. Needless to say that the keys that are sent like this are a little longer than that.

  24. Re:Peter Gutmann and tinc on Linux Crypto Packages Demolished · · Score: 1

    The challenge is encrypted with one key and the challenge reply is encrypted using the other key. If Mallory switched out a key then either the challenge or the challenge reply is going to be encrypted with a key that the first side didn't expect and the challenge will fail (after decryption, only garbage remains).

  25. Re:Anime is considered a sexual fetish by the APA. on Oscar Nominations (LotR, Spirited Away, and more) · · Score: 1

    Uh, have you actually seen Spirited Away? It's a children's movie, for crying out loud.