Slashdot Mirror


User: EduardoFonseca

EduardoFonseca's activity in the archive.

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

Comments · 85

  1. Re:So.... on More On Save Enterprise Donations · · Score: 1

    Well, since it was all staged up in Hollywood, I guess every fucking production to date.

  2. They like the Theme Song! on More On Save Enterprise Donations · · Score: 1, Funny

    From TFA:

    ...The people airing this kind of TV have a responsibility; inspiration. Star Trek has inspired us, and particularly Enterprise, with its superb theme song that tells so much about our struggle to move space travel forward and closer to the public...

    Well. Now I get that theme song thing!

  3. Re:Competition.. on Yahoo Debuts Search APIs · · Score: 1

    Duh!

    http://www.google.com/apis/

  4. Re:OT: Stupid post from the past... on Mozilla Foundation Gains Rights to DevEdge Content · · Score: 1

    And another... Re:If... (Score:5, Insightful) by *weasel (174362) Alter Relationship on Wednesday July 16, @01:17PM (#6453327) IE will continue to be developed and extended by MS army of coders. they're just going to lock the browser major version to the OS and not supply a standalone download. if you're thinking that IE is on feature freeze, you're greatly mistaken.

    aside from that, new features and standards are only added by web developers when the critical mass of the target market has access to them. I doubt any 2nd party browser can pick up critical mass to get significant developer support - let alone in the span of time between MS OS releases.

    MS just isn't offering IE as a free standalone download. No doubt it's to escape legal backfire from their declaration that it's an integral part of the OS (if it really is - then you can't offer a free download as they do.)

    i'm not going to dismiss the possibility that something else might eclipse IE - but i am willing to dismiss the possibility that it'll happen as a result of lack of development and extension by MS.


    huahuahuahuahauhauhauha!

  5. OT: Stupid post from the past... on Mozilla Foundation Gains Rights to DevEdge Content · · Score: 1

    From the linked slashdot story:


    Re:If... (Score:4, Interesting)
    by halo8 (445515) on Wednesday July 16, @01:16PM (#6453315)
    your a fool

    your a fool to belive that M$ is just sitting back and waiting 2-3 years to release IE 7, right now they have an update ready to go for IE 6.5, and should some "new technologies" come out before the next OS, rest assured that M$ will release a patch with most of the other stuff they were plannig on releasing anywayse.


    IE 6.5? Ready to go? Man, we are in 2005 and almost 90% of the internet still uses IE 6.0.

    Who's the fool now? ;)

  6. Re:Workaround on BIOS-Approved PCI Cards For Laptops · · Score: 1

    Are you sure? AFAIK, my BIOS is from Phoenix. I will take a look again.

  7. Re:Workaround on BIOS-Approved PCI Cards For Laptops · · Score: 1

    I wonder if it works with my Compaq R3000z. :(

  8. Re:"Click" on Microsoft May Charge for Security Tools · · Score: 1

    And this click is the sound of my Wil Wheaton bookmark moving from my Picard folder into my Jar Jar Binks Folder :P

    Just kidding! ;)

  9. Re:In Soviet Russia... on Kerry Concedes Election To Bush · · Score: -1, Offtopic

    Where did I troll? You americans DID make a mistake. And you will regret it. I just loooove this moderators.

  10. In Soviet Russia... on Kerry Concedes Election To Bush · · Score: -1, Troll

    In soviet Russia, Bush re-elects YOU!

    But I guess that would be better than what you guys did there. Bush? 4 more years? Tsc. The world is ruled by the wrong country...

    You guys say so much about religious fundamentalism... but you guys re-elected a fundamentalist! What a pity, for the world. Well, you did elect The Terminator. So, I think, we could only expect that coming.

    What's next? Stallone for President? What a shame...

    SHAME ON YOU AMERICA! SHAME ON YOU!

  11. Re:IT-Less version of the story on Open Source in California Government · · Score: 0, Offtopic

    aaaaaarggghhh!!!

  12. IT-Less version of the story on Spam's U.S. Roots · · Score: 1
  13. IT-Less version of the story (now correct) on Open Source in California Government · · Score: 2
  14. Re:Stenography on Hydan: Steganography in Executables · · Score: 1

    Hey! This is slashdot! We can mkae all kndis of tipsos around heer!

  15. IT-Less version of the story on Open Source in California Government · · Score: 1

    http://ihatetheitdesign.slashdot.org/article.pl?si d=04/08/13/1317236&tid=103&tid=117&tid=185&tid =98

  16. Stenography on Hydan: Steganography in Executables · · Score: 2, Interesting

    Note that as far as I remember, stenography by definition is supposed to make it impossible to prove that there is data hidden there - one step further than normal encryption. It's not so much as about hiding the data as being able to deny its existance.
    One reason for this is if you have encrypted data on your disk, then courts can demand the password for it. Stenography allows you to insist there is no hidden data.

  17. How it works on Hydan: Steganography in Executables · · Score: 3, Informative

    Since a lot of people is asking, here it goes:

    - How it works
    --------------

    Overview: Hydan finds sets of equivalent instructions in the binary,
    and uses that redundancy to embed data. The larger the set of
    equivalent instructions, the more bits can be embedded. For example,
    if instructions {a, b, c, d} are all equivalent, then we can embed two
    bits of information when any of those instructions are encountered.

    Embedding: Hydan goes through the application sequentially, and
    whenever it finds an instruction that it has equivalents to, it
    substitutes in the instruction that represents the bit(s) of data
    hydan is currently embedding. A simple example: "add %eax, 50" is
    equivalent to "sub %eax, -50". So this set is {"add %reg, $imm", "sub
    %reg, $imm"}. Whenever an instruction of the form "add %reg, $imm" is
    encountered, hydan can embed one bit of the message. If the bit is 0,
    it leaves it as an add instruction. Else it substitutes it to "sub
    %reg, -$imm". (and vice versa)

    Decoding: When it is time to extract the embedded message, every
    "add %reg, $imm" is taken to mean bit 0, and every sub instruction
    encodes the bit 1, and the embedded message is reconstructed that way.

    Encryption: Hydan first prompts the user for a passphrase before
    embedding or decoding the contents of the application. In the case of
    embedding, hydan prepends the length of the message to the message,
    encrypts that with blowfish in cbc mode, and embeds the result into
    the application. When decoding, hydan extracts all the possible bits
    from the application (since it does not know how long the message is
    a-priori; that information is encrypted). Hydan then decrypts the
    message properly since it is in CBC mode and need not know the total
    length first. The lenght is then used to truncate the message to
    size.

    Instructions: For a complete list of the sets of equivalent
    instructions, please refer to hdn_insns.c.

    - Attacks
    ---------

    There are three classes of attacks that are applicable to hydan:
    overwriting, detection, and extraction. The overwriting attack refers
    to the ability to overwrite the message embedded in the application,
    whether its presence was detected or not. An attacker should also not
    be able to detect the presence of a message in the application, nor
    decrypt it.

    The overwriting attack: hydan currently has no means to protect
    against this type of attack. Since hydan embeds the message
    sequentially, starting from the top of the application, an attacker
    could re-run hydan with a bogus text and embed that on top of the
    original message. The intended recipient of the application would
    thus be unable to retrieve the original message. One way this could
    be solved is to add an error correcting code to the encoding of the
    message, and distribute the message throughout the application in a
    passphrase specific manner. This way only parts of the original
    message would be overwritten, and the original may still be
    reconstructed. Of course, there is nothing that can be done if the
    attacker insists on overwriting with a message size that is the
    maximum embeddable in the given application. However, the computation
    required to overwrite each application on a large scale might be
    prohibitive enough to discourage this as a routine behaviour, at an
    ISP for example.

    Detection: Binaries produced by hydan should not exhibit obvious
    patterns. At the most superficial level, this is accomplished by not
    embedding any marker or other easily recognizable token. At best, the
    embedded data looks random (which is why it is bf encrypted). At the
    assembly level however, the current version of hydan makes no attempt
    at mimicing the original distribution of instructions in the
    application, and is thus vulnerable to statistical analysis. Indeed,
    although all the instructions are equivalent, some may appear more
    frequent

  18. Re:What am I missing? on VCF - A Free BSD Competitor To Trolltech's Qt? · · Score: 1

    I don't agree with you. My company develops all our cross-platform applications (Linux, *BSDs, OS X and Windows) using wxWidgets and everything works fine.

    Far better than QT, if you ask me. No metacompilers, no emulated look and feel and (thank god) no licencing issues.

  19. Black box on Cornell Builds Autonomous UAV · · Score: 1

    One compact flash card holds the operating system in a protected write mode, while the other stores a real-time flight log - a 'black box' that can be examined to diagnose problems, even if the vehicle crashes.

    This would be very useful to thousands of Windows users world-wide :-D

  20. Ahh... finally! on SCO Claims Linux Lifted ELF · · Score: 1

    Ahh! I was missing the joy of accessing slashdot.org and read a FUD SCO story... Feels like the old times :)

    Seriously, these guys are nuts. oldSCO was part of the TISC comittee, so Darryl: Kiss bubye to this lawsuit. Nobody will buy your (aham, MS's) company.

  21. Great on Nanotube Non-Volatile Memory Entering Production · · Score: 3, Interesting

    Great stuff. But, is it reliable? This technology is becoming mainstream too quickly.

    Does anyone have more data on this?

  22. Re:Summary of Slashdot comments on EIOffice 2004 vs. MS Office 2003 · · Score: 1

    You forgot the "clippy" jokes... Or... "In Soviet Russia, Microsoft EI-EI-EIOffice you!" or something like. agh. Slashdot is soooo predictable.

  23. Can Star Wars Episode III Be Saved? on Can Star Wars Episode III Be Saved? · · Score: 0, Redundant

    hmmm... no.

  24. Imagine... on World's Fastest Supercomputer To Be Built At ORNL · · Score: 0, Redundant

    a beowulf cluster of these!

  25. Go Apple! Go! on Apple Releases Major iTunes Update · · Score: 1

    Don't let those guys (plairfair's and FairTunes' authors) turn WMA into an industry standard.

    Information wants to be free... yeah. Give me your credit card numbers then...