Slashdot Mirror


User: pathological+liar

pathological+liar's activity in the archive.

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

Comments · 239

  1. Re:Ethanol not worth it! on Ethanol More Trouble Than It's Worth? · · Score: 0

    Okay, now explain why an insightful/informative post like that gets modded funny.

  2. It's still extremely possible to do that. on Finnish Firm Claims Fake P2P Hash Technology · · Score: 0

    SHA gives a 160bit hash. Even assuming the algorithm is perfect, there will be collisions for anything over 160bits long. Even something the size of an mp3 (a couple megabytes) will likely have many, many collisions that are the same size.

    It's extremely possible, the challenge is finding them.

  3. Drop back down to a single CD? on Gnome Removed From Slackware · · Score: 0

    I wonder if this means Slackware will drop back down to a single CD install.

  4. Dark, Emotional and Tragic, huh. on Star Wars Episode 3 PG-13? · · Score: 1, Insightful

    Because we all know how dark, emotional and tragic PG13 movies are.

  5. Re:GNOME 2.10 on Gnome 2.10 Released · · Score: 1

    When the new features being written up are "hey look, a minor change to the desktop in the way window focus is handled!" is it even worth the story?

  6. GNOME 2.10 on Gnome 2.10 Released · · Score: 3, Funny
  7. Re:Is it really this hard... on Four New Unpatched Windows Vulnerabilities · · Score: 1

    Yes.

    If the length of the mem to copy is stored in a signed int, you can get an integer overflow that will let it pass your MAX_BUFFER_SIZE check and overflow the buffer. If you're dealing with strings, you should probably be checking for MAX_BUFFER_SIZE - 1, because a handful of string-related functinos (at least in C) like to copy the null terminator over as well.

  8. Er, well, no. on Warezed SoundForge Files In Windows Media Player · · Score: 1

    It says "http://slashdot.org/search.pl?topic=133" Please Drive Through

  9. Re:Ohhh on Cellphones Usable on Airplanes in 2006? · · Score: 1

    The reason the hammer myth was considered debunked was because it didn't make enough of a difference. I haven't seen that show in a while, but if I remember correctly, dropping the hammer made something like 1g difference... and since that difference turned out to be 279g vs 280g at point of impact, it means essentially nothing since you'll be dead anyway.

  10. No kidding. on 3D Monitor · · Score: 1

    Talk about depth perception.

  11. It can be on Macintosh 2004 Case Mod · · Score: 1

    Don't tell me you've forgotten A/UX?

  12. It's a rediculous amount to seek. on Analysis of RIAA vs Princeton Student · · Score: 1

    Raise awareness of a rediculous lawsuit (and maybe poke a bit of fun at kevin mitnick too) with a bumper sticker or a t-shirt design.

  13. This sounds kind of familiar... on The Thin Line Between Reality and Video Games · · Score: 1

    would you like to play a game?_

  14. This isn't the same thing. on Local Root Hole in Linux Kernels · · Score: 1

    This isn't a race condition with ptrace and execve, this is the kernel not handling threads properly with ptrace.

    That being said, there are mitigating factors ... packetstormsecurity.nl has a kernel module that disables ptrace for all users other than root (aptly named "ptracekm") ... and users of grsecurity with randomized pids turned on should be safe as well, since the exploit assumes child = mypid+1