Slashdot Mirror


User: J'raxis

J'raxis's activity in the archive.

Stories
0
Comments
1,816
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,816

  1. Re:Faster and cleaner on Only Thieves Block Pop-Ups · · Score: 1

    Instead of using /etc/hosts, get junkbuster and put the hostnames in the blockfile (you can also put URL patterns, and other stuff in there). Turn logging on, and then grep for how many lines in the logfile end in ' crunch\!$' vs. how many don't.

  2. Re:follow the source code. on Only Thieves Block Pop-Ups · · Score: 1

    telnet... sounds like some kind of DMCA-violating circumvention device to me...

  3. Re:Better than the DMCA on Only Thieves Block Pop-Ups · · Score: 1

    That'll probably be next - they'll start suing people coding proxies (JunkBuster, Squid, Proximitron, ...) saying it's violating whatever intellectual property right they care to make up to cover shoving ads down your throat.

  4. Re:What about theft from me? on Only Thieves Block Pop-Ups · · Score: 1

    This is exactly what they don't seem to understand. Does anyone seriously expect me to purchase something after an ad for it has been rudely shoved in my face, interrupting whatever I was trying to do? If anything, the produce just got added to the list of things I would never consider buying.

  5. Repeat after me... on Seeking BSD or Linux Posters? · · Score: 1

    Google is your friend. 460,000 times.

  6. Re:One option... on Is Tripwire Still Relevent? · · Score: 1
    On the other hand, having written your own tripwire (and don't call it tripwire) - the hacker will not know this, not be familiar with your mechanism, and thus, will be unable to circumvent it.
    I wouldn't be this confident. Don't you think that a skilled hacker (not some s'kiddie with a pre-fab rootkit) would check the running process list, check the root cron, check your log directory, etc., etc., for anything that looks suspicious? Especially if your program is just a script, once he locates it (it's path is going to be listed somewhere, either in ps or crontab, right?) he could just read the source and figure out exactly how to beat it.

    I would think the most obvious attack would be to add ignore-patterns to the configuration file; or, since you're likely to catch a modification to the that (I assume you mod it yourself occasionally), just modify the script to ignore whatever he's done to your filesystem. Or he could update the checksums in your DB by hand. And so on.

  7. Re:OT: Slashdot using Flash ads!!! on Microsoft Profit and Loss by Business Area · · Score: 1
    Ads? WTF is an ad? Here, just to get you started, use this in your blockfile:

    images2.slashdot.org
    doubleclick.net
    /*.*/banner/
    /*.*/.*\.swf

    (The last line kills all Flash files, so be careful.)
  8. Chunked transfer method? Hello? on Altavista Renewed · · Score: 1

    Looks like Altavista has a problem understanding the chunked HTTP transfer-encoding method. I went to look at my own results, and scattered throughout the description of my page are 3-digit hexadecimal numbers.

    In a page downloaded via "chunked" transfer-encoding, the response body is broken down into small chunks, each chunk being prefixed by their length, represented as a three-digit hexadecimal number. The three chunk-lengths AV is showing as text are c45, 138, and fe4. Telnetting to my site by hand confirmed that these are the first three chunk sizes Apache is using.

  9. Re:ASCII Only? on Just One Page a Day · · Score: 1

    SGML? How about just straight-up UTF-8?

  10. Junkbuster? on Disabling Flash in the Browser? · · Score: 5, Informative
    If you use JunkBuster, add this to the blockfile:

    /*.*\.swf

  11. Re:Pre-infected on No Windows Allowed On Ex-Battleship Cruise Liner · · Score: 1
    Also, I suppose it is just possible that Win2K has a _theoretical_ unlimited interrupt latency, but I don't think it is _effectively_ unlimited, because otherwise I wouldn't be able to do anything on my computer, would I?
    What that means is that one process can take complete control and prevent any interrupts from being handled. Thus, the latency for the next interrupt to arrive could be unlimited.
  12. Re:Prohibit connecting old computers to the Intern on RMS Urges Opposition to "Trusted Computing" · · Score: 2, Informative

    The law would effectively prevent you from connecting them to the (now DRM-enabled) Internet, because the old computers cannot speak the right protocols.

  13. Re:Scapegoats on US Secrecy Efforts Hurting Scientific Research · · Score: 1

    Caesar's assassination led to a civil war, which led to the victor of that war, Octavian, becoming an emperor.

  14. Re: real BSOD on Gnarly Error Messages · · Score: 1

    Emulator?

    (WINE, SoftPC, ...)

  15. Re:Printer on fire on Gnarly Error Messages · · Score: 1

    It looks like a kernel coder was intentionally parodying an older actual error message that would say lp1 on fire. On some older systems, printers would report to the computer when they become overheated, and this was the (rather alarmist) error that the system would display.

  16. Re:The best BeOS error on Gnarly Error Messages · · Score: 1

    This is most likely the result of someone calling an error-handling routine (On Unix, it's strerror(errno), not sure about BeOS), without making sure that, after an error supposedly occured, errno actually contained a proper error code. Every OS has their own variants of this, it seems. On Windows, it's "The operation completed successfully," on most Unices it's usually "No error" or "Success." In some versions, it actually says "Error 0" - that might confuse a user, but at least a programmer can infer he accidentally passed 0 to strerror().

  17. Re:My favorite windows error: on Gnarly Error Messages · · Score: 1

    Yep, and this same bug manifests itself on Unix-based OSes in the form of "Error: No error" or "Error: Success" error messages. If you call strerror(errno) while errno is 0, you'll get something stupid like this.

  18. Re:cute error msg on Gnarly Error Messages · · Score: 1

    Some versions of cat just print a generic "cannot open" message when a file cannot be opened for whatever reason. Other versions will use the standard C errno codes so you'll get a meaningful error message, such as "No such file or directory", "Is a directory", or "Permission denied."

  19. Re:Crash message Mac os 9 on Gnarly Error Messages · · Score: 1

    Are you thinking of:

    The application "unknown" has unexpectedly quit because an error of type 11 occurred.

    These errors would pop up immediately after an application suicided. For some reason Apple was never able to make the correct application's name appear in the dialog box, hence the "unknown".

    Every once in a while I see even worse errors, like a dialog that only says "-43" or "-139" in it. C'mon, don't they have strerror() in Cupertino?

  20. Re:Not just Commiez... SPAIN too! on Vietnam Requires Gov't Vetting of Business Websites · · Score: 1

    Try Pennsylvania. The state government is forcing WorldCom to block content from outside the U.S. because it finds it objectionable.

  21. Re:GPL on Copyrights/Patents are Public Domain? · · Score: 1

    "Without copyright, I could legally take GPL'ed code, modify it, compile it, and release the executable without releasing the new source code."

    Yeah, my original statement wasn't entirely correct. But, here's another point to consider: without copyright, if I were able to acquire your protected source, somehow, with or without your permission, you'd have no legal way of preventing me from distributing it.

  22. Re:Corporation? No IP on Copyrights/Patents are Public Domain? · · Score: 1

    Copyrights are life + 75 right now. Under the current system, people who live shorter lives already have shorter copyright terms.

  23. Re:GPL on Copyrights/Patents are Public Domain? · · Score: 1

    Without copyright there wouldn't need to be a GPL -- the GPL essentially says that a piece of software is completely, freely available, except to those who wish to wrap it in their own proprietary works.

  24. In a word: on Does Anyone Use Cybiko? · · Score: 1

    No.

    No, wait, I mean yes. Yes. Er...

  25. Re:Easy to block on You Will Read Our Ads, And Like It · · Score: 1

    An easy countermeasure to this is a proxy that makes the GET request for the banner, but just directs it to the bitbucket instead of your browser window. If you use a proxy to save bandwidth, this would not be very useful, but if you just use a proxy to protect your sanity from the latest incarnation of Punch the Monkey, this would work fine.