Slashdot Mirror


User: apankrat

apankrat's activity in the archive.

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

Comments · 409

  1. Wipe the drive on Another Stab at Laptop Security · · Score: 1

    AFAIK wiping the drive does not remove their tracker unless you do a low-level BIOS format. Also if I remember correctly they had an option of having the tracker in the bios itself, so it was executing even before mbr is referenced. I talked to their CTO at some point and these guys were actually involved with IEEE and IETF to move forward some related standards. It is far more complex stuff than it seems from the first glance.

  2. Worthless on Project Gizmo Challenges Skype · · Score: 2, Interesting

    Repeat after me - security architecture must be open in order to be secure.

    Skype developers saying they use 32768 bit keys means absolutely zero if you cannot verify that.

  3. Re:I didn't think this was a big mystery. on Low-Hanging Moon Explained · · Score: 1

    Depends on the show, you know.

  4. It is indeed a very simplistic view on Cross Skilling Across Multi-OS Platforms? · · Score: 3, Insightful

    Almost everything boils down to a matter of syntax

    In case of Windows it actually boils down to being ready for most bizzare sh*t you cant even imagine.

    Like installing buggy USB driver f*cking up DHCP client's ability to renew IP address. Or installing desktop skinning software causing Windows to start failing installation of virtual network adapters. Or that disabling (certain) personal firewall software actually not having a full effect on a traffic until the next reboot.

    Truly entertaining stuff. Far more lively than just mastering command syntax :)

  5. Mars rocks on the surface on Russia Planning Double Mission to Mars · · Score: 2, Interesting

    .. it should have plenty of Mars rocks spattered on the surface

    Funny that they mentioned it...

    Can anyone explain how can 'a plenty of rocks' leave Mars and land on its moon ?

    Bonus question is to explain the appearance of 'martian meteorits' on Earth.

    Somehow I have troubles imagining the level of volcanic activity required to catapult rocks to the neighbouring planets ...

  6. Re:Maybe someone will find it interesting and help on Do Stealth Startups Suck? · · Score: 1

    Maybe someone will find it interesting and help. .. but most likely noone will. And the guy will blew his only chance to make good first impression (which he is wise enough to care about actually).

  7. In addition to that .. on If Bad Software Developers Built Houses... · · Score: 1

    Common practice is to embed steel pins into side of the door (where the hinges are) so that they would enter the door frame when the door is closed. Removal of hinges' pins wont do much in this case as the door can be opened by swinging only.

  8. It's also more secure on If Bad Software Developers Built Houses... · · Score: 3, Funny

    It is really hard to open outwards-swining door with a mighty foot kick :)

  9. Well, the question with anonymous p2p is .. on Is Rodi BitTorrent's Replacement? · · Score: 1

    .. do you really care about the anonymity of others to donate your bandwidth to the cause ?

    Relay-based anonymous p2p won't take off the ground unless they include enforcable fairness provisions. Does anyone know such p2p frameworks ?

  10. Re: communicate securely on Video for Skype Users · · Score: 2, Insightful

    ..communicate securely..

    Are you implying that Skupe lets you to communicate securely ? Last time I checked that claim that but offer no prove. Sorry, but closed-standard security should be treated as no security at all .. or you'll be in for a big surprise.

  11. Re: Pascal considered harmful on Free Pascal 2.0 Released · · Score: 1

    Let me spell it out for you -

    R e a l - M e n - D o n t - U s e - P a s c a l

  12. Re:Out of curiousity... on Free Pascal 2.0 Released · · Score: 2, Insightful

    Well it's got the strength of C ..

    I have no idea what the strength of the language is, but I do know that Pascal is a Context Free Grammar language. That what gives it an incredible compilation speed, but it also automatically means that it has very basic semantics compared to other languages in general and to C in particular.

  13. Moreover on Flaw Found in VPN Crypto Security · · Score: 2, Interesting

    Not having integrity protection enabled automatically opens ESP to the replay attacks, which are easier to mount and far more practical than the one described in TFA.

  14. No, it doesn't on Flaw Found in VPN Crypto Security · · Score: 1

    NAT traversal just adds another level of encapsulation and this 'vulnerability' applies to ESP itself.

  15. Better yet on Mars Rover Stuck in a Dune · · Score: 1

    > If this thing drives in reverse most of the time, wouldn't it be
    > more convenient to name front wheels .. err .. 'rear wheels' ?


    Or "the wheels formerly known as front"

  16. FYI: two types of 32bit binaries won't work on 64-Bit Windows Releases Now Available · · Score: 1

    Two types of 32bit binaries won't work in 64bit Windows -

    * drivers
    * shell extensions

    Don't know about latter, but it is trivial to rebuild former using x64 DDK. If the code is not a complete hack and has a grain of abstraction, then literally there's all there is to it - modify few header files and rebuild the sources.

  17. Re:I disagree w/RMS... on RMS Weighs in on BitKeeper Debacle · · Score: 1


    > WE GET IT

    Next time try to speak for yourself.

  18. Re:perfectly ethical on BitKeeper Love Triangle: McVoy, Linus and Tridge · · Score: 1

    What he did was perfectly ethical.

    Ethics is a subjective matter. I personally think what he did perhaps was legal, but not ethical. He is a person who is about to complicate kernel development process, because he decides to solve an non-critical problem in a highly contraversial manner.

  19. You are missing the original point on Sun's Schwartz Attacks GPL · · Score: 1


    First choise make you a slave forever. Second makes you a partner.

    But neither makes you wealthier, which was the point Mr. Schwartz was trying to make across.

  20. Hmmm .. on IE Developer Responds to Mozilla Accusations · · Score: 1

    The underlying NT is quite well-designed

    Slightly offtopic, but I wish I could say that about
    their network stack.

    NDIS is like a nightmare on steroids. Accompanying
    userspace API (IP helper, NetCfg, CM_xxx & co.) are
    not much prettier and far more buggier. Makes you
    really appreciate the simplicity of *nix networking.

  21. Re:Fingerprinting on Tracking a Specific Machine Anywhere On The Net · · Score: 2, Interesting
    a simple mod to the TCP/IP stack that alters the timestamp by some tiny, random amount

    No, this won't help as it changes the dispersion of the skew samples, but the mean value (that's what they measure) stays the same.

    What you need to do is to make your machine clock to appear run slower or faster to the external observer. You can do that by applying constant skew offset to your true clock gradually.

    For example, say clock() returns true machine clock, then
    uint my_clock() { return clock + clock()/1000; }
    will make it appear to be running .1% faster. Then if at the moment c0 you decided to slow it down, my_clock should look like -
    uint my_clock() { return clock() - (clock() - c0)/1000 + c0/1000; }
    and it will make the clock slow down to 99.9% of the true frequency.

    PS I guess it would still be possible to identify machines that skew their clock skew, but analyzing how they skew the skew, but I generously donate this idea to a post-grad community :)
  22. Having thought a bit about it .. on Tracking a Specific Machine Anywhere On The Net · · Score: 1
    static inline void tcp_syn_build_options(__u32 *ptr, ...)
    {
    ...
    - *ptr++ = htonl(tstamp); /* TSVAL */
    + *ptr++ = htonl(tstamp) + skew(jiffies);
    ...
    }
  23. Exactly on Tracking a Specific Machine Anywhere On The Net · · Score: 1
    net/tcp.h
    static inline void tcp_syn_build_options(__u32 *ptr, ...)
    {
    ...
    - *ptr++ = htonl(tstamp); /* TSVAL */
    + *ptr++ = htonl(tstamp) + jitter(); /* correlate this :) */
    ...
    }
  24. Let me guess .. on Tracking a Specific Machine Anywhere On The Net · · Score: 1

    It is a Novell server :)

  25. It won't impact it much .. on OSI Hopes To Decrease Number of Licenses · · Score: 1


    It won't impact it much, because they always welcomed Other/Proprietary Licenses.