New RedHat Kernel Patch Illegal to Explain to U.S. Users
Russellkhan writes "The Register is running a story about a new RedHat kernel patch that cannot be explained to U.S. citizens or others in the U.S. because of DMCA restrictions. The illegal explanation is hosted at Thefreeworld.net, a site created specifically to deal with these DMCA issues."
Didn't Alan Cox have a similar issue on an old patch for exactly the same reasons?
Maybe the Slashdot crew could try reading their own site once in a while.
But sound doesnt travel in the land. Nor does... electricity, radio waves, or, come to think of it anything. Jeez, what a rip.
loply.com
I would comment on the stuff posted on theFreeWorld.net, but after reading their disclaimer, I was afraid to continue in the site.
Repeat after me:
I will NOT vote for anyone that voted for DMCA.
Weird, I thought Linux was for the people. Fight The Power!
At least blame Bush for HIS mistakes.
Um, whose name is at the bottom of the DMCA? I'm pretty sure it's not Bush's. Want a high comment score on Slashdot? Bash Bush.
To quote the article:
...just as ridiculous as the idea that the US authorities are going to start flying non-US citizens to Cuba to shoot them...
Isn't this almost what we are doing to supposed Taliban and Al Qaeda "war prisoners". Not so far off...
People who have witty things here blow.
-- LEGALESE --
PLEASE READ FIRST.
Unfortunately the DMCA prevents this document being issued to US citizens.
This document is a copyrighted work. The authors choose to exercise their
first distribution rights to prohibit the distribution of this work in the
United States Of America, its dependancies, embassies and anywhere else
under US law.
Redistibuting this document in the USA may be a criminal offence under the
Digital Millenium Copyright Act with punishment including jail sentences.
Attempting to test these holes in the USA, even with the permission of the
system owner may be an offence. Discussing this document with a US citizen
may be an offence.
This document is made available for free without warranty or other right of
recourse implied or otherwise. No statement save one in writing by the owner
of the copyright changes this usage agreement. Any export download is at your
own risk and liability.
There is no other user agreement, should your local law make such an
agreement invalid you are prohibited from using this document, and may be
committing an offence by redistributing it.
NO WARRANTY
BECAUSE THE DOCUMENT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE DOCUMENT, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE DOCUMENT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE DOCUMENT IS WITH YOU. SHOULD THE
DOCUMENT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE DOCUMENT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE DOCUMENT (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE DOCUMENT TO OPERATE WITH ANY OTHER
DOCUMENTS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
-- END LEGALESE --
Security Holes Fixed In Linux 2.4.19
None of the holes documented here are remote. All these problems were
uncovered by auditing and there are no current exploits available. In
the interest of openness and ensuring people are aware of the security
fixes they are documented.
- If the Stradis driver is loaded (hardware must be present) a
maths overflow allowed the user to scribble into kernel memory
- It was possible to feed the SE401 USB hardware driver signed
values and fool kernel checks. This requires the hardware is
present
- The usbvideo driver could be fooled due to a maths overflow corner
case. This requires drivers to be present
- The
corruption of the kernel. This is really beyond user control but
if it occurs then the user can trigger the corruption
- By setting the TF flag a carefully constructed binary could hang
the kernel dead
- By misusing the rlimit resource limits it was possible to avoid
acct data being written on your process exit
- The joystick driver had erroneous copies in obscure ioctl cases
that could be used to patch the kernel as any user. Hardware
must be present and the module loaded for this vulnerability
to occur
- Multiple errors in the vm86 handling allowed users to force an
"Oops" from the kernel and in some cases to corrupt kernel data.
An additional small fix is needed for 2.4.19 but not 2.4.19-ac
(see bottom)
- The rt_cache_proc file could be tricked into returning chunks of
kernel data.
- On a system with over 1Gb of RAM the loop driver could in some
cases fail and expose kernel data. This is not under user control.
On 2.4.19 the loop driver works fine with large memory systems.
- Multiple
due to a sanity checking bug in the proc file handlers
- The XMM SSE registers were not always cleared for new processes
and could expose data from a different task. While it was not
possible to modify another tasks registers there is a small risk
because some cryptographic systems have XMM acceleration functions
We also fixed problems that required privileges to exploit. These affected
the IBM S/390 dasd driver, Openprom on Sparc systems, the Intermezzo file
system, the ewrk3 network driver, module loading, the microcode driver and
vm86. We document these in the interest of completeness.
Finally on a -ac based tree with PnPBIOS enabled a problem existed in some
quite common BIOS implementations that causes a crash when certain 32bit
BIOS calls are made. This allowed users to crash some systems by reading
files in
affected as it lacks PnPBIOS support
Credits
The authors would like to thank Silvio Cesare, Stas Sergeev, Andi Kleen,
Alan Cox, Solar Designer, and many others for their work on making 2.4.19 a
more secure kernel.
-- Additional Required Patch --
diff -u --new-file --recursive --exclude-from
--- linux.20pre1/arch/i386/kernel/traps.c 2002-08-06 15:40:50.000000000 +0100
+++ linux.20pre1-ac1/arch/i386/kernel/traps.c 2002-08-06 15:42:19.000000000 +0100
@@ -305,8 +319,13 @@
static void inline do_trap(int trapnr, int signr, char *str, int vm86,
struct pt_regs * regs, long error_code, siginfo_t *info)
{
- if (vm86 && regs->eflags & VM_MASK)
- goto vm86_trap;
+ if (regs->eflags & VM_MASK) {
+ if (vm86)
+ goto vm86_trap;
+ else
+ goto trap_signal;
+ }
+
if (!(regs->xcs & 3))
goto kernel_trap;
@@ -514,10 +533,15 @@
{
unsigned int condition;
struct task_struct *tsk = current;
+ unsigned long eip = regs->eip;
siginfo_t info;
__asm__ __volatile__("movl %%db6,%0" : "=r" (condition));
+
+ if ((eip >=PAGE_OFFSET) && (regs->eflags & TF_MASK))
+ goto clear_TF;
+
if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
if (!tsk->thread.debugreg[7])
So that it will be illegal to explain to someone why it's illegal to explain to someone why it's illegal to...
You see? You see? Your stupid minds! Stupid! Stupid!
you fuckin idiot, clinton was the president when the dmca was passed, what the fuck does Bush have to do with this? sounds like more knee jerk america bashing again.
and yet, on slashdot this is +5 insightful! hooray for this great moderation system!
SIG:Slashdot: indymedia for nerds.
that somebody is gonna post the whole text of it here on slashdot and that I'm gonna see a blank DMCA WAS HERE page when I load up my homepage.
you can bypass that scary disclaimer and read all that hidden information here (reg. req'd, blah blah) :)
Satanists get good grades too...suspiciously good grades
Soon the US will be like China. Anyone want to make 50 cents a day to program Microsoft software? :)
Atto
I didn't use the preview button, so get over it!!!!
Mike
Posting this in the US would not be a violatiuon of theDMCA except if you used some ludicrously tortured logic. It would be like me claiming that you disagreeing with this post is a violation of the DMCA. the complainers also knwo this. This is why they make vague claimns about "the DMCA" rather than specifying the explicit clause in the DMCA.
I know a court has ruled deCSS to be in violation of the DMCA, but that was because the judge was stupid, and the MPAA was smart enough to convince him that the utility is "primarily intended for circumvention of a protection mechanism". The keyword there is "primarily".
The security fix information is not primarily intedned to do alow people to break into servers, and it would require some rather convoluted argument to suggest that it should.
Yes, ofcourse, but you may not be able to fathom out what the patch does from the source. A security fix which prevents a buffer overflow could be as simple as adding or removing a typecast, which, if the kernel coders themselves didnt realise could be a security issue - Most Joe User's wont notice either... :(
Still, as a principal, it is a bit silly to disallow a text describing the change but allow the source which IS the change. Stupid law.
loply.com
Maybe you could post an email adress of representitives that are responsible for this DMCA. The people could write to them, telling them how ridiculous this is, so that they might change their view. But knowing politicians from other countries I guess they wont unless there is money involved.
Personally I would laugh at such stupidiy if politicians in other countries wouldn't think to apply similar laws.
Anything you say can and will be held against you in a court of law.
Land of the free ride to jail.
What the fuck has happened to our country? It's time to get rid of all the unenforceable bullshit laws. Copyright holders do not have the right to have their business models enforced by the police. And as for prohibition let's get the fuck over it.
Does this mean that when MS decides to release a "security patch" for one of its releases, and explains why this patch is necessary and how it might be exploited, that they are in breach of the DMCA? Could someone sue MS for releasing details that are then used to build a worm? (CodeRed comes to mind...)
Just my $.02
I'm a little tea pot.
Dosent seem too unlikely considering the chaps at the top
My Aurora : http://www.youtube.com/watch?v=o91ZsGwJYyg
FB : https://www.facebook.com/TanveersPhotography
It really looks that the DMCA induce so much fear that people start to censure themself.
The media corporation must be really happy yo see this.
I doubt very much that the DMCA would apply to a description of a patch WITHOUT applying to the patch itself. If the patch is supposed to be legal under the DMCA, why would it's description would be illegal.
I believe that these guys try the wrong way to persuade others that the DMCA is bad.
Next we are going to find out that all US Citizens have been placed on Double Secret Probation!
knee jerk bush bashing maybe, but he's still a moron. Bashing bush is not bashing america. And he does need a good lot of bashing these days.
You can use the source, but most probably the source won't give too much information. So you will have to _understand_ the source for the proper explanation.
;)
Nonetheless, I think
> New kernel update available, fixes
> i810 video oops, several security issues
is too ridiculous. Video "oops"...
In my opinion this strange DMCA that the USA have been using, has to be revised very fast.
Regards,
obii
I am not a lawyer, but as far as I know, there is no reason why people in the U.S.A. cannot download the C source code for the patch and look at it.
As far as I know, an explaination in the form of C source code is legal - it is an explaination in a human language that is not.
Contrast this to the fact that a description of DVD decryption in English is, as far as I know, legal, but in C is, as far as I know, illegal.
Blame both sides for the DMCA. Every REPUBLICAN senator voted for that bill.
Ok, so Red Hat can't tell us what the patch is about... but from what I've read so far, I understand that its regarding security, and therefore, informing me about the security problem is illegal under the DMCA, because "it could be used to circumvent a digital copyright mechanism". (the computer)
But, what about the source? I can freely download the source for this patch, right? So, how does that NOT violate the DMCA? Lets say that obtaining the source for this patch were illegal... what conflict would this have with the GPL?
I fucking hate the DMCA... what a stupid piece of shit. It impedes free speach, which BTW is against the US Constitution, and it costs me money, because now I have to spend extra time researching a problem that is critical to the security of my business.
Skiers and Riders -- http://www.snowjournal.com
But this wasn't passed under him, it was passed before him. That should read, "Will you buy from media cartels that exploit the weakness of the human condition with respect to money? *sigh*"
Nick Lange nick.lange@SPAMTASTIC.hushmail.com
Actually, with all of the "enemy combatants" running around, I think a bunch of US citizens might be getting carted off to Cuba for the same treatment.
I could be wrong, but nobody can prove it one way or the other because habeas corpus appears to be missing, too.
Yeah, I know, off-topic.
If programs like Kazaa were hosted on sites like this, then the program isn't distributed to Americans, and hence there is no argument left to drag them (a Danish/Dutch/Australian/Some Baltic State-ian operation...) into a US court.
Any Americans still using it (by lying on the form) would do so illegally, of course. Kazaa could maybe even sue them if they wanted to...
I believe posters are recognized by their sig. So I made one.
Sounds to me like this is a stunt. Clearly they will get media attention (thanks Register) and hopefully get picked up by major media in the states. This is especially possible if there is a nice long stream of indignation from folks on Slashdot (including mine). That said, what a great stunt, and for what a great cause. Some one at RedHat is smart enough to be motivated not by legal paranoia (however recently justified) but by political savvy.
...begins in wonder
Mmmm... maybe this would be the appropriate moment to recount once again.
Anyway DMCA was not Bush...
May I use your sig please?
Registrant:
Linux MM, c/o Conectiva Inc.
R. Tocantins 89
Cristo Rei
80050430, Curitiba PR
BR
Created on: 07-AUG-01
Expires on: 07-AUG-06
Last Updated on: 07-AUG-01
Administrative Contact:
van Riel, Rik
Linux MM, c/o Conectiva Inc.
R. Tocantins 89
Cristo Rei
80050430, Curitiba PR
BR
+55 41 360 2600
This wasn't supposed to go here, instead into the guys journal about needing help with sendmail. Sorry!
I ask a simple request. I want it so when you click a linked story in slashdot it puts a cookie on your hard drive. After that you are allowed to post a comment in the acompanying thread. That would hopefully cut down on all the fuckin idiots who insist on refusing to read a story and post their idiotic opinions without even having a glimmer of an idea what the story is about.
This is exactly the same form of FUD we've all come to hate, it's just based on law rather than technology this time. There is no way a kernel patch can violate the DMCA for the simple fact that the Linux kernel doesn't enforce any type of copy protection.
There are enough problems with the DMCA that we don't need to make things up. If stories like this become commonplace, then lawmakers will soon ignore anyone who opposes the DMCA because they'll automatically assume they're acting on FUD and not the facts.
Please, PLEASE make an update to this article stating it's just FUD. PLEASE!
uh,dopey,the DCMA came under the CLINTON administration. Perhaps if you actually had a handle on U.S. politics your humor wouldnt just signify your ignorance
*Repent!Quit Your Job!Slack Off!The World Ends Tomorrow and You May Die!
We need a website that shows all the people that voted yes for the DMCA. So it will be easy to vote this November.
atto
I didn't use the preview button, so get over it!!!!
Mike
You're right. The signature at the bottom of the DMCA is:
(signed) All American Citizens
In a democracy, you are responsible for the actions of those you elect.
There is still time. Your elected representatives will pay attention to you, the American voters, only for the next 3 weeks or so. Mobilize if you can; otherwise suffer 2 more years of the same but please don't complain!.
1. I wonder if any lawyer can make a lawsuit out of this. If they do, they must have read "The Thing", and thus can be jailed. Why a lawsuit? I don't know, but lawsuits in the US seem to be the only way to say something or prove it.
:)
2. I'm sure RedHat folks will be called terrorists. After all, the "Red" in the Hat (and the fact that they are Kernel HACKERS) says it all...
smile, it's fun
-- There are two kind of sysadmins: Paranoids and Losers. (adapted from D. Bach)
I could tell you but then I would have to kill you!
oh no that god refrence will disappear soon too... the fricking liberals want to take away those rights as well.
we are just to love only big brother....
Next thing you know, Google will get banned because of its cache =)
~the keyboard is mightier than the pen.
... and I live in a free country ... NOT!
Canada will soon come and take over USA, no worries.
We'll just hide all of our domination plans behind the DMCA. "Umm... Sorry, USA. We can't show you these... They could be used, to exploit security holes, by americans. *snicker snicker*"
That patch was released on 2002-08-20, nearly two months ago, and was available through RH's up2date system so many US users will have updated to it. It's only now being reported as news about the DCMA restrictions?
I've got a fever and the only prescription is more COBOL.
I must be in a different US than you, from my vantage point, there's no practical difference between Republicans and Democrats, only a difference in their rhetoric.
It's like this:
I walk up to you on the street and make you an offer. I'll give you a choice, do you want me to stab you in the right eye with a pencil, or the left eye. Make your choice, it's a free country! You too can make a difference!
I'd sooner vote librarian.
sadly, we dont actually live in a democracy anymore.
turn up the jukebox and tell me a lie
The DMCA was most useful for the ENTERTAINMENT industry. That special interest group is mostly a Democratic lobby.
It was Clinton... If anything, Bush might not have let it go since the Republicans get much more money from "real" industries that got screwed by this law.
I rant because I can.
Tournament Management Online &
Updated kernel packages are now available which fix an oops in the i810 3D kernel code. This kernel update also fixes a difficult to trigger race in the dcache (filesystem cache) code, as well as some potential security holes, although we are not currently aware of any exploits.
The 2.4.18-5 kernel introduced some safety checks in the VM subsystem that were triggered when exiting an X session while using 3D acceleration with the Intel i810/i815 chipset. Additionally, there was a difficult to trigger race in the dcache of the file system subsystem.
This kernel update addresses both of these issues.
In addition, there are fixes for potential security holes in the following drivers:
stradis
rio500
se401
usbvideo
apm
Finally, this kernel fixes a few files in the
All of the security issues found during an audit and none of them, at the time of this writing, have any known exploits.
We would like to thank Silvio Cesare, Stas Sergeev, Andi Kleen, Solar Designer, and others for their auditing work.
Any individual's vote makes no difference. Elected democracy doesn't represent the true belief of the populous, except whene the overall view is particularly strong.
People vote for who they prefer out of who they think has a reasonable chance of winning, otherwise they believe it is a wasted vote.
If the elected party is doing stupid things, you can complain, whether you voted for them or not...or didn't vote at all.
Powered by onion juice.
Considering all of the linux distros are already in an uphill battle, is it really wise for redhat to be taking this on? Short term this can only hurt sales. Afterall, why should I pay for support when there is a chance that Redhat will refuse to give me what I'm paying for simply because they want to prove some point.
Choose your battles, this one just seems silly at this point in time.
Apparently RH is respecting the copyright of the people who discovered the flaws and chose to license the text under the "TheFreeWorld" blanket to prevent the authors from being accused of distributing potentially infringing documentation in the US. Read the article at The Register, it is almost as poorly written as this post but according to this excerpt:
The document has been copyrighted, and the authors have chosen to restrict its distribution, and to use Thefreeworld.net licence as the mechanism for doing so. Note that it is the copyright, rather than fear of the DMCA, that has forced Red Hat to join in.
RH is only doing this to protect the authors who for whatever reason chose to copyright the document. Possibly the wish to make a point as well concerning the idiocy of the DMCA.
What if someone forces you to read it?
:-)
You know, this could be used to "frame" someone;
Print it out (don't look at it!), then, when your victim least expects it - pull it up and say "read"!
Go to the nearest police station and say that you captured a "terrorist".
Lucky me, I live in sweeeeeden..
Never did, Eisenstein.
The United States of America is a representative republic, not a democracy.
As grandpa Simpson sagely observed "This is the greatest country in the world, we have a whole system to ensure that people like you can never become president!"
And as far as the Bush bashers go -- what the hell did you expect? This is exactly what happened last time Bush was in the Whitehouse. We where at war with the Arabs and the economy was in the crapper.
Thankfully, I'm in Canada and not bound by retarded US laws. /. is, though, so I'm not gonna post verbatin what the patch is.
The gist of this security patch is to fix driver vulnerabilities. It fixes several of them, not one of them is exploitable by a remote user. They all require the hardware in question to be connected to exploit the driver vulnerability, and they all involve allowing people to write to kernel memory space. In other words... they could be used to nuke a linux box by a local user (why not just 3-finger salute, I know not), but the moment you reboot the problem is fixed anyway.
If you believe everything you read, you'd better not read. - Japanese proverb
Q. Which kernel hacker does Red Hat employ, outside of the US?
A. Alan Cox.
Q. Why won't Alan Cox visit the US because "the chances of his arrest are none zero"?
A. Use of the DMCA to indict Sklyarov.
It seems much more likely that Alan Cox is, with Red Hat's full support, taking a very good swipe at some of the more ludicrous aspects of the DMCA. Basically, what they are implying that this could lead to is the situation where a major security flaw can be disclosed to the entire world, except for the US, because of the DMCA. The obvious upshot of that is that every man and his dog outside of the US could have access to the knowledge required to shaft servers in the US, and the sysadmins in the US can't do a thing about it because of the DMCA.
The words "hoist", "own" and "petard" spring to mind. ;)
UNIX? They're not even circumcised! Savages!
Who actually reads the fine print when they download something or access a web site???
...turn over my first born... missing appendages...soul....I am willing to bet a couple of people have clicked yes to this! poor dudes.
prOn sites: The button that says I am under 18 get me outta here! Who would ever click this button???
Micro$oft Eula:
and now we have...
Redhat: Don't click on the button if you are not a U.S Citi.... Click!
From excellent karma to terible karma with a single +5 funny post...
So what I think doesn't count much. It's sad that if one plane had to miss on 9/11 it was the one that could have done some good.
First, the poster copyrights his work and chooses not to distribute to the US.
Fine. Nothing new, just his "right" under the most basic of copyright law known the world over. Always has been, and likely always will be.
IT HAS NOTHING TO DO WITH THE DMCA. UNLESS, you claim Linux itself is the violation.
Sending the copy into the US does not violate the DMCA in any way. It violates basic copyright.
The worse way of showing a law is stupid is to, first, demonstrate a clue, any clue, on what it actually does. It makes you look like fool, and it turns people off that might actually have made the right decisions had you not made a joke of your argument.
If Linux is the violation, then why hasn't our fairly abusive legal system made any move to removed it from the market? Fact is, Linux, per se, doesn't violate DMCA. At best, it can be used to build a circumvention device, it is not itself such a device.
Please, stop being stupid. We don't need you making our fight against Corportist intersts any harder than they already are.
The Bible is not about oppressing anyone into obedience, and it's obvious that you just decided this was a perfect forum for your anti-Christian sentiments. The Bible is a historical record, and an individual can freely accept or reject its teachings, just as they could hundreds of years ago (though in some societies, the Church did indeed use its power as a form of oppression; not having lived in medieval times, or the Spanish Inquisition, I refuse to take the blame for this).
Your comparison is lousy, and not even close to how the DMCA works. Stick to good anaologies, rather than opinions. You'll go far.
Never look down your nose at others. Someday, someone is bound to see your boogers.
I suggest that when you personally read a story, that someone with a hammer come to your house and smash your computer to bits so that you can't post again anywhere.
If you buy a new computer, the same guy will smash that computer and have sex with your sister too.
why are the bcast sources on this list?
I'm just glad that being in the UK we have politicians who won't go around creating really stupid laws to do with copyright / encryption etc.....oh wait... ;)
In case you don't know it, we will be getting something similar to the DMCA in Europe soon :(
You can read more here.
Still, as a principal, it is a bit silly to disallow a text describing the change but allow the source which IS the change. Stupid law.
I agree. The DMCA should be updated to disallow any patching of security holes what-so-ever.
It doesn't matter if the law will totally discourage effective security measures by outlawing any discussion or implementation of flaws or improvements. As long as we have the DMCA to protect us, any attempted security measure is good enough even if it's just some text on a screen that say "don't look here under penalty of the DMCA". Of course we'll need to gouge out your eyes as potential copyright circumvention devices, but that's a small price to pay to guarantee our security, our safety, and our liberty.
My next sig will be ready soon, but friends can beat the rush!
How about encrypted filing systems, rights management in the filing system, user privilages (that prevent you from copying things in the memory).
the Linux kernel does enforce copy protection, and you could create a patch to get around a lot of it (at least to increase the users rights)
thank God the internet isn't a human right.
Actually, Uncompiled source code legally counts as a literary work, and is under the same laws as an english description.
It was a closed/secret vote..
echo '[q]sa[ln0=aln80~Psnlbx]16isb572CCB9AE9DB03273snlbxq' |dc
here is the time to have a true "world company"
let's base debian in antarctica...
Ok, this looks to me to be the same as any other patch documentation. My impression is that the reasons it's illegal are the same sections and logic used to indight Skylarov. If I'm not mistaken in those two things, isn't all patch documentation illegal under the DMCA?
Quick word of commentary, it wouldn't surprise me at all if this were true by the letter of the law. This is exactly why we have been complaining for so long, because the law is overly broad, and restricts things that it obviously shouldn't. On the other hand, I didn't think it was so broad as to cover all security documentation.
Science may someday discover what faith has always known.
http://www.dfc.org/dfc1/Active_Issues/graphic/grap hic.html
passed Senate by Unanimous Consent
(similar to voice vote in House)
passed House by Voice Vote
Eve Fairbanks says I drive a hybrid!LOL
that makes it illegal to release the information to US citizens. The patch code was written entirely by non US citizens outside of the US borders. In order to prevent the possible prosecution by the US government, ala Skylarov, they released under license terms that forbid divulging information about it.
*Redhat* is not the refuser here, they are simply bound by the terms of the author's *license.*
Now, let's do a little deductive work here while we're about it, shall we?
This isn't a "Linux" patch, it's "Redhat" patch. And what *Redhat* kernel developer has already shown a propensity for making socio-political statements with the license terms of his kernel patches regarding the DMCA?
Anyone care to go waaaaaaaaaay out on a limb and "guess" just who might have had a hand in this?
I'll give you three guesses, but if you don't get it in one you haven't been paying attention.
KFG
Why ? The DeCSS case already proved that source code != free speech. So, you can distribute source code which tells what and where the flaw is, but not speak about it - Oh wait, the DeCSS case told us exactely the inverse ...
uhh.. hello.. Bush had nothing to do with this.. you need to thank the Congress that was under Clinton and also thank Clinton for signing the bill into law.
The point isn't even that anyone would be charged under the DMCA, but that under the language of the law, they could be. The underlying point is that disclosing security vulnerabilities and keeping current with their announcements are extremely common activities for any security professional doing his/her job.
That said, the whole exercise seems a bit lame and the article more or less says that straight out after leading in with a bit of sarcasm. It's not even the dumbest part of this law, but that's another story already beaten to death on /.
From 5 to -1, but retaining the Insightful tag. I don't know wether my faith is restored in the Slashdot moderation system or not . . .
There is still time. Your elected representatives will pay attention to you, the American voters, only for the next 3 weeks or so. Mobilize if you can; otherwise suffer 2 more years of the same but please don't complain!.
You can honestly say that? My elected officials will pay attention to me only during election season, and I'm not supposed to complain? Screw that. Democracy only works if you don't pay attention to what happens. We have the DMCA, the Patriot Act, corporate tax breaks out the wazoo, and politicians who are essentially puppets for the companies who paid to have them elected. You're right, I shouldn't complain.
HP and Dell did the same thing
They want to make a point, but they don't want to actually harm the users that reside in the U.S. Apparently they hate U.S. citizens much less than the United States Government hates U.S. Citizens.
;)
Go figure.
-Sara
2002: New RedHat Kernel Patch Illegal to Explain to U.S. Users
2012: New RedHat Kernel Illegal to Explain to U.S. Users
2022: Engineering Illegal to Explain to U.S. Users
Opus: the Swiss army knife of audio codec
If that's the case, then it would be legal to distribute the DeCSS code as long as you don't tell anyone what it does.
I don't recall the exact wording, but I'm positive the DMCA is intended to cover publishing vulnerabilities about *other people's software* - This is publishing information about THEIR OWN PRODUCT. Seems like someone is overreacting on this one to me.
retrorocket.o not found, launch anyway?
What would the DMCA have to say about commented code, which explains itself in plain english as well as code?
"I'll have a Guinness, no wait, make that a Coors Light" -Grad student I work with, who shall remain anonymous...
...and I hope they come for me. I will, as Tyler Durden put it "just let go." Beauracratic over-the-line BS. What is this, medievil London where unlawful carnal knowledge can get your head cut off? Knowing how to murder someone is not illegal, but knowing how to copy digital data is??
Comment removed based on user account deletion
One of the falsehoods taught about US Government in our own schools is that its a "democracy", when in fact, it isn't. The US Government is a "representative republic". We elect people to do our dirty work for us... there's no law that says our elected officials have to listen to us, but the pressure of re-election keeps 'em tuned in to the opinions and concerns of their constituents.
So, when the election comes around in the near future, DON'T VOTE FOR ANYBODY CURRENTLY IN THE CONGRESS!! This is how we as a people communicate our discontent with the actions of our current Congress. Honestly, if we keep voting these same losers into the congress, but dislike the laws they make, then we're weak as a people and deserve to have our freedoms impounded for being complacent. Freedom is a privelage that requires maintenance.
(First order of business, challenge the DMCA)
Skiers and Riders -- http://www.snowjournal.com
I LIVE IN THE US: Salt Lake City, Utah. Come get me. Muwahahaha!
One future, two choices. Oppose them or let them destroy us.
Don't you know how the U.S. legal system works? Let me explain:
If I spank my kid in public, the DA (District Attorney) will go back to my H.S. classmates and former employers and show that I generally disrespect authority, maybe was a bully, have a short temper, and that the incident was the latest in a string of inhumane behavior and child abuse that dates back at least 10 years.
My defense attorney, will argue that I was never disciplined for any such actions, never in a fight that is on record, and never visited by the local Social Worker (Except for our first child, which came before we were married - and is std procedure). I currently am active in my childrens lives, have defied 'conventional wisdom' by marrying my 'HS swetheart', having a kid before we were married, and staying married 8 years and having 2 more kids. S/He would also pull in a shrink to counter any past 'anger' issues due to the fact that my mom wasn't "all there".
All for what really was a spanking. (No, this didn't happen to me, but WI has tried to jail teen fathers - who try to do the right thing and be a father - for rape. So it's not impossible.)
The DMCA exists because lawmakers were convinced that the economy was going to fall because of piracy and free-flowing information. The only way to combat this in the U.S. is NOT by being rational - it's by meeting and exceeding the original irrational ideas, in an opposite way, that brought this beast into existance in the first place.
"I can't give you a brain, so I'll give you a diploma" - The Great Oz (blatently stolen sig)
"Discussing this document with a US citizen
...
may be an offence."
I'd would've liked to post a comment here, but I would like to keep the option open of coming to the US somewhere in the future, so
__CENSORED__
---
"The chances of a demonic possession spreading are remote -- relax."
It's not a democracy dipshit. Stop trying to make it one. It's a representative republic. Mob rule sucks ASS.
I hope this country never becomes a democracy. Too many asshats that don't know jack squat.
"Thoughts are more powerful than any weapon, and I don't even let my people own guns." --Joseph Stalin
I think DMCA is good example of how U. S. will loose its domination.
By restricting anything which may compromise poorly designed products U. S. will slightly stop any significant research and development, so as americans have to buy Japan electronics, they will have to buy encryption technology from Europe, communications equipment from Israel and software from Eastern Europe and Russia.
More laws will emerge to prevent techology companies moving out, restricting U. S. citizens to work abroad. Canada will have to require visas from americans, because they will seek asylum in there. British and Canadian controls will be set on american international airports to prevent asylum seekers to enter both countries. Amnesty International will be terminated and reopened in Paris.
Military power will be supplied by foreign components and foes will know their weaknesses better than U. S. The more 9/11 will arrive and U. S. will try to respond with military actions. U. N. will become angry about it.
Americans will still fly to space, but only to repair ISS or put in new communication equipment for Japan/Europe corporations. I am really looking forward to Intel HQ and R&D in Europe or Canada, while moving production plants to U. S., rather than Mexico, because of workforce price.
Japan will legally buy Hawaii. Russia with Japan will be complaining about american fishermen overcoming legally agreed quotas on fish in northern Pacific.
Networks of other countries will have the similar border with U. S. like China has with whole world - just because no one using any data tramsmission could not be sure if it will not be attacked by legal (in U. S.) attack at the network.
Why? Because few people wanted to keep high margins on movies...
--
paja
Err, I don't think you can release a patch for GPL software (ie, Linux) under a non-GPL license.
You might include a disclaimer that the patch may be illegal in your nation, but I don't think the license itself can actually prohibit distribution to particular persons.
Right. What you said.
=)
"Thoughts are more powerful than any weapon, and I don't even let my people own guns." --Joseph Stalin
Just becaues you don't vote doesn't mean you can't complain
Voting IS complaining... only it's a USEFUL form of complaining that elected representatives listen to. If you don't like someone, vote against them. THAT should be how you complain. If you don't vote, you're allowed to complain, sure (free speech and all). But you can't expect your complaints to do any good.
Any individual's vote makes no difference
Gore would disagree with you.
No, in a democracy you are responsible for the laws you vote for. In a democratic republic (like the United States of America) your representatives are responsible for their votes and you have to live with them and hope they match your ideology. I've never seen a candidate get 100% of the population voting for them unless they have no opponent so don't blame "All American Citizens" for the actions of the representatives of the majority... in the case of the DMCA, that would be former President Bill Clinton and the democrats and moderate republicans who voted for him.
We didn't vote for Bush the first time. He siezed power in a coup. Read more.
The Uncoveror: It's the real news.
Security Holes Fixed In Linux 2.4.19
/proc/slabinfo file could exceed a buffer size and cause
/proc files could be persuaded to dump kernel data
/proc. These files are now root private. The base tree is not
/usr/src/exclude linux.20pre1/arch/i386/kernel/traps.c linux.20pre1-ac1/arch/i386/kernel/traps.c
/* If the user set TF, it's simplest to clear it right away. */
/* Mask out spurious debug traps due to lazy DR7 setting */
None of the holes documented here are remote. All these problems were
uncovered by auditing and there are no current exploits available. In
the interest of openness and ensuring people are aware of the security
fixes they are documented.
- If the Stradis driver is loaded (hardware must be present) a
maths overflow allowed the user to scribble into kernel memory
- It was possible to feed the SE401 USB hardware driver signed
values and fool kernel checks. This requires the hardware is
present
- The usbvideo driver could be fooled due to a maths overflow corner
case. This requires drivers to be present
- The
corruption of the kernel. This is really beyond user control but
if it occurs then the user can trigger the corruption
- By setting the TF flag a carefully constructed binary could hang
the kernel dead
- By misusing the rlimit resource limits it was possible to avoid
acct data being written on your process exit
- The joystick driver had erroneous copies in obscure ioctl cases
that could be used to patch the kernel as any user. Hardware
must be present and the module loaded for this vulnerability
to occur
- Multiple errors in the vm86 handling allowed users to force an
"Oops" from the kernel and in some cases to corrupt kernel data.
An additional small fix is needed for 2.4.19 but not 2.4.19-ac
(see bottom)
- The rt_cache_proc file could be tricked into returning chunks of
kernel data.
- On a system with over 1Gb of RAM the loop driver could in some
cases fail and expose kernel data. This is not under user control.
On 2.4.19 the loop driver works fine with large memory systems.
- Multiple
due to a sanity checking bug in the proc file handlers
- The XMM SSE registers were not always cleared for new processes
and could expose data from a different task. While it was not
possible to modify another tasks registers there is a small risk
because some cryptographic systems have XMM acceleration functions
We also fixed problems that required privileges to exploit. These affected
the IBM S/390 dasd driver, Openprom on Sparc systems, the Intermezzo file
system, the ewrk3 network driver, module loading, the microcode driver and
vm86. We document these in the interest of completeness.
Finally on a -ac based tree with PnPBIOS enabled a problem existed in some
quite common BIOS implementations that causes a crash when certain 32bit
BIOS calls are made. This allowed users to crash some systems by reading
files in
affected as it lacks PnPBIOS support
Credits
The authors would like to thank Silvio Cesare, Stas Sergeev, Andi Kleen,
Alan Cox, Solar Designer, and many others for their work on making 2.4.19 a
more secure kernel.
-- Additional Required Patch --
diff -u --new-file --recursive --exclude-from
--- linux.20pre1/arch/i386/kernel/traps.c 2002-08-06 15:40:50.000000000 +0100
+++ linux.20pre1-ac1/arch/i386/kernel/traps.c 2002-08-06 15:42:19.000000000 +0100
@@ -305,8 +319,13 @@
static void inline do_trap(int trapnr, int signr, char *str, int vm86,
struct pt_regs * regs, long error_code, siginfo_t *info)
{
- if (vm86 && regs->eflags & VM_MASK)
- goto vm86_trap;
+ if (regs->eflags & VM_MASK) {
+ if (vm86)
+ goto vm86_trap;
+ else
+ goto trap_signal;
+ }
+
if (!(regs->xcs & 3))
goto kernel_trap;
@@ -514,10 +533,15 @@
{
unsigned int condition;
struct task_struct *tsk = current;
+ unsigned long eip = regs->eip;
siginfo_t info;
__asm__ __volatile__("movl %%db6,%0" : "=r" (condition));
+
+ if ((eip >=PAGE_OFFSET) && (regs->eflags & TF_MASK))
+ goto clear_TF;
+
if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
if (!tsk->thread.debugreg[7])
One of the prime rules of administering a system is to never destabilize it. I have great respect for Red Hat, and use their systems every day, but whatever this patch does, I will not apply it until I understand what effect it is going to have on my systems.
I suppose I could (and really SHOULD) look at the source and figure it out from there, but given the fact that time is a scarce resource, it will be lower on my priority list than the other problems that are more readily apparent to me.
That means that the DMCA is actually contributing to the destabilization of the systems I am responsible for. Makes me wonder just who is being protected here in the land of "free speech" and home of the brave.
We do value the ideas of Democracy, but we are a Republic. A Republic is just a little bit different then a Democracy. For instance, we do vote for the men and women that represent us in our nation's capital.
However, the laws that they create do not necesarily represent the views of their constituents. If that was the case, then every American Citizen would have the right to vote on the creation of laws such as the DMCA.
Our Republic is a popularity contest regarding who ends up in office. This popularity contest is run in front of a back-drop of "parties" which are supposed to represent the basic views of the person running for that office.
In the Republic of the United States, true Democracy only exists in the local arena (School Millage Hikes/Cuts, local ordinances and such) and sometimes shows its face in state elections when public acts are put up for citizen review.
If we lived in a true Democracy, I personally believe that the citizenry would have destroyed the Constitution many years ago by creating laws that limit the freedoms and liberties that our Republic currently partially protects. The trouble is that our representatives have forgotten that and so have the citizens that voted them in. If they were to remember what our form of government really is and change some of their ways, we can once again move forward with our great experiment.
If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
You're being silly here. None of this is going to happen, because other countries are considering, or have already enacted, laws just as bad, if not worse than, the DMCA. Check out the information on the EU directive known as the European Union Copyright Directive, or the Digital Agenda Act, which is Australia's answer to the DMCA. The DMCA is on shaky constitutional grounds in the US, is the act your country going to pass be?
Marxism is the opiate of dumbasses
i just posted the relevant file from thefreeworld site. http://yro.slashdot.org/comments.pl?sid=42463&cid= 4461419. use it wisely.
Uh oh, I better switch to windows then!
Of course the kernel implements copy protection, but it's a general purpose protection, not specific to copyright, but CAN be used to protect a copyrighted work just the same.
By the letter of the law, this changelog IS illegal.
Sticking feathers up your butt does not make you a chicken - Tyler Durden
I'm not USian...so:
/proc/slabinfo file could exceed a buffer size and cause
/proc files could be persuaded to dump kernel data
/proc. These files are now root private. The base tree is not
Security Holes Fixed In Linux 2.4.19
None of the holes documented here are remote. All these problems were
uncovered by auditing and there are no current exploits available. In
the interest of openness and ensuring people are aware of the security
fixes they are documented.
- If the Stradis driver is loaded (hardware must be present) a
maths overflow allowed the user to scribble into kernel memory
- It was possible to feed the SE401 USB hardware driver signed
values and fool kernel checks. This requires the hardware is
present
- The usbvideo driver could be fooled due to a maths overflow corner
case. This requires drivers to be present
- The
corruption of the kernel. This is really beyond user control but
if it occurs then the user can trigger the corruption
- By setting the TF flag a carefully constructed binary could hang
the kernel dead
- By misusing the rlimit resource limits it was possible to avoid
acct data being written on your process exit
- The joystick driver had erroneous copies in obscure ioctl cases
that could be used to patch the kernel as any user. Hardware
must be present and the module loaded for this vulnerability
to occur
- Multiple errors in the vm86 handling allowed users to force an
"Oops" from the kernel and in some cases to corrupt kernel data.
An additional small fix is needed for 2.4.19 but not 2.4.19-ac
(see bottom)
- The rt_cache_proc file could be tricked into returning chunks of
kernel data.
- On a system with over 1Gb of RAM the loop driver could in some
cases fail and expose kernel data. This is not under user control.
On 2.4.19 the loop driver works fine with large memory systems.
- Multiple
due to a sanity checking bug in the proc file handlers
- The XMM SSE registers were not always cleared for new processes
and could expose data from a different task. While it was not
possible to modify another tasks registers there is a small risk
because some cryptographic systems have XMM acceleration functions
We also fixed problems that required privileges to exploit. These affected
the IBM S/390 dasd driver, Openprom on Sparc systems, the Intermezzo file
system, the ewrk3 network driver, module loading, the microcode driver and
vm86. We document these in the interest of completeness.
Finally on a -ac based tree with PnPBIOS enabled a problem existed in some
quite common BIOS implementations that causes a crash when certain 32bit
BIOS calls are made. This allowed users to crash some systems by reading
files in
affected as it lacks PnPBIOS support
Credits
The authors would like to thank Silvio Cesare, Stas Sergeev, Andi Kleen,
Alan Cox, Solar Designer, and many others for their work on making 2.4.19 a
more secure kernel.
Hello, Toronto! (nt)
It appears that our lovely country has turned into the same type of Government that we originally tried to escape from. John Hancock, George Washington, and others of their day would be ashamed of how anal retentive and hypocritical this so called (free) country has become. He are now put in jail and persecuted for having free will and an individual mind...... Time for a REVOLUTION!!!!
Every recount in Florida resulted in more votes for Bush than Gore. Every recount.
I mean, can't you just read the source of the patch
I had this thought after the first time, and am seriously thinking that this thoug of mine may not be such a joke or bad idea after all:
One word: SELAND!
Move the master kernel repository over there. It may not account for everyone's DL's, but at least the master tree will always exist in an untained form.
I'm not a prophet or a stone-age man,
I'm just a mortal with potential of a super man.
I am an avid user and supporter of OpenBSD. Theo makes it plainly clear that OpenBSD users will never be kept in the dark. Because OpenBSD is based in Canada and the Web site is being hosted there, Theo is beholden to the DMCA. It's a joy to be able to get information on something that I use... and useful information at that.
I agree with a poster earlier in this thread who stated that he will not install a patch that he does not understand. I completely agree. Linux us Microsoft and to keep the user base in the dark as to exploits is maddening. The entire concept of open source has been skewed by Alan Cox not releasing this information on the exploit. So now we have a classic case of security through obscurity. Only the maintainers now have the right to see the exploit. Sure, I could take a look at the source code of the patch and determine what is happening underneath, but I shouldn't have to do this.
Sticking feathers up your butt does not make you a chicken - Tyler Durden
What if you are intoxicated while you read it. Pehaps you're intoxicated and a room full of beautiful women are inticing you to read it... something like that happened to Clinton...er...wait...uh
It's not just liberals that want that out.
All Americans that saw the post That reproduce the article are under arrest. send your emails to yourrights@dmca.bet.you.why
We may soon get our own set of retarded laws, if we don't watch out.
In the recent "Speach from the Throne", the Governor General stated "...the government will adapt its intellectual property framework to enable Canada to be a world leader on emerging issues such as new life forms."
Then there was the bit about "The government will revise Canadian copyright rules to ensure that Canada has a progressive regime that supports increased investment in knowledge and cultural works."
This has me a little wary and I will be keeping an eye open for the changes.
You can read the above here.
So if it is contrived, it was Alan Cox who did it, not RedHat. And it might also be argued that under the DMCA that pointing under flaws in other peoples software is illegal. Thus as Alan Cox isn't the owner of Linux, even though he is a major contributor, it is easy to argue that his license was a necessary restriction to prevent legal action under the DMCA
So you shouldn't see this as FUD, but rather the response of one developer to the perceived threat of legal action
D.
Does this mean MS will supply SP4 without saying what it contains within?
I think my tagline sums up pretty much what DMCA et al are saying
---
True. But you're misinformed. The US is not a democracy. The two puppet system in place at the moment is hardly democractic.
cLive ;-)
Don't blame me - I vote Green
-- Trinity in high heels carrying a whip: The donimatrix - there is no spoonerism
Also I do not think published papers are circumvention devices like adobe and the mpaa claim. A paper is not a physical device so security research can legally continue. I believe the lawyers at Hollywood are just shouting boo at security researchers.
Last but not least who is going to file charges agaisn't redhat? Linus??
Its perfectly legal to talk about flaws in a product. What is not legal is to create circumvention devices or programs to take advantage of drm security holes for a limited set of copy protection products.
Redhat is going to lose respect in the business community if they start getting all paranoid by this.
http://saveie6.com/
He still lost the popular vote by almost a half million votes. Almost a half million.
Alan Cox works for red-hat.
Massachusetts rejected this crap. So, maybe all of us should follow suit. Redhat should ignore it, or
use a Massachusetts based location ot get it out.
Digital Copyright
-c
I have discovered a truly remarkable proof which this margin is too small to contain.
So, when the election comes around in the near future, DON'T VOTE FOR ANYBODY CURRENTLY IN THE CONGRESS!!
The last I checked, America didn't vote in congressional members, the president elected them.
Much like how Ashcroft recieved his position.
-- This space for lease, low setup fee, inquire within!
Distribute all discussions of DMCA violations as heavily commented "source code"
There...
It doesn't even have to compile. Or maybe it COULD compile and it would be like an easter egg. Sort of like the treat in the box of Cracker Jacks.
"Wow, this is really great information. Now I wonder what it code does?"
-- derby
All of you 'sky is falling, sky is falling DMCA opponents ought to change your track. Anything that is copy protected with the DMCA stuff is corporate culture crap that you ought to be glad that eventually you won't be able to read or hear or see without paying for it.
.
It is going to be main-stream money-monger brainwash crap that you'll be better off not seeing anyway. .
Let them protect their works with their schemes of cupidity. And let us make our own media.
I don't care if there is a day when I can no longer see what Hollywood makes, and what comes out of madison ave.
Once they realize that we WON"T watch their crap they will once again put it into a format that we can view for free. After all, most corporate media is one long commercial anyway.
So, look at it as freedom from their brainwashing and mind control techneques.
Oh, but maybe you like those explicitily cooriographed pictures of bullets going through a skull.
Once we can't view the Hollywood crap, then we are on our way to freeing our minds from their envy and money mongering culture.
And we don't have to do anything.
Imagine, no more commercials, not needing to worry about the kids watching shows which pervert their minds.
AWESOME.
So stop trying to hack the crap that these Ahole make and start making your own media.
The reason this happened is because HP threatened Snosoft over a bugtraq post. The only logical basis for HP's threat was Alan Cox's theory that linux permissions are an access control device and revealing security holes would circumvent that access control device. Had HP not threatened Snosoft with the DMCA, this patch likely would not have been censored. However, the HP threat proved Alan Cox's fears about publishing information on security holes correct.
Ultimately the problem is in the industry not making a clear identification of different product lines. Do so intentionally is an act of consumer fraud and last I understood, such things are supposed to be illegal.... Like Antitrust..
The correct divide between product lines is constrained products on one side and open products on the other. There are different product lines.
To promote otherwise is not only consumer fraud but also anti-trust as it wrongfully attempts to suppress competition and consumer choice.
That's the way it really is. Know it and become informants to the public.
I have no problems in deciding to buy or not buy constrained products and I have no problem with not being able to use those constrained product on an open product line. I'd perhaps even be willing to pay a little more if I felt I needed to use some constrained product on on an open product.
But the problem here is the clear intent to blur and blunder that choice, by the industries, politicians and other involved in teh intent to force me to products against my choice.
Even now I have found since october 9th that I personally cannot access slashdot from my Amiga system without going thru an anonymizer. I resent the hell outof that as it forces me to use a fucking god damn product of a legally found guilty of breaking federal anti-trust law company called Microsoft.
And this is what I am paying taxes for?
There is this document called the "Declaration of Independance" that more people really should read at this this time of government abuses. Seriously!!! Do a google search and read it!
...Just becaues you don't vote doesn't mean you can't complain Not voting is just like the people at work who bitch about everything that is wrong but don't do anything to help fix the problem. If you are at a party and cake is being handed out, and I ask you if you want white or chocolate icing. You just sit there and don't answer me, so I give you white icing. Now you decide that you really wanted chocolate. You have the right to free speach and I can't stop you from complaining about it, but don't think for one second that I or anyone else that knows you didn't make a choice is going to listen or care about your complaint.
If you don't vote then bitch about the elected officials, then I guess you just like hearing yourself talk because your arguements, no matter how valid, carry no weight because you were not responsible enough to voice your opinion.
No offense to you personally, but there are far too many people out there that think their vote is so insignificant that they don't bother to vote. I used to work for an election office (in Florida too), and on a GOOD election, we would get 30% voter turn out. That is pathetic. Everyone reading this far, please take the 15 minutes on election day and go vote.
If I drive fast enough at the red light, it'll appear green.
The problem isn't with the patch, it's with the Changelog, and RedHat didn't really have anything to do with it.
Sticking feathers up your butt does not make you a chicken - Tyler Durden
2) they have no rights under our system as they are housed on forgin soil and have never toutched our shores...there is a few court rulings on that one
Without getting further into an offtopic war, I'll say this: That is why the US government is taking them to Cuba, so they don't have rights according to American laws. That was the ENTIRE point of the comment about taking them to Cuba. Somehow that one got by you.
--- What
The only way to get these rediculous laws from being passed is to educate the people voting on the matter. Let's face it, these people were elected on the basis of their person to person skills. It's not often that you see a computer engineer or any type of professional run for congress or president. Some of these people elected are so old that they barely know how to turn a computer on; how would they have any idea about the dangerous and wrong laws they passing. Private organizations come in and present all these sugarcoated ideas in to people that clearly don't get it. They (RIAA, WIPO, MPAA, BSA, etc.) come in, take people out to an expensive meal, and sweettalk them into submission. If that fails then some may resort to 'gifts' to their party for key votes. I guess our government is up for sale to the highest bidder.
Hmm, a story about security holes in Linux, but no actual comments about security holes in Linux.
Brilliant way to distract from the issue.
Forget the whales - save the babies.
This effectively gives US soldiers carte blanche to rape, pillage and burn in a manner that would make the atrocities in the Balkans seems like a Sunday School picnic with no chance of war crimes charges ever being laid. They may get some kind of court martial or charges laid in the US court or they may not. There would be no recourse for an aggrieved party in the Internation Courts.
Self contradicting while using wholly inaccurate assertions is bad form.
Hey chief, I'm not saying it's true or not, but I didn't see any proof on your part either besides violent arm-flapping. Also, there's no contradiction there, he's saying that the US may court martial, but if they were bound by International Courts, they'd be court martialed (at the US' discretion), and then tried by an International Court for war crimes. Please, don't try to be witty or sarcastic, you just can't hack it.
If that's the case, then it would be legal to distribute the DeCSS code as long as you don't tell anyone what it does.
No, since DeCSS is a circumvention device (another part of the DMCA).
I believe posters are recognized by their sig. So I made one.
The plural of User is Users.
Well, I'll complain anyway. The biggest problem is that 99% of the population doesn't know and doesn't understand DRM issues. That includes the politicians who passed this ludicrous law by unanimous vote.
In a nascent digital/Internet industry, doubtless some laws will be passed whose effects will only later be fully understood. Right now, even the tech elite doesn't fully understand the complete ramifications of the DMCA, much less the masses! What we have to do is spread the knowledge, educate the voters and the politicians so that laws like these aren't passed in the future.
This is very bad moderation. He is correct.
The last couple of times I've tried complaining about anything to my elected representative, they sent me letters back saying that was not something they were currently involved in.
/I/ am not represented.
Like I keep a roster of what they are currently involved in! I do, however, know what current events are hot in Washington. If they aren't involved in those, then there's a problem. That means that
-- This space for lease, low setup fee, inquire within!
http://cryptome.org/
: )
That's an angle I hadn't thought about.
HTH. HAND.
Couldn't we just take a look at the differences in the source and figure out what was changed?
Oh, wait, Reverse Engineering is violating the DMCA too...
Sticks and Stones may break my bones, but copyright will always protect me.
Um.
The third world is a good option. Cheap wages, highly educated middle-upper classes, good connections to the I'net. Argentina, Brazil, Chile, India, Uruguay are obvious (and alphabetically sorted!) candidates for hosting OS endeavors.
Imagine what a little donation can do in these countries!
Full disclosure: I'm Argentine.
You are what is wrong with America!
Skiers and Riders -- http://www.snowjournal.com
Begin obligitory karma whoring. that is the website for the people who vote on what bills, and this is specifically for the DMCA
"Martha Stewart can lick my Scrotum......do i have a scrotum?" -- Sharon Osbourne
We already are on Double Secret Probation! Have been since 26-OCT-2001. Argh.
"Avoid employing unlucky people - throw half of the pile of CVs in the bin without reading them." -- David Brent
The issues discussed in the patch notice are pretty mundane, and it took me quite some time to figure out what the hell the problem with the DMCA might be. I'm still not sure.
The reasoning, apparently, is that by documenting the security weaknesses that were fixed, they reveal ways to hack unpatched versions of the kernel. And that would be circumvention, and hence violations of the DMCA. All of the holes were found in code audits, and there are no known exploits, so this announcement documents these problems for the first time. (Maybe it's less of an issue if you announce fixes to holes that someone else already found.)
But if that is really taken as a violation of the DMCA, then almost all public notices of security issues may be illegal, even if the author did not write an exploit, and indeed even if no exploit is known to exist. The entire CERT site is at risk. Bruce Schneier may be one of the rampant criminals on Earth.
I dunno, it certainly would be crazy if the DMCA really has that implication, but are Cox and Co. certain that the law really means that? I'll bet there is no case law suggesting such a thing -- and after all, it's the courts' interpretations that really matter in the end. Has any legal scholar ever suggested that the DMCA can be interpreted this way?
I certainly don't like the DMCA, and I think it's unconstitutional (First Amendment, you know), but I wonder if this stunt will backfire. If it turns out that they're making a big deal out of something that the DMCA doesn't actually forbid, then opponents of the law will end up looking a bit hysterical.
Always keep a sapphire in your mind
Wow.. the librarians are getting into politics? /they/ would have some really great record-keeping strategies! I bet you'd never heard them say, "I don't recall". More like, "I don't remember, but give me 2-3 seconds and I'll pull that information up."
Now
-- This space for lease, low setup fee, inquire within!
So let me get this straight. We are fscked if we vote Democratic because of the entertainment business lobbiests, and we are fscked if we vote Republican because of their oil business lobbiests. We are getting fscked from both ends.
When are we, as a nation of the people, going to rise and take it back again. Was it Jefferson, or whomever, that said that a revolution was needed periodically to shake up the government and set it right? When is a strong third party, maybe libertarian or other, going to rise and speak for the real people and not for businesses. And NO, socialist doesn't count!
Chapter 12, section 1201 of the DMCA. "(c) Other Rights, Etc., Not Affected. - (4) Nothing in this section shall enlarge or diminish any rights of free speech or the press for activities using consumer electronics, telecommunications, or computing products. " You can talk about it. You can read it. You can even post it. Bob & Tom can read the Redhat patch description over the radio. This looks to be in direct conflict with b1, also in section 1201: "No person shall manufacture, import, offer to the public, provide, or otherwise traffic in any technology, product, service, device, component, or part thereof, that - " U.S. congress is prohibited from passing the latter into law, it being in direct conflict with the first amendment. Remove the word 'technology' and it's probably okay. If 'technology' means descriptions as well as boxes with pretty lights and buttons. First amendment of the American constitution includes: "Congress shall make no law ... abridging the freedom of speech, or of the press ... "
A Google search for "DMCA first amendment" and "bill of rights" will get you where you need to go if you think I've taken something out of context.
Apologies for the length; brevity is not the soul of law. Legal experts, I'll be interested to hear why I've incorrectly interpreted this rare clear use of English in legislation.
HP threatened Snosoft over a post to bugtraq, so apparently HP, a large company with lots of lawyers, belives the DMCA covers security notices.
Yes, but am I responsible for the actions of a president I most emphatically did not elect, whom many would say was not legitimately elected at all but sits in the Oval Office nonetheless? Am I responsible for the actions of some senator from North Carolina or Texas (I'm in Massachusetts) who is the chair of some committee that exercises extra-Constitutional power to affect what bills even get seen by the full legislature? Am I responsible for the actions of some unelected official even though their rules and regulations only have the force of law because Congress improperly abdicated their legislative authority when they created some bureau fifty years ago?
No, no, and no. I can and do vote for a mere handful of representatives, whose roles have become so diluted by the above factors that voting is purely an act of principle untinged by practical effect. To say that people in general are responsible for outcomes that people in general can affect so little is ridiculous.
Slashdot - News for Herds. Stuff that Splatters.
Seriously, how do people defend Bush? Clinton was a crappy president in a lot of ways (DMCA, weapons treaties, etc) and so is Bush.
You do realise that your country is holding people prisoner in Cuba in violation of the Geneva Convention on the treatment of Prisoners of War (and don't be nice to them!), right? And that your country has decided that doing something about the Greenhouse Effect is too expensive? Or that letting other countries try your soldiers on war crimes is too hard? And that getting rid of weapons of mass destruction is good, unless they're yours
Not that my country is innocent; Little Johnny locks up kids in the desert and uses the navy to storm refugee ships and then pays other countries to take the refugees of our hands.
Digital Millenium Copyright Act with punishment including jail sentences.
Attempting to test these holes in the USA, even with the permission of the
system owner may be an offence. Discussing this document with a US citizen
may be an offence.
Ok ladies and gentleman... talking about this stuff eh? Sign your name below, you're all under arrest!
rm -rf /home/leia
take a class or something.
It's a darn shame that I can download the files still even though my ip maps to the US. Oh well, so much for information not being free.
Young man, there's a need to feel down
I said, young man, throw yourself on the ground
I said, young man, 'cause your in a new town
There's a need to be unhappy
Young man, there's a place you can go
I said, young man, when you're short on your rights
You can stay there, and I'm sure you will find
Many ways to have a good time.
It's fun to stay at the J.A.I.L.
It's fun to stay 'cause the D.M.C.A.
They have everything For old men to enjoy.
They can hang out with all you boys.
It's fun to stay at the J.A.I.L.
It's fun to stay 'cause the D.M.C.A.
You can't get yourself clean
You can't have a good meal (because it likely contains DNA that created a plant that fuels you so you can talk... and say anything... and thats information that they don't want you to share)
They can do whatever they feel.
Cong' man, Are you listening to me
I said, cong' man, what do you want to be
I said, cong' man, you can make go away your rights,
all you've got to do is this one thing.
No man, does it all by himself
I said, every man, put your life on the shelf
And just break that, its the D.M.C.A.
I'm sure you can break that today
It's fun to stay at the J.A.I.L.
It's fun to stay 'cause the Y.M.C.A.
You have everything for old men to enjoy.
They can hang out with all you boys.
Cong' Man, I once filled your shoes,
I said, I'm not down with the you's
I felt, no man cared if I were alive
I felt the whole world was so jive
That's when someone came up to me
and said young man take a walk up 1600 pen 'reet
There's a thing there called the D.M.C.A.
They can start you'r ass on it's way.
D.M.C.A.
just go to the J.A.I.L.
Cong' Man, Cong' Man, I once filled your shoes,
Cong' Man, Cong' Man, Now it's out with all yous
D.M.C.A.
D.M.C.A.
D.M.C.A.
D.M.C.A.
Please use [ informative / summarizing ] SUBJECT LINES
Flame me here
Likewise it would probably be illegal not to patch your kernel with this patch. Since an unpatched kernel would not provide the protection a manufacturer might expect. Or something.
IANAL but I don't believe explaning how a device works was made illegal by the DMCA. Distribution of a program which exploits the patched hole would be illegal, explaining how to write one shouldn't be. The lawsuit against Felton was threatened and then quickly dropped. They knew there was now way they could possibly win. Unethical companies fraudulently abusing the legal system to silence (or attempt to silence) speech they don't like is another problem entirely.
don't complain?
in a democracy it's your right to complain!
Forgot about this poor bastard? Well, he is an AMERICAN CITIZEN enabled by all the rights of the CON-stitution of the Corporation of the United States of America c1871. All he did was boast about being a bad-ass in a bar. Now, he's on the brig, wasting away.
And do you think that the prisoners in Guantanamo bay are having catamaran runs? Moron!
www.whatreallyhappened.com
http://geocities.com/torturevictim/cuba.html
Remember, everyone always asks, "Duh, how did Hitler get to power..." Well, unlike Dubya he was ELECTED! STAY SHARP PEOPLE!
If that is true, then can we PLEASE submit this as an actual case where the DMCA has unintended consequences? I know the copyright office will be soliticing comments in early Nov.
One word: SELAND!
Um, you mean SEALAND, right?
The link goes to Sealandgov.org.
Just thought I'd help you out here...
They stuck me in an institution, said it was the only solution, to...protect me from the enemy, myself
So the patch itself is illegal by their (silly) definition, because it is itself documentation of the vulnerability (and how to fix it).
And if this were properly-written GPL software, the patch would be commented... (Don't know if it is or not - It should be.)
retrorocket.o not found, launch anyway?
You're just wrong.
As long as someone somewhere could possibly decide to use Linux file permissions as a copy protection scheme, then describing any way in which these permissions could be circumvented is illegal.
This law is not limited to things that are only used as a copy protection scheme, and has already been used against programs with legitimate uses (Ex: DeCSS).
I don't think you understand just how over-reaching this law is.
Life is too short to proofread.
Ahem, German, Italian and VietNamese prisoners held on US soil, in CONUS, did not get trials either.
e neva03.htm
Where are you people getting this crap that a captured combatant, regular or irregular, gets a trial at some point for the mere act of being engaged in an act of war?
Irregular combatants to not get the same "rights" as regular combatants. Try looking it up here:http://www.yale.edu/lawweb/avalon/lawofwar/g
They DO get the same treatment and their status is pending until paneled AFTER hostilities are ended and BEFORE repatriation.
This is quite normal in democracies, the electorate tends to focus (and remember, come ballot time) legislation which was harmful to them personally rather than legislation that was beneficial. The end results are that incumbent political parties (the government) tend to have an uphill battle to win support in electoral campaigns and that it is unusal for a party (or coalition of parties) to stay in office for more that two terms.
Are you fucking kidding me? Are you actually suggesting that we (America) would go bomb someone because they had a website we don't like? Get real.
Seriously. I'm as jaded as the next guy but your prespective on this issue is warped. Regardless of how many tinfoil hats you have, we don't go bomb someone just because we "feel like it today". In 99.9% of the cases, there are tactical or strategic reasons for taking action. At the very least you have to believe that the people "in charge" think they are acting in the best interest of the country.
Unless, of course, a judge decides that it's too "functional" in nature to be protected by the first amendment. Grr.
You are not alone. This is not normal. None of this is normal.
They're not saying the _patch_ is illegal under the DMCA, but they're saying that explaining the vulnerability that it corrects _is_, or at least potentially is. Because the information that would be contained in such a disclosure would explain how to circumvent digital (aka computer) security on unpatched RedHat systems, it could be considered a circumvention device, and therefore illegal, or quite possibly so.
Sam: "That was needlessly cryptic."
Max: "I'd be peeing my pants if I wore any!"
it did not get by me, that is the whole point of me pointing it out.
I am the Alpha and the Omega-3
ah... another way for Microsoft to crush the open source movement.
Don't complain my ass!
And exactly how am I going to get anything changed without complaining?
And there's a big difference between my elected representatives actually listening to me and just pretending to.
As a citizen of the US it's my constitutional right to complain. Especially given the election rigging that's been going on lately.
"Those who cast the votes decide nothing. Those who count the votes decide everything." -Joseph Stalin
It's really idiotic to think that the only time we should talk about the gripes we have with our gov't is right before election day.
They should know that we're keeping an eye on what they're doing every day.
Life is too short to proofread.
People are making a big deal about the fact that the explaination document is copyrighted. copyright does not protect ideas only the particular expression of an idea. In otherwords if someone were to release a paraphrase of the explaination document, it might violate DCMA, but it would not violate copyright.
Read it over.. there isn't any obvious DMCA violations noted.
/proc/slabinfo file could exceed a buffer size and cause
/proc files could be persuaded to dump kernel data
/proc. These files are now root private. The base tree is not
/usr/src/exclude linux.20pre1/arch/i386/kernel/traps.c linux.20pre1-ac1/arch/i386/kernel/traps.c
/* If the user set TF, it's simplest to clear it right away. */ /* Mask out spurious debug traps due to lazy DR7 setting */
-- LEGALESE --
PLEASE READ FIRST.
Unfortunately the DMCA prevents this document being issued to US citizens.
This document is a copyrighted work. The authors choose to exercise their
first distribution rights to prohibit the distribution of this work in the
United States Of America, its dependancies, embassies and anywhere else
under US law.
Redistibuting this document in the USA may be a criminal offence under the
Digital Millenium Copyright Act with punishment including jail sentences.
Attempting to test these holes in the USA, even with the permission of the
system owner may be an offence. Discussing this document with a US citizen
may be an offence.
This document is made available for free without warranty or other right of
recourse implied or otherwise. No statement save one in writing by the owner
of the copyright changes this usage agreement. Any export download is at your
own risk and liability.
There is no other user agreement, should your local law make such an
agreement invalid you are prohibited from using this document, and may be
committing an offence by redistributing it.
NO WARRANTY
BECAUSE THE DOCUMENT IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE DOCUMENT, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE DOCUMENT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE DOCUMENT IS WITH YOU. SHOULD THE
DOCUMENT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE DOCUMENT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE DOCUMENT (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE DOCUMENT TO OPERATE WITH ANY OTHER
DOCUMENTS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
-- END LEGALESE --
Security Holes Fixed In Linux 2.4.19
None of the holes documented here are remote. All these problems were
uncovered by auditing and there are no current exploits available. In
the interest of openness and ensuring people are aware of the security
fixes they are documented.
- If the Stradis driver is loaded (hardware must be present) a
maths overflow allowed the user to scribble into kernel memory
- It was possible to feed the SE401 USB hardware driver signed
values and fool kernel checks. This requires the hardware is
present
- The usbvideo driver could be fooled due to a maths overflow corner
case. This requires drivers to be present
- The
corruption of the kernel. This is really beyond user control but
if it occurs then the user can trigger the corruption
- By setting the TF flag a carefully constructed binary could hang
the kernel dead
- By misusing the rlimit resource limits it was possible to avoid
acct data being written on your process exit
- The joystick driver had erroneous copies in obscure ioctl cases
that could be used to patch the kernel as any user. Hardware
must be present and the module loaded for this vulnerability
to occur
- Multiple errors in the vm86 handling allowed users to force an
"Oops" from the kernel and in some cases to corrupt kernel data.
An additional small fix is needed for 2.4.19 but not 2.4.19-ac
(see bottom)
- The rt_cache_proc file could be tricked into returning chunks of
kernel data.
- On a system with over 1Gb of RAM the loop driver could in some
cases fail and expose kernel data. This is not under user control.
On 2.4.19 the loop driver works fine with large memory systems.
- Multiple
due to a sanity checking bug in the proc file handlers
- The XMM SSE registers were not always cleared for new processes
and could expose data from a different task. While it was not
possible to modify another tasks registers there is a small risk
because some cryptographic systems have XMM acceleration functions
We also fixed problems that required privileges to exploit. These affected
the IBM S/390 dasd driver, Openprom on Sparc systems, the Intermezzo file
system, the ewrk3 network driver, module loading, the microcode driver and
vm86. We document these in the interest of completeness.
Finally on a -ac based tree with PnPBIOS enabled a problem existed in some
quite common BIOS implementations that causes a crash when certain 32bit
BIOS calls are made. This allowed users to crash some systems by reading
files in
affected as it lacks PnPBIOS support
Credits
The authors would like to thank Silvio Cesare, Stas Sergeev, Andi Kleen,
Alan Cox, Solar Designer, and many others for their work on making 2.4.19 a
more secure kernel.
-- Additional Required Patch --
diff -u --new-file --recursive --exclude-from
--- linux.20pre1/arch/i386/kernel/traps.c 2002-08-06 15:40:50.000000000 +0100
+++ linux.20pre1-ac1/arch/i386/kernel/traps.c 2002-08-06 15:42:19.000000000 +0100
@@ -305,8 +319,13 @@
static void inline do_trap(int trapnr, int signr, char *str, int vm86,
struct pt_regs * regs, long error_code, siginfo_t *info)
{
- if (vm86 && regs->eflags & VM_MASK)
- goto vm86_trap;
+ if (regs->eflags & VM_MASK) {
+ if (vm86)
+ goto vm86_trap;
+ else
+ goto trap_signal;
+ }
+
if (!(regs->xcs & 3))
goto kernel_trap;
@@ -514,10 +533,15 @@
{
unsigned int condition;
struct task_struct *tsk = current;
+ unsigned long eip = regs->eip;
siginfo_t info;
__asm__ __volatile__("movl %%db6,%0" : "=r" (condition));
+
+ if ((eip >=PAGE_OFFSET) && (regs->eflags & TF_MASK))
+ goto clear_TF;
+
if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
if (!tsk->thread.debugreg[7])
Speech, as defined by the courts, consists of a large publisher being able to tell his reporters what to write. (I think I remember this from an issue regarding Drudge).
Therefore, this -- and any unfortunate statements about Bush, Clinton, Teddy Roosevelt, Kennedy, or any of our other illustrious fathers -- isn't speech.
Don't worry, it's still the land of the free and the home of the brave. At least, I FEEL FREE AND I FEEL I AM DEFINITELY BRAVE FOR SAYING SO, SO LEAVE ME ALONE AND DON'T AUDIT ME.
Correct Horse Battery Staple: 72 bits of entropy. Enter "Correct H" into google. When it generates the phrase, that's
A society getting too complacent...
'Land of the free' changing into 'patent land'...
Other economies will be happy to take over the vacant space!
you are exactly right. just wish one of the moderators would mod this post to "interesting" so some ppl might read it.
legislation like the DMCA, just to name one, is not limited to the borders of the US. a much more effective way of stopping these kinds of laws is if ppl complained about/to their own govts first, but sometimes i get the distinct impression that ppl just find it more fun to knock on the US.
while i'm obviously no fan of the US's DMCA, all you folks across the pond and elsewhere may want to consider looking at some of the anti-privacy laws that your countries are passing, as well (preferably before bringing the high and mighty attitude to your posts). i'm always amazed at how much non-US citizens know about bad US legislation, and how little they seem to know about the bad legislation their own countries pass.
...when they used to be proud to be American?
I couldn't read the source in teh patch, there must be some problem with it, is it encrypted or something? Here's all I got:
/hfe/fep/rkpyhqr yvahk.20cer1/nepu/v386/xreary/gencf.p yvahk.20cer1-np1/nepu/v386/xreary/gencf.p0 6 15:42:19.000000000 +0100
/* Znfx bhg fchevbhf qroht gencf qhr gb ynml QE7 frggvat */
qvss -h --arj-svyr --erphefvir --rkpyhqr-sebz
--- yvahk.20cer1/nepu/v386/xreary/gencf.p2002-08-06 15:40:50.000000000 +0100
+++ yvahk.20cer1-np1/nepu/v386/xreary/gencf.p2002-08-
@@ -305,8 +319,13 @@
fgngvp ibvq vayvar qb_genc(vag gencae, vag fvtae, pune *fge, vag iz86,
fgehpg cg_ertf * ertf, ybat reebe_pbqr, fvtvasb_g *vasb)
{
-vs (iz86 && ertf->rsyntf & IZ_ZNFX)
-tbgb iz86_genc;
+vs (ertf->rsyntf & IZ_ZNFX) {
+vs (iz86)
+tbgb iz86_genc;
+ryfr
+tbgb genc_fvtany;
+}
+
vs (!(ertf->kpf & 3))
tbgb xreary_genc;
@@ -514,10 +533,15 @@
{
hafvtarq vag pbaqvgvba;
fgehpg gnfx_fgehpg *gfx = pheerag;
+hafvtarq ybat rvc = ertf->rvc;
fvtvasb_g vasb;
__nfz__ __ibyngvyr__("zbiy %%qo6,%0" : "=e" (pbaqvgvba));
+/* Vs gur hfre frg GS, vg'f fvzcyrfg gb pyrne vg evtug njnl. */
+vs ((rvc >=CNTR_BSSFRG) && (ertf->rsyntf & GS_ZNFX))
+tbgb pyrne_GS;
+
vs (pbaqvgvba & (QE_GENC0|QE_GENC1|QE_GENC2|QE_GENC3)) {
vs (!gfx->guernq.qrohtert[7])
Oh lordy, I'm probably in contravention of the QZPN?
(Christ, I can't believe how lame I am! Whatever, it made me laugh!)
THL.
Keeping
It's publishing the description that's illegal. Thus if the source code is indeed a description, Red Hat cannot legally publish it, regardless of whether you read it or not.
10 PRINT CHR$(205.5+RND(1)); : GOTO 10
I pledge allegiance, to the corporation,
which controls America.
And to it's CEO, and it's CFO,
for whom we kneel,
one nation, under fear,
without liberty, justice or rights until proven innocent.
Amendments [to our Constitution]
If the only Europeans US tourists come into contact with are Parisians, no wonder they think all Europeans are pompous pricks.
10 PRINT CHR$(205.5+RND(1)); : GOTO 10
http://people.nl.linux.org/~h-wolters/thefreeslash dot.jpg
Nuff said.....
She sucked, but she didn't swallow...
s/right/duty
there is nothing more important in a democracy than it's members being able to question the actions of those elected.
of course, as H.J. Simpson said once, "When will people learn? Democracy doesn't work!"
This madness has gotta stop. Somone with balls ( and $$ ) has to take this DMCA ( and related ) on in the courts and rid us of its stupidity once and for all.
---- Booth was a patriot ----
to trick someone who isn't free to believe he is, than it is to trick someone who is free into believing he isn't.
Think about it.
But then it actually happened in Real Life. Lawyers at HP saw how DMCA could be abused to prevent discussion about vulnerabilities, they used it to bully. Most people wouldn't have believed it six months ago, but nowdays, thanks to HP, we know that it really is plausible that DMCA could be used by someone to attack Red Hat for discussing a security problem. It's not just theoretical. It's not just paranoia. It actually happened.
So it's more than just a stunt; it's also a ridiculous but legitimate ass-covering, made necessary by a ridiculous law.
As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
If I read all of this right, it appears that the discoverers of the bug copyrighted their white paper in a way that prohibited distribution to anyone in the US. Thereby allowing them to invoke the DMCA if they so choose. As the register article points out, Red Hat was forced to go along with this because the authors of the bug whitepaper wanted to prove a point. With all of the real issues (Here & here) surrounding the DMCA, why are we even wasting our time with this?
Who are you? The new #2 Who is #1? You are #617565. I am not a number, I am a free man! Muhahaha.
Right... democracy obviously doesn't work.
Nevermind for a second that your quality of life is substantially higher than people of other, less democratic countries.
You still live in a land that is is "more free" than just about any other in the world. I dislike the DMCA as much as any other observant Canadian citizen, but why not fly down to say, China, India, or Africa and see how much luck you have repealing laws.
The reason why you have all sorts of restrictive laws is that the overwhelming majority of people don't seem to care. Whether they are ignorant of the facts or just plain lazy is left up to you to decide. However, your "democracy in the US sucks so I don't want to do anything about it" attitude is part of the reason you feel cheated.
Wanna do something about it? Spread education about these laws and what they mean to the everyman. If you can do that, without mentioning Ogg Vorbis (as many linux using digital rights "activists" are wont to do) then you just may start the momentum needed to change things. If you aren't willing to do that, then shut the hell up. Bitching about the democratic process on slashdot has never accomplished anything.
The mere thought that knowledge is criminal is patently absurd. This nonsense is further proof that US corporations prefer the American public as dumb as possible.
A preferably dumb American consumer is simply fuel for the machine. Don't ask, just pay us and thank us for providing you with insert good or service here?.
Hopefully, within the Supreme Court, will see that the rights of free speech trump this ridiculous law.
It's not 1980's technology, it's 1860's technology. Thomas Edison's first patent was for an "Electronic Vote Recorder" system to do this. Congress rejected it, but most state legislatures have been using something like this for a century.
I suspect that Congress likes the current system. Voice votes let members hide their votes, and roll-call voting gives them more opportunities to play games.
Until terrorist hostilities are ended? So now we can hold them till the end of time?
Consider the options:
1. Live under the DMCA. Linux developers, who live all around the globe, start snubbing US Citizens because of DMCA fears (mostly legitimate). So as a US Citizen, you don't really have an open source O/S anymore -- no one is sharing source or info with you!
Result: You have a Microsoft-like "Patch and Pray" situation developing. You don't know what the patches do, or whether you want or need them. You're a mushroom -- you're kept in the dark and fed bullshit. LOVELY. Switch to FreeBSD. Or maybe OpenBSD. Whatever.
2. You get fed up with the DMCA and move elsewhere, in hopes of finding a new country whose intellectual environment is supposedly more open and accessible. I don't personally endorse this (I love NY) but hell, it might be ok for people less attached to their environs.
Result: You're surrounded by people who despise George W. Bush and see you as their personal GWBush voodoo doll. So they harangue and harass you about every screwed up thing the U.S. does as if you personally ordered it. Everyone hates you. You can't walk twenty feet down the street without some French psycho grabbing your collar and screaming at you for being "imperialist scum" (or whatever the current anti-US epithet is, I can't keep track). As soon as word gets out that an American lives nearby, terrorists swoop in and cut off your head, if you haven't killed yourself from depression already. No one cries at your funeral, and the stonecarver deliberately misspells your name.
Not really an option. I'd say maybe Canada, but even they don't like us anymore. I have a friend living in the Far East, but then, some people got their heads cut off over there recently, so that's out. Ok...
3. Become an activist and protest the DMCA, start political rallies, support the green party, etc. Raise all kinds of hell in hopes of altering the status quo.
Result: with the FBI's newly restored powers (they've recently gotten back the powers stripped from them after Watergate, in case you haven't heard) they identify you as a rabble rouser, anti-American whatsis, etc and so forth, and you get busted for every possible thing you could get busted for right down to jaywalking. We're talking the total Abbie Hoffman treatment. Eventually you go into hiding or get so depressed you kill yourself (or some CIA spook helps you kill yourself, either way).
FACE IT, CHUMS! I've already resigned myself to it. I am doomed. I fully understand this. So, the hell with it. I'll stay right where I am, where at least my neighbors like me. Maybe I'll get stuck with Palladium, maybe I'll get stuck with the DMCA. Fuck it. There's FUCK-ALL I can do about it anyway.
And, if people won't tell me what kernel patches do, if they snub me for things that are totally out of my control, well, screw it. I'll switch to BSD. Or maybe something else. Adapt, improvise, overcome.
One thing's for certain: I'm not travelling ourside our borders ever again. NOBODY likes us. EVERYONE hates us. Time to stay home and fire up the Playstation!
Farewell! It's been a fine buncha years!
Shouldn't this just be posted on Kaaza et al with all the other copyright violations?!?
I only look human.
My mother is a halfling and my dad is an ogre, so that makes me an Ogreling
Shouldn't this be posted on Kaaza with all the other copyright violations?!?
I only look human.
My mother is a halfling and my dad is an ogre, so that makes me an Ogreling
Learning in school that we are a Republic... In fact, there was something that we did every morning to reinforce that...
"...and to the Republic, for which it stands..."
Are you saying that the Pledge of Allegiance is wrong?
Should it say, "...and to the Representative Democracy, for which it stands..."?
Check the following link, it leads to a site that will explain our form of government to you in elementary terms. You should take a few more politcal science classes before you start talking about government, my friend.
What is a Republic?
If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
What I'd like to see is a state here in the US to fully denounce DMCA act and put a bill in with the state congress nullifying the DMCA. If the state was a less tech oriented state (my state, Indiana), they'd have an overflow of 'Interesting' jobs not able anywhere else.
;-(
:-P
Course, the main problem with Indiana is the Inventory Tax racket. That alone is kicking shitloads of jobs out
Enough with my state and my hairbrained idea.
And I almost forgot, I read the Patchlog too
If I spank my kid in public, the DA (District Attorney) will go back to my H.S. classmates and former employers....
Even the most incompetent defense attorney will never let that sort of thing get into evidence. That's character evidence, and it's only permitted under certain narrow circumstances.
If the character of the defendant is in question, character testimony can be entered into the record, but prosecutors don't have a free hand to say anything they want during the trial. If you're on trial for embezzling a million dollars, the prosecution would be able to introduce evidence that you were convicted of embezzling before, because it establishes your character as a person who is not opposed to embezzling on moral grounds. But they couldn't put your ex-girlfriend on the stand for her to say, "Um... yeah, he lost that job, cause... like... he was stealin' staplers an' shit." That's not permitted in any court, for any reason.
I write in my journal
I am going to read a site that is potentially illegal here in the USA and I am going to register with my name and address? In this day and age of W and Ashcroft? an age where we bypassed posse commitatus? where we imprison people for years on end without trial? where we put innocent ppl to death?
I don't think so
Had to say it twice
A Good Troll is better than a Bad Human.
---
Open Source Shirts
How does Massachusetts get around the National Supremacy clause of the US Constitution? That'd be a good trick.
My God, it's Full of Source!
OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
"From this day forth, Robot House is on Dodecatuple Secret Probation."
-Dean Vernon
that that is is that that is not is not
gee -- your explaination was about as clear as mud
People say, "in a democratic society, you get what you deserve." Too bad you get what others deserve, too.
Freedom is not a consequence of democracy.
Democracy is not a requirement for freedom.
As opposed to our many selfless, genius congress members?
Damnit. I forgot "IANAL", and maybe I didn't explain the point; The U.S.courts of law are more concerned with grand displays than simple facts. 'He hit her' is much less thrilling than 'He savagely beat her'.
The only way to win is to NOT be 'average'. You have to be polar opposites.
"I can't give you a brain, so I'll give you a diploma" - The Great Oz (blatently stolen sig)
I can understand that people may be worried about publishing kernel patches, but careful reading of the above makes it very clear that these do not violate the DMCA, even if they inadvertantly or implicitly reveal information that could be used to defeat copyright protection. The reason is simply that this is not the primary design and purpose of the information. Rather, the information is designed to extend and improve the functionality of the Linux kernel.
Contrast this with the Sklyarov case, where the primary purpose of the information and technology he presented was to defeat copyright protection. The situations are completely different.
I can't blame Europeans for being excessively cautious with regard to American law, but they could consult with a lawyer and be reassured. My opinion is that this is really a political statement, and that they are being disingenuous in claiming to be afraid of prosecution.
Wow. I'm used to this kind of hilariously blatant idiocy being tied to an AC, not a bonafide dumb ass willing to sign his name. First time for everything...
Congressional members are elected by a popular vote. Ashcroft, who(slows down and uses small words) is NOT a congressional member, is an appointee who had to get congressional approval to take office after the President nominated him.
Off-topic? Yes. Informative? Yes. Interesting? No. Funny? Only if you think the guy above is funny.
Off. Topic.
Then we vote against every one of those scum suckers. Let the next group know that we're won't put up with this crap anymore.
Boobies never hurt anyone. - Sherry Glaser.
And in California alone, one and a half million military votes weren't counted, due to the overwhelming count towards Gore. If the military vote had been added, Bush would've had a million vote victory by popular vote. Get it straight.
Ding -- WRONG ANSWER.
Linux does not provide DMCA type copy protection -- PERIOD.
First, I can image the disk using any of a number of tools, linux and all, and pull off the data therin without no assistance from Linux, or any patch you may apply.
Second, fact #1 is well known, widely public, and the intended function of the platform. Therfor it cannot be claimed to protect copyright -- and thus cannot be used to circumvent a "protection" it doesn't provide.
Third, root owns all access to the system. Nothing is protected from the right to copy. User accounts enjoy access at the lesiure of root, root applies the patches, root can't circumvent.
Anything created by a 'root' user is free of the DMCA. root is allowed to do as they please with their system.
Fact is, in the US, "intent" is required to a commit criminal act. Where is the intent to circumvent copyright behind these patches?
The U.S.courts of law are more concerned with grand displays than simple facts.
Well, that's not really true either. US courts of law-- as opposed to what you see on the evening news-- are very much concerned with simple facts. Attorneys appeal to emotion; that's part of their job, to persuade the jury. But when all is said and done, the decision is based on the facts of the case. This is how things are supposed to work, on papers, and it's also how they work in real life.
I write in my journal
My question is this.. if a website was defaced and the new defaced site was encrypted (aka the entire site not just the defacing) would repairng the dammage done be a violation of the DCMA??
USA SUCKS HAIRY BALLZ> WTF THEY BEEN THINKING!?!??!?!!?!
this gets me really mad..good thing i dont live there anymore...
some shows like McGuyver and some movies like The Eraser violations of the DMCA?
I mean, they could use the techniques explained in the shows to circumvent security.
Does the "No citizens of the USA" also include members of government and the armed forces?
CDrom burners, modems, network cards/networks, routers, the Internet could all be construed as contributing to the security problem. Heck, a car could be used as a tool to move sensitive material... is the auto mfg responsible because someone broke into the car?
Is posting a bunch of what-if ideas a violation of the DMCA?
OH MY GOD! I just heard a loud knock at the door...
Codifex Maximus ~ In search of... a shorter sig.
Come kiss me ass, you stupid feds.
This is really stupid and childish. I'll be the first to condemn the DMCA (after my own legal troubles with it), but this is not the way to go about it.
Someone correct me if I'm wrong (I'm not a lawyer though I have studied the DMCA and lawsuits based on it carefully), but the DMCA absolutely does not ban security information. The only related things that it addresses are circumvention (of protection technology in order to access a copyrighted work) and trafficking in circumvention devices. Security information (especially in the form of a vague changelog) is absolutely not either of those. By no stretch of the imagination can I figure out how it's supposed to be a violation of the DMCA.
What's really going on here? Someone (Alan Cox) is trying to make a point about the control that the DMCA gives to copyright holders. He's placed a piece of his copyrighted information that some people want (text of the kernel changelog) behind a click-through license that says you can't access it if you're from the USA. In my opinion this has fuck-all to do with the DMCA (because there is no "technological measure" to circumvent -- please read the definition of technological measure in the DMCA if you disagree with me), just click-through licenses, but, whatever. Then Red Hat decides, well, we can't copy that information because the copyright holder has told us we can't. Assuming that such click-through licenses are legal in the first place, of course, RH would be entirely within its rights for a non-US-citizen to license the document and then summarize it for Red Hat. Either they are too lazy for this, don't understand the issues involved, or are perpetuating this same bizarre notion that the DMCA makes every single thing you'd want to do illegal.
The DMCA only has to do with copyright, and only as far as circumventing technological measures that protect copyrighted material. The court enjoined DeCSS because it found it to be a circumvention device (they did NOT enjoin english descriptions of the algorithm, and especially not security notices about CSS being weak!). I don't agree with the decision, but at least it makes sense in terms of the law. (I also don't agree with the law!!)
The important point I'm trying to make is that to fight dumb laws like the DMCA, we need to understand what they really say and what the actual implications are. There's a tendency for hackers to use logical deduction ("If DeCSS is illegal because it can be used to break DVDs, then hammers must be illegal because they can be used to smash open store windows!") in order to decide the implications of a law. THIS IS NOT HOW COURTS WORK! Law is much more squishy than that. Making these sorts of alarmist claims, as if the DMCA outlaws everything that we'd ever want to do, hurts our cause by spreading misinformation. Instead, we should be educating people about what the DMCA actually addresses (ie, "Did you know it would be illegal for you to create MP3s from SACDs that you bought?" or "Did you know that it's illegal to buy mod chips for your Playstation so that you can play imported games that you also legally purchased?" or "Did you know that it's illegal to use your screen-reader software with the eBook that you legally bought?"). That's how we can convince people that the law is wrong.
I posted late, but I hope my comment won't get lost in all of the noise...
Linux does not provide DMCA type copy protection -- PERIOD
YES, IT DOES -- PERIOD
Assuming you have a file named "copyrighted_file", which contains copyrighted text, the following command:
$ chmod 600 copyrighted_file.txt
will "effectively" prevent access to it by the system - this is all that's required under the DMCA to qualify as a "technological measure", as per section 1201-3:
(B) a technological measure `effectively controls access to a work' if the measure, in the ordinary course of its operation, requires the application of information, or a process or a treatment, with the authority of the copyright owner, to gain access to the work.
In layspeak: if something stops you from looking at something without someone's permission, then it 'effectively controls access'.
This is the main purpose of the +r bit in file permissions.
I'm so fucking sick of being a fucking US citezen, why couldn't i have been born in a properly functioning country, one where the people aren't so fucking lazy as to let the government run amok like this. I hate america, fuck america, fuck america in its ass till it bleeds! I know this is the wrong place for this, but i had to get it off my chest, i can only take so much of this garbage. I want everyone on the planet to know that i'm sick of fucking living here, and to those that think this is all perfecty OK, i hope someone fly's a jumbo jet into your naiborhood. In any decent run country A situation like this would have cuased such a public outcry the government would have to repeal such a law to prevent riots! Home of the brave, my ass. Home of the free, my ass.
-Polyhead-
The Senate vote was 100-0. The House voted similarly.
We have the best government money can buy.
Missouri had a very unpopular Senator. This fellow raised the ire of about everyone in Missouri, as he constantly voted his pocket instead of Missouri's or the USA's interests.
The people of Missouri had enough and decided they would rid themselves of this corrupt political hack once and for all.
Unfortunately for the people of Missouri, the fellow that was running against the incumbant Senator died a month before the election, with no time for the Democrats to nominate another.
The people of Missouri voted the corpse in, and in a landslide no less.
The same election brought a new President, and George W. Bush appointed the ex-Senator Ashcroft to the position of Attorney General.
"Will of the people" my ass. This November I vote straight Libertarian. Meanwhile, you Canadian fellows are lucky, living in a representative democracy instead of a sleazy, plutocratic autarchy.
Here. Directly for the Library of Congress' site. You can find any bill there, if you know how to search for it. The thing that puzzles me is that I can't find a roll call for this.
Zodiac Survey
Well thank you, I'm sure the American public will read your comment here on Slashdot, all the hundreds of millions of them, and will take your message to heard.
I mean, really. Do you think anyone on Slashdot that isn't a lamer troll making pornographic "first posts" would be naive enough to vote for anyone currently in congress? Who are you directing this message toward? The public? Practically everyone here knows what the DMCA is, the people you need to educate likely just bought a computer..they know it works, and they hear rumours in Microsoft-supported magazines that pretty soon, sparkly new Palladium processors will come out that make them immune to viruses. How about that -- no viruses any more!
If you really value your freedom that much, try preaching that message to the village idiots that are taking it away from you.
[quote]You aren't despairing about us, then. Greece was the birthplace of democracy, but democracy is unstable, and never lasts long anywhere. The US has always been a republic. Insofar as we can avoid democracy, we have a chance to keep our freedoms.[unquote]
could you elaborate on how you see a republic as being more stable and more secure (for its citizens) than a democracy? what inherent part of democracy makes it unstable?
Although the bill was passed unanimously, the names of eleven sponsors are listed by thomas.loc.gov
0 22 81:|TOM:/bss/d105query.html|
2 03 7:
The house bill, HR 2281, was sponsored by Howard Coble and had nine cosponsors:
Rep Berman, Howard L. 2/11/1998
Rep Bono, Mary 6/5/1998
Rep Bono, Sonny 9/26/1997
Rep Conyers, John, Jr. 7/29/1997
Rep Frank, Barney 7/29/1997
Rep Hyde, Henry J. 7/29/1997
Rep McCollum, Bill 1/27/1998
Rep Paxon, Bill 6/5/1998
Rep Pickering, Charles 6/22/1998
The senate bill was S. 2037 and was sponsored by Orrin Hatch.
Bill summaries can be found at:
http://thomas.loc.gov/cgi-bin/bdquery/z?d105:HR
http://thomas.loc.gov/cgi-bin/bdquery/z?d105:S.
Slashdot needs a "Depressing yet true" moderation catagory.
I think RedHat is causing unnecessary contention. I don't understand why a company that is trying so hard to seem valid, would put such a statement out. For someone in their position, such a risk is great. My perspective of them has dropped many notches. As for most of the other comments here, they are just plain US bashing. We are happy here in the US and we are free and have access to more information than we know what to do with. We have access to our represenatives and we can vote. I thought this was to have good Science and Technical discussion, but instead, it has been for the most part, just flamming the US and their supportors.
You're missing something.
Our vote, remember, means nothing.
We didn't vote George W into office -- he snatched the presidency from Gore with the help of his buddies down in Florida. And, look what he's doing to the nation. Before Bush, we had a balanced budget, a strong economy, we were at peace with the world, and most people didn't hate us. NOW, we have the return of Reagan-ish deficit spending thanks to unnecessary tax cuts which, incidentally, primarily help the rich (remember "Voodoo economics"? Reaganomics?). We have a huge amount of saber rattling going on. Companies are getting away with just about everything they ever dreamed of (just how many Enron execs are actually going to be punished? How many are going to even stop being rich?). and everyone around the world hates us.
Yeah, I'm REAL OPTIMISTIC that those elections are going to CHANGE THINGS! Oh, SURE. And, the rest of the world is so mean spirited that they blame individual Americans for things that aren't their fault -- in part because of people like you, who believe that their vote actually counts (I'm not saying you're a bad person, but rather that your optimism gives others an excuse to blame individuals for the actions of their government). So, Euro types tell each other, "But, the Americans can vote against this type of thing, so it's really their fault!" And, now, we can't even move away, because everyone wherever we go will blame us individually for everything that is going on, and no matter where we go we'll be hated. We're the gypsies of the new millenium (except, of course, that people generally find gypsies somewhat interesting).
As an aside, by the way, this isn't very nice of Europe in particular. Especially after we've almost literally saved the free world in two major wars, rebuilt even our enemies' entire infrastructures after both of those wars, accepted millions of refugees and foreigners with open arms, given them an education and a new life... But then, they say no good deed goes unpunished.
Vote? Fuck it, I've got less important things to do.
Farewell! It's been a fine buncha years!
...someone host in on a US server and clearly display that under the DMCA the following is illegal. Then say "Fuck you assholes, here it is. Come get me" Take a stand and fight this shit biscuit.
:) I mean, someone with balls. They should do it.
Huh, wha, me? you want me to do it? I would but i don't want to have my server shut down
"What thou shalt not, I shalt did!" -Bart Simpson
I surely hope you are right. But that actually brings up an incident I'm familar with. My brother-in-law was convicted of rape. He was a HS Senior, and the two girls were freshman. Now, treating 18yr olds and 15 yr olds equally in school is a problem in and of itself - but I digress. I can't tell you if it was forced (DURING School, in the theater), but I do know of the inconsistancies between the attornies. For example, the girls said he held a knife to them. When searches took place, no specific knife was found, and it was agree that as part of his plea (the moron admitted to having sex with them - he's not too bright, just being 18 screwed him) that no information about a knife would be used in court. The DA presented evidence that 'A knife like this (shows LONG bladed knife) was found during the search'. Yet no knife was found (other than what's in the kitchen) that had anything to do with the case.
Sorry, they're all scammers. Like the chick who claimed Mark Chmura raped her. Did you watch that on Court TV? That was hilarious.
It's amazing what an accusation and a DA looking for an appointment can do to you.
"I can't give you a brain, so I'll give you a diploma" - The Great Oz (blatently stolen sig)
Step one oughta be a little civil disobedience, don't you think? Rolling over and playing dead just doesn't make much of a statement, especially when the specific example here is such a weak one. Why not go about out business while loudly proclaiming, LOOK AT US -- WE HAVE TO BREAK THIS STUPID LAW JUST TO DEVELOP LINUX.
Of course, I'm a loooooooong time Linux developer, and you don't see me attaching my name to this, so if might be harder to find martyrs than other kinds of open-source volunteers.
I can see the future of Slashdot:
poster1: blah blah blah blah blah blah
poster2: RTFA!
poster1: F you! I would have RTFA, but hey, I'm an American. RTFDMCA.
__ Someday, but not this morning, I'll finally learn to use the preview button.
Someone mentioned that distributing the source code for the patch equates to describing the security flaw. As I see it this is correct (makes for some interesting GPL conflicts).
Now push this reasoning out to the next logical step...
Let's not forget that a binary is just a set of instructions, like source code. There are certainly people out there that can read various binaries (via a hex-dump, etc.). Even more disturbing is the fact that you can decompile the code into C (or other language of your choosing).
By this argument, you can not distribute the patch, in any form (source or compiled), in the USA.
The only difference between distributing a text file, source code, and a compiled binary is a matter of syntax and/or grammar. Since, the DMCA doesn't discriminate between languages, even binaries should be subject to its restricitons.
Hmm... isn't a decompiler a violation of the DMCA? By the same logic, isn't a compiler also a violation? What about an interpreters too?
- If the Stradis driver is loaded (hardware must be present) a
/proc/slabinfo file could exceed a buffer size and cause
/proc files could be persuaded to dump kernel data
maths overflow allowed the user to scribble into kernel memory
- It was possible to feed the SE401 USB hardware driver signed
values and fool kernel checks. This requires the hardware is
present
- The usbvideo driver could be fooled due to a maths overflow corner
case. This requires drivers to be present
- The
corruption of the kernel. This is really beyond user control but
if it occurs then the user can trigger the corruption
- By setting the TF flag a carefully constructed binary could hang
the kernel dead
- By misusing the rlimit resource limits it was possible to avoid
acct data being written on your process exit
- The joystick driver had erroneous copies in obscure ioctl cases
that could be used to patch the kernel as any user. Hardware
must be present and the module loaded for this vulnerability
to occur
- Multiple errors in the vm86 handling allowed users to force an
"Oops" from the kernel and in some cases to corrupt kernel data.
An additional small fix is needed for 2.4.19 but not 2.4.19-ac
(see bottom)
- The rt_cache_proc file could be tricked into returning chunks of
kernel data.
- On a system with over 1Gb of RAM the loop driver could in some
cases fail and expose kernel data. This is not under user control.
On 2.4.19 the loop driver works fine with large memory systems.
- Multiple
due to a sanity checking bug in the proc file handlers
- The XMM SSE registers were not always cleared for new processes
and could expose data from a different task. While it was not
possible to modify another tasks registers there is a small risk
because some cryptographic systems have XMM acceleration functions
W
But if that is really taken as a violation of the DMCA, then almost all public notices of security issues may be illegal, even if the author did not write an exploit, and indeed even if no exploit is known to exist. The entire CERT site is at risk. Bruce Schneier may be one of the rampant criminals on Earth.
You're right, these conclusions follow logically from the claim that this kernel changelog violates the DMCA. It's quite clear in fact that it does not; see my earlier post.
Notice that no one here or in the referenced articles and links actually quotes the DMCA to show which provision would be violated by publishing this information! Doesn't that make you suspicious?
It's sad that so many people here are willing to suspend critical thinking when presented with a claim that fits into their preconceptions.
So, when the election comes around in the near future, DON'T VOTE FOR ANYBODY CURRENTLY IN THE CONGRESS!! This is a completely over simplified, reactionary method. What you need to do is educate yourself and elect representatives which are not members of the "good ole boys" club like Bush, Gore, Lieberman, and most Washington politicans are. Every state has their own voter's guide. I'm sure most if not all are online. Do yourself a favor and read it.
humble thoughts from ekent
No one here or in the referenced links has backed up the claim that DMCA would apply to publishing these kernel patches, using quotes from the DMCA itself. Why do you suppose this is?
And more importantly, why are so many people willing to accept these claims without any proof or even any evidence?
Readers need to think for themselves, and not just accept what people tell them. It's all too easy to swallow unsupported claims which fit into our preconceptions. But in fact those are the ones for which it is most important to check the facts, simply because they are the ones where we are most likely to make mistakes.
See my earlier post for evidence that the DMCA does not apply to publishing kernel source. I quote from the text of the DMCA itself, and link back to the rest of it.
Shouldn't a position that has evidence behind it be more believable than one which is offered without any backing at all? Pay attention to your own thought processes as you consider the new information I am presenting here. Think about whether you are being objective and open to new ideas, even when they contradict your prejudices.
Thinking for yourself is hard work, harder than letting other people think for you. But if you can get yourself to do it, eventually you'll find that it's a hard habit to break.
Actually you don't necessarily...
Just vote Libertarian
neurostarThey did not legally purchase this right from Congress. They only purchased a license to use this right. Congress may revoke or revise this license at its discretion, perhaps with the upgrade to Congress v. 2004.
And duck. The black helicopters are circling low again.
If Red Hat is going to cave in to the DMCA goonsquad Stasi then I will not be using RH anymore.
Linux is about freedom. Freedom to choose.
And I choose to use a different distro.
Let the DMCA Stasi hitsquad come kick my door down with ski-masks and machine guns because I watch LOTR on my Linux box or I have 1,000's of MP3's (currently converting them to that other format).
Let us all become MP3/DVD Martyr's.
What next? Will the DMCA goonsquads begin dropping 2,000lb LGB's on our homes because we read information that they have deem as verbotten???
Where will this stop? Is there a limit on this or will it be taken to the point that to listen to a song you have to provide biometric fingerprints to your government approved walkman??
I see it now, like in the Soviet Union, copy machines and typewriters had to be licensed. Get caught with an unregistered typewritter and get a bullet in the head.
It's only a matter of time..
"You are not allowed to download information on the patch if you are not a US citizen"
[Hackers worldwide suddenly succumb to a nasty bout of amnesia]
kernel patch that cannot be explained to U.S. citizens
Who cares? They wouldn't get it anyway...
It's funny laugh!
Kernel patch submissions from Alan Cox should no
longer be accepted. It's apparent that he is not
just doing this because he hates the DMCA, but that he is trying to give Americans a hard time in general.
Any idiot will understand that the DMCA has nothing to do with circumstances like this kernel patch. Any lawyer can explain to you exactly why. I'm not going to quote from the law, because frankly, no one on
Slashdot is capable of interpreting the legal terminology.
That is what lawyers (unfortunately) are for. If you really want to understand the DMCA, consult a LAWYER (they are a necessary evil in the US).
Words such as "effective", "reasonable", "primary" all have special meanings when it comes to legal documents.
Basically, there are no copyrighted works involved here. And the kernel patch is not primarily written to circumvent some type of digital rights management. The point is, yes, occasionally crazy issues end up in the courts - you can sue pretty much anybody for *anything*. (Hey, my C compile lets me write code to circumvent CCS, my hammer allows me access to the local library to steal books, etc. Thats not the DMCA though) Fortunately for us, the crazy cases don't usually go very far in the court system. Yes, it was surprising about what happened with Adobe and the Russian guy (what was his name?), but that was a much different issue - where the notions of copyright and copy protection where VERY clear there.
Do you think Alan Cox consulted his lawyer before submitting his kernel patch under such an absurd copyright? I doubt it.
So, the end result simply becomes that Alan Cox is beign stubborn. We don't like the DMCA, but he really isn't at risk from it because of a kernel patch. Let's not support this kind of insanity anymore. Sure, continue to fight the DMCA, but let's also make our voices in the Linux community heard, and make it clear that we don't want to deal with whiny, stubborn idealists who are always trying to push a political agenda. It distracts from what we (and Linus) are trying to do with Linux and OSS (for some at least)
Eh?
You know where you are? You're in the $PATH, baby. You're gonna get executed!
As a programmer and member of the United States/New World Order, I'm appaled. This is ridiculous. I won't view that website ATM. I think I'll wait until I move to another country. Maybe a lot of us Slashdot nerds should move to some country where freedom actually means something. Then we can let the American idiots that remain blow themselves up, and sodomize each other with laws.
Comment removed based on user account deletion
I'm not one to gripe about moderation usually, nor am I one to support the Libertarian party normally, but... WHAT. THE. FUCK.
How is anything he said Flamebait? Voting 3rd party will guarantee voting against someone who voted for the DMCA. Voting Liberatarian will also be very likely to vote in someone who is against protectionist legislation like the DMCA. I hope this one gets nailed in meta-moderation. It's sick to see someone abuse moderation points for their own politics.
We have a BS law for everything and if you haven't sued someone in the paste weed you are outdated like a 486 Packard Bell. Congress is just a bunch of cheap whores making dumb ass laws and flaunting there ghetto booze around.
Voting is the only useful form of complaining you can afford. Others have options.
The Green Party is also a good choice for a party that is against corporate welfare legislation. That's pretty much the core focus of their party platform, though it's more oriented towards enviromental concerns.
If it's for-profit but free, you're not the customer -- you're the product (e.g., the Slashdot Beta's "audience").
If a security document describing flaws in the kernel is a violation of the DMCA, than surely any coments in the source code of any Open Source product are also in violation (I guess that means my code is safe! *grin*)!
/bin/cat... HA! It's now a tool to circumvent copy protection, don't let it run with root privs! And don't forget to change chmod so it can't clear bits... the DMCA doesn't specify that *YOU* may circumvent your own protection!!!
Further, since the DMCA doesn't specify that the language must be English, the source code itself might well be in violation. Say goodbye to utilities like crack (and thus cracklib), or port-scanners. In fact, you might choose to view the contents of a protected file with
Hmmmm, now what big organization hates open-source, and would benefit the most from having it declared illegal.... what giant mega-corp would be happy to have security notifications disallowed.... hmmmmm....
Moreover, even if we make the gigantic leap that a prose descrption is a circumvention device, the DMCA only restricts devices that have NO COMMERCIALLY-SIGNIFICANT NON-INFRINGING USES . Because the "device" clearly has countless legitimate commercial uses in protecting information systems, it would still not violate the DMCA.
The alleged parallels to the Sklyarov case are completely erroneous. Sklyarov and his employer were selling systems to crack content protection. You handed Sklyarov a wad of money, he handed you a content extractor. Comparing this to an essay that merely states that a programming mistake occurred is ludicrous. (Incidentally, given the propensity of clueless corporate drones to accidentally lock up their content and delete the originals, the Sklyarov systems do have commercially significant purpose, and were likely non-infringing. Caveat: as long as Sklyarov and friends didn't advertise them as useful for violating copyright.)
Alan Cox and his useful-idiot friends at Red Hat need to actually try reading the fucking law. It emphatically does not mean what most people are assuming it means. This sort of political grandstanding is destructive and draws attention away from the real problems with the DMCA:
Incidentally, I have a support contract with Red Hat, which they are breaching due to this erroneous misinterpretation of the law. Their lawyers will be hearing from me if they don't get their act together.
nothing like double penetration....
> Result: You're surrounded by people who despise George W. Bush and see you as their personal GWBush voodoo doll. So they harangue and harass you about every screwed up thing the U.S. does as if you personally ordered it.
That's not even close to true. In any place you might actually want to move to, most of the people are reasonable enough to know that most Americans don't like the things their gov't is up to. There's a big difference between disagreeing with what your gov't does, and hating Americans in general.
Someone who left the US as a refugee from the DMCA would be very unlikely to be shunned because they grew up in the US. Anyone who leaves once they figure out how bad it is must not be the kind of person that keeps electing people who pull shit like Bush does.
It's fairly well known how difficult it is to get a clue from the US news media, which is why most people don't blame the US public for what their gov't does. Democracy is broken, so it's not the people's fault.
There are some places in the world where people are brainwashed into blind hatred of entire cultures or groups of people. You might encounter the kind of treatment you describe in some places like that. BTW, Canada is not one of those places. Right now, a lot of us hate your gov't. This is separate from the ongoing we're-better-than-the-US sentiment. We like to point to things like gun ownership, and crime involving guns, as reasons why Canada is better. Canada has always had a need to feel superior, probably because we guess that the rest of the world sees us as the US's little brother (or even lap dog). This sentiment does _not_ apply to individual Americans. If you came to Canada (or most E.U. countries, I would imagine), and told people you left the states because of gov't oppression, you would be welcomed with open arms. (You might want to avoid talking about it too much if you support most of the rest of what Bush is up to, since most people outside the states would hope you meant you didn't like everything he's doing, and maybe want to talk about how much Bush's unilateralism sucks. Still, there are people who defend America's war plans, etc., and people don't egg their houses or knock down their mail boxes. Nobody will care that you used to live in the states unless you make a big deal about it. (err, you might want to own a vehicle other than an SUV or pickup truck to avoid the stereotype of the resource-guzzling American.))
#define X(x,y) x##y
Peter Cordes ; e-mail: X(peter@cordes ,
As a non-American, I can say fairly easily that there are two levels of resentment towards Americans. The first is towards the government, which is composed of such arrogant pricks it's not even remotely funny(looking at their behaviour towards it's allies, or any one of the many political faux pas(spelling?) they've committed, it's obvious that something is wrong), and the second is towards a very specific segment of the population, who seem to be aggressively ignorant of the outside world. Sometimes the latter is composed of incorrect facts shoved into our faces(the second world war against Germany was, for the most part, fought by European countries and Canada. The United States sent some troops, but they certainly did *NOT* singlehandedly save the war in WWII. The fight against Japan was entirely seperate from the trunk of the conflict. The first world war is one in which the US was a late comer, where the british forces(and their allies) were in a dead tie with the Germans(and their allies). When the US decided to join the First world war, it tipped the scales of war in the allies' favour. Thus, the Americans played a large part in the victory of World War I. American History tends to overstate the American role in the defeat of the germans.), or honest mistakes, which are usually laughed off by most people(though some Americans don't seem to like this). Arrogance overall is a distinct problem many people find when dealing with Americans(though I generally don't have to deal with them every day, so I cannot really vouch for this). Arrogance and ignorance can really set some people off though, and though I suspect some things may just be cultural differences in the ways people relate to one another, and there are undoubtedly many in the States which don't fit this stereotype, enough fit the description abroad to enforce it. The fact that many countries get American television only adds to the matter, as American Television is among the most jingoistic I've seen, which enforces an already existing image problem.
There is a real problem of US culture displacing a native culture, but generally that is a problem which must be confronted on a local level, so there's no sense in trying to blame the media machine for doing it's job.
On the topic of the political system, I've long pondered this, and I realize that this is the *EXACT* reason that the federal government was designed to be so minimial in the original design of the US. By placing the power in the hands of single states, politics can be divided into someting far easier to grasp and get into(it's far easier to convince a couple million people to vote for you in a state election than a couple hundred million people in a federal election). This allows for seperate states to have seperate policies as the people see fit(as a bad example, people in outer states tended to vote for Gore in the last election, and people in inner states tended to vote for Bush, so a clear dichotomy within the nation exists -- the very reason state politics were emphasized in ther original design.
do you really think you stand a chance in HELL of overthrowing the worlds most powerful military machine with your dinky little semi-automatic rifle (last i checked, automatic weapons were still illegal in the U.S.)?.. even if you had a thousand.. a million... theyd still squash you like the anti-government militia that you are to them.. fact is guns are used MORE for illegitimate purposes that legit... just look at all the countries with strict gun laws (esp. pistols being illegal like here in Canada).. the amount of violent crimes being committed in those countries are significantly lower than in the U.S... show me a legitimate use for selling military grade weapons to the public, and ill show you a crazy serial killer going around murdering people randomly.. anyone remember something about a sniper on CNN? the idea of having the right to bear arms is just a silly outdated excuse for gun nuts to satisfy their fetish.... i'll admit it, holding a hand gun makes you feel powerful.. its like a drug... but not a necessary one and maybe thats not even such a bad thing, but dont be a hypocrite... if you allow something with mostly horrendous uses, and few legit, why not allow them all? the answer is money.. theres a shitload of money in making and selling arms, and the powers that be in the U.S. are heavily backed by certain lobbies and thus will make sure that there are always guns around to be guns sold.. and tobacco.. and alcohol... and fossil fuels... but no drugs, because drugs are the spawn of satan, and they cant tax those... theyll convince you its in your best interest to support guns because of the 2nd amendment, and your right to defend yourself against criminals... fortunately, for the criminals, but unfortunately, for you, they too can defend themselves when they break into your house... i love the idea of a free world... but there is absolutely no legitimate use for any civilian to own a gun..
If it was presented to a judge that Mr. Joe Nobody wrote a changelog entry defining file xyzzy.c that has hole 'a' in it which causes this issue... and Mr. Jack Cracka makes a program based on that info, and Master Script Kiddie then uses that program to take down a server for some company, it could be construed that Mr. Nobody's original document allowed for circumvention of system security and therefore was in violation of the DMCA. See?
! It doesn't outlaw hacking, or taking down servers (computer crime laws do, though) nor does it outlaw providing information to someone about how to hack. The only thing it outlaws is circumvention of protection measures that control access to a copyrighted work, and the trafficking in devices primarily designed for such circumvention. Read the definition of technological measure, circumvention, and circumvention device in 17 USC 1201, and then tell me how taking down someone's server could possibly be such a violation. Even if by some stretch you can fit that into the law, certainly it is even more of a stretch to imagine that the changelog is a "device" that is "primarily designed" for circumvention.
... a trial can go to hell quickly, without proper cause.
No, I don't see. You should really read the DMCA (http://www4.law.cornell.edu/uscode/17/1201.html)
Without proper understanding
Yes, indeed!
But mistrials aside, I don't see how this issue could ever be a realistic DMCA case.
First, it's lobbyists, second, yes. Your government is corrupted, and it's time for a new one.
there exists no quick solution to getting rid of guns, obviously.. but you have to start somewhere.. making the sale of guns and ammo to the public illegal could be a nice starting point... making the public TRULY aware of the horror of guns, instead of supporting them could be another..
the way you're describing guns here really amazes me... as if its your god given right to have the power in your hand to end someones life in an instant... i'd like to think that we've progressed FAR beyond the ass backward colonial american days when carrying arms was perhaps necessary to keep the redcoats at bay...
civilians have no excuse to carry guns..
target shooting? boohoo, so you dont get to practice your m4d sniping skillz.. go play some counter-strike instead
you dont need them to hunt - you go the store instead, or use a bow if you must absolutely kill your own food
you could use them against your government in case they became tyrannical - come on! you think youd stand a chance?
you could use them to defend yourself from criminals - but then they could use them against you too.
collecting guns - again, boohoo so some rich texan doesn't get to display his semi-automatic rifle collection on his wall.
if anything, guns are anything BUT mostly harmless... but people like you, that have this fundamental belief that theyre essential to existance, are the reason why events like columbine, 9/11 and the latest sniper nut killings happen.... dont you think the gains clearly outweigh the losses?
When they're not busy shitting on each other (literally in german-porn) they're too busy looking the other way (think: Bosnia, Kosovo) to take care of business.
Why is it EuroAsses always play both sides of the fence? Especially germany; all we hear is "why doesn't the US come fix Bosnia / Kosovo?" Ten minutes later, they say "How come the US thinks they're the world police force?"
BECAUSE YOU DON'T CLEAN UP YOUR OWN DAMN BACKYARD!
Disclaimer: Not all europeans are EuroAsses(tm), just the whiny do-nothing / america is bad ones.
I LIVE IN THE US: Salt Lake City, Utah. Come get me. Muwahahaha!
Attorneys appeal to emotion; that's part of their job, to persuade the jury
the decision is based on the facts of the case.
don't the 2 quotes contradict each other - the jury decides based on how well the attorneys emotionally persuaded them, facts or no facts
Never been in a courtroom, huh? No, they're not contradictions. Attorneys do appeal to emotion, but the degree to which they're allowed to do so is limited by the law. (The attorneys can't say anything that's "prejudicial," in other words, something that's too emotionally appealing. That sort of thing, if not caught in trial, can result in remanding or even overturning of the case at appeal.) Meanwhile, the jury is continually instructed to ignore the emotional aspects of the case and just focus on the cold facts, except where it's appropriate to consider something like extenuating circumstances or state of mind.
The US judicial system is an adversarial system, which means the courtroom is an arena where the prosecution and defense try to fight it out. It's up to the judge to make sure nobody punches below the belt, but within those limits, the two sides can do anything they like. At the end of the day, the jury makes their decision based on the law and the facts as presented.
I write in my journal
I don't see anything on the site about 2.4.18 at all...
Author, Shell Scripting : Expert Re
This does actually go beyond Alan Cox making a point, he really does have to worry about releasing patches giving circumvention information in the US.
Consider the following:
Assume Microsoft Palladium has shipped.
Assume a major remote exploit bug/hole allowing one to bypass the "trusted computing environment" is discovered in this new OS.
Assume the steps required to reproduce the bug allow one to bypass the DRM built into the OS.
If you posted either an exploit or a description of the bug you could be charged with violating the anti-circumvention section of the DMCA.
Now assume someone has a "trusted computing" patch for linux that uses digital signatures for security. Remember this can also be used for DRM.
Bug allowing trusted computing subsystem to be bypassed is found.
Someone posts patch for this bug, by it's very nature the patch contains enough information to exploit the hole.
This also would be violating the anti-circumvention provisions of the DMCA.
If you think perhaps this is an overly broad reading of the law and nobody would really ever be prosecuted for violating the DMCA in this way. Remember DAs who have decided a perp is evil and must be guilty of something will find something to nail you on. Usually a law with overly broad language that was aimed at an entirely different problem. Some favorites are RICO, federal wire-fraud statutes, tax evasion, anti-conspiracy statues, computer crime laws, and coming soon to a courtroom near you the DMCA.
Happy Fun Ball is for external use only.
Though your statements are mostly correct, you seem to be missing the point.
It is not the author of the information that needs to use the tool to gain unauthorized access to a copyrighted work. Do you think they had to prove that Dmitry Sklyarov accessed copyrighted information through the use of the tool he helped create? No. Did they prove that 2600 used DeCSS at all? No.
If it is possible that someone else could use the information you publish or the tools you create to gain unauthorized access to a copyrighted work, you are in potential danger of prosecution. Yes, prosecution is not guaranteed, and in this case it seems remote, but why should anyone have to take that risk? These people chose not to take that risk and used the opportunity to point out one absurdity of US law.
The statement that security information cannot be interpreted as a means of circumvention is more than a bit naive. 2600 posted a link to software that someone else had written that someone else could have possibly used to gain unauthorized access to content on a DVD they purchased. They got sued under the DMCA, and it was a strong enough case to win. Describing a security flaw in order to justify the necessity of an associated patch is also nearly identical to the talk Dmitry gave that landed him in prison.
Comparing DeCSS to this situation is tricky. In the DeCSS case, source code was ruled to not be speech. The source code to DeCSS was deemed to be useful for circumventing CSS in order to gain access to a copyrighted work. English descriptions of the code were not useful for circumventing CSS, though they could arguably be used to achieve the same result.
With detailed security information and the associated patch, we can draw a parallel to DeCSS source and the English descriptions, respectively. Though this seems counter-intuitive, this correlation represents the risk that is being avoided in this situation. The patch itself fixes a security vulnerability and is not useful for gaining access to a copyrighted work. So, even though it is code like DeCSS, the primary purpose of each contrast sharply. However, whereas descriptions of DeCSS were much less useful for gaining access to a copyrighted work, descriptions of a security patch are much more useful than the patch itself.
So, for software intended to break security, one could argue that the tool is more useful than descriptions of it to achieve that goal. For software intended to patch security, however, it is quite the opposite. The description of the tool is what can potentially be used to break security, thus this is the piece shielded from American eyes.
Yes, you clearly understand the big lie theory. You are using it now. If you were telling the truth, you would claim your comments, not post as an anonymous coward.
The Uncoveror: It's the real news.
Prove it. Lets see the link on state.ma.gov that says so.
comment directly in my journal
First, both of your situations are hypothetical. Neither is actually the case.
Second, we need to talk about "circumvention devices", not circumvention. Of course a description of a bug is not actual circumvention. In fact, it's not a circumvention device either. No court has ever banned a textual description of how to circumvent technological measures, nor (I hope) will they ever. Such descriptions are protected by the constitution, unless they are also simultaneously executable (in the sense of DeCSS source -- too bad). Don't forget, also, that the primary purpose of the "device" must be to circumvent, so a patch that fixes a security hole certainly wouldn't qualify, even if (and I stress if, since usually exploiting a bug is much harder than finding it) the patch contained enough information to develop an exploit.
In the case that we were talking about a bug in DRM technology like Palladium, there might be more to worry about (I contend that a description of what a security patch fixes would obviously be in the clear, nonetheless). However, there's no technological measure involved in this case, no device, no copyrighted material (??) and therefore, no DMCA.
A better option is to show up, vote, and actively obstain if you don't like any candidates for a particular office. There are probably other issues worth voting on any particular ballot, and the total number of votes is relevant (if underreported). As more people actively obstain, it will become easier to demonstrate the need and desire for a binding none-of-the-above option. Increasing voter turnout of people who understand technology would be a Good Thing.
Is it a hoax? Every comment I've read here is a reaction under the assumption that the story is accurate and the website actually means something. If it's truly illegal to accept the license just b/c one lives in the U.S., why is it even available to U.S. domains?
> In a democracy, you are responsible for the actions of those you elect.
Please repeat after me.
The USA is not a democracy.The USA is not a democracy.
The USA is not a democracy.
The USA is not a democracy.
The USA is a Constitutional Republic operating on democratic principles. A democracy is three wolves and a sheep deciding what to have for dinner.
The whole idea of a "checks and balances" system is to prevent the will of 50% plus one from being imposed unjustly on the 50% minus one. This is especially true for the smallest minority group, the individual. The US is supposed to protect individual rights, which are completely counter to a "democracy."
As for your original point of "Get out there and vote." I agree whole-heartedly. The representative system is pretty broken right now, but politicians do pay attention when their jobs are on the line.
Vote, damnit!
It's cheaper than the alternatives...
You have a misunderstanding of the DMCA and the cases you mention (Sklyarov, DeCSS). In particular, the idea of whether something is "useful" for gaining access to a copyrighted work is irrelevant as far as the DMCA is concerned. The only thing banned is devices primarily designed for circumvention.
The DeCSS code was enjoined because, though it was held that code is indeed speech, it was not PROTECTED speech because it was also a "device" whose primary purpose was to circumvent CSS. I don't agree with this ruling, but that was what happened. It had nothing to do with how "useful" the source code was compared to the english descriptions.
Sklyarov was not indicted for giving a lecture about how eBook "encryption" worked, he was charged with trafficking in a circumvention device for profit. (A criminal offense under the DMCA!)
There is no way that a vague english description of a security flaw in a changelog constitutes a device, much less a device whose primary purpose is to circumvent a technological measure used to protect a copyrighted work. Where's the technological measure? (Read the definition in the DMCA) Where's the copyrighted work? How is a paragraph of english a device??
If we can find a way to educate people about what the DMCA really bans and why DeCSS and Sklyarov's software were found to be illegal, that's great. If we can find a way to be an annoyance to those who bought and use the DMCA, that's ok too. But this stunt is just immature, and only an annoyance to people who already agree with Cox (ie, linux users). In my opinion, all of his posturing is just lowering the level of discussion (and understanding) and will ultimately hurt our cause.
http://www.the-cloak.com/Cloaked/+cfg=32/http://ww w.thefreeworld.net/non-US/
Could you link to any of these? The DMCA SPESIFICALY STATES that does NOT restrict freedom of speech in any way, that you are free to write, and talk about security, and that reverse engineering is legal for security and encryption purposes.
autopr0n is like, down and stuff.
Possible solution:
Add to the linux copyright a prohibition on running any code which constitutes a "system protecting a copyrighted work" as defined by the DMCA.
I.e. if you consider your DRM system to be a "system protecting a copyrighted work" as defined by the DMCA, you may not run it on Linux. Acceptance of the license would mean you agree anything you run would not constitute such a system. If the DRM code license prohibits this, then you are simply forbidden from using it (just as the GPL forbids using another licenses restrictions to circumvent its own).
Then we could release patches, since we wouldn't have to worry about circumvention of an access control system which itself is in violation of the Linux license.
Of course, with Kaplan on the bench, we do have to worry. He could just ignore the illegality of the protection system like he ignored fair use. Just requires the RIAA/MPAA/BSA/SPA/IFPI/WIPO to write a big enough check.
Just because it CAN be done, doesn't mean it should!
This reminds me of a precedent involving non other than Sen. Edward Kennedy, and another legislator (Sen?) Kassebaum. The Kennedy-Kassebaum bill contained a clause that forbade lawyers from explaining how people could protect their assets from Medicaid. The bill passed. It never made it to the Supreme Court. Instead, the Justice department under Janet Reno (she did some things right) decided that it was a violation of the 1st ammendment on its face. They publicly stated that their policy would be not to enforce it. The law still remains on the books as an ugly blotch. Estate planning lawyers advise their clients that it's still on the books, then they go ahead and tell them about the DOJ decision, then they violate the law.
Yes. It's sad. Fixing the law is the right thing to do. Aspects of the DMCA are on par with the K-K restriction. Of course IANAL, but if I were faced with this situation I'd just go ahead and violate the law which is what people are doing. Then either the DOJ will make a similar policy decision, or someone will go to SCOTUS. If SCOTUS can't see this for what it is, then buy a gun because we'll need another revolution to fix it.
For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
i normally don't do this, but this is really hilarious, please mod it up, and then mod this into oblivion...
Thanks...
If that site truly wants to address DMCA abuses, they wouldn't be keeping Apache logs in the first place.
So if the US had simply built a camp within Afghanistan, and kept them there, you would be okay with it? You are mad that the US moved them to a non-US area, and can therefore not give them certain rights. But what if they were still on Afghan soil?
As far as I know
Does good programming practice becomes illegal under DMCA
We've always been at war with Eurasia.
well, ive had enough of this dmca garbage.. it needs to be replealed NOW!!!!!!! the dmca is a violation of our first amendment rights, why doesnt the people the lobbyists are working for just write off piracy as promotion and leave it be. the mpaa and the riaa need to be abolished, and ill say it again, the dmca needs to be replealed, it is NOT the american way!
I'm pretty sure that the Register's hinting is dead on -- this whole "make the DMCA look idiotic by making progressively more and more crucial things be inhibited by it" is an ongoing Alan Cox project. He's got a fair bit of tech clout...he might be able to help drop the DMCA.
Give a couple years of building up nasty cases against the DMCA, the EFF decides the time is right, and goes after it.
May we never see th
George Bush isn't the problem. He's nothing more than a mindless pawn of the GOP ("republicans") anyway. Besides, the DMCA was a product of Congress, not the Executive branch. The DMCA was written and passed by a Congress under full control of the GOP, regardless of who was in the White House.
If you're too young to remember the devastation that the GOP brings every time it gets power, maybe you'll emerge from this 2nd Bush Depression all the wiser.
If you're too stupid to remember Bush's platform during the election, and how quickly those promises were broken, then probably nothing will save you from a life as a pawn of demagogues.
On the greater scale, as somebody else pointed out, it's the will (or lack thereof) of the People that is ultimately responsible for travesties like DMCA. In the US, less than half of the people who are eligible to vote do vote. This means that the majority is ruled by a minority! Democracy in INaction. And of those who do get around to voting, very few do any research at all. Most vote based on familial prejudices, TV ads and other heresay. In essence, the will of America is completely in the hands of those who have the means to market to them.
It wouldn't be that way if Americans took responsibility for what they do or fail to do.
So, when the election comes around in the near future, DON'T VOTE FOR ANYBODY CURRENTLY IN THE CONGRESS!!
And in two short years, the bad guys are back in office. Not too bright... From the Fools-Who-Didn't-Learn-From-History Department, that's exactly what happened in 1994, giving the GOP a stranglehold on Congress. In 1992, a fed-up America rightly ousted a bunch of republicans, based on the dismal failure of "voodoo economics" among other things. So in 1994, the republicans adopted the "throw the bums out" slogan for themselves, despite the fact that they were the bums that were thrown out in '92. And the stupid Americans blindly followed the slogan without giving it a second look, or remembering history only two years past, and they voted the bums right back into office. And we're right back into the same cycle of war and famine that Democrats worked so hard to get us out of in '92. Clearly the "Las Vegas school of electoral politics" doesn't work very well.
I can understand that Cox wouldn't want to be skyleroved.. Yes he works for RedHat and RedHat is a US company.... All the more reason to be worried about being made a 'test case'.
It's one thing to cry 'paranoid'. It's another to be told by your lawyer that, should you take what you consider to be a completely reasonable and prudent action, you run the risk of:
- Being arrested and possibly held without bail (risk of flight as a foreign national).
- havin your trip schedule completely messed up.
- being denied access to your primary employer's home state
- having to defend yourself against criminal charges (even if you're found innocent, it could cost you hundreds of thousands of dollars).
- If found guilty, you could end up in jail for years.
Remember: We already have Skylerov as example of having this happen to a foreign national.Given a choice between this, and making a political statement about the stupidity of this law by simply obeying it, what would you do? If you had a family to support, would this change your decision?
Free Software: Like love, it grows best when given away.
A velvet cage is still a cage.
Those who sacrifice security to condemn liberty deserve to repeat history or something. - Benjamin Santayana
What part of that is completely wrong? It's straight from the article.
'SBEMAIL!' is better than a goat!!
-1, Troll?
Oh yeah, it must because he was lying. Oh wait, it's all true.
Maybe because it was irrelavant. Nope, not that either.
Oh, I get it! Yet another moderator who doesn't like a post, so they mod it down. Good work. Sure beats actually responding.
..is by the anti-American anti-DMCA morons in Europe.
...morons
Anti-DMCA
Yeah, the DMCA has some very bad provisions that need to be re-done or tossed entirely. It has a few good sections, too--like the clause that says copying a program to memory to run it or installing it on your hard disk is a de jure non-infringing use of a copyrighted work. Said clause invalidates the old traditional basis of EULAs--that normal use is infringing by definition, therefore you must have a license to use your software. Nope, not any more. The only remaining basis for EULAs is contract law, and unilaterally-imposed, no-signature, after-the-sale contract conditions are a bit shady, to say the least. So, part of the DMCA is good--it gives us a legal basis to trash bad EULAs.
We want to get rid of the idiotic "circumvention device" clauses--the ones that are being mercilessly abused to supppress competition and research, and the one-sided "safe harbor" provisions that are used to chill free speech by intimidating Hosting Services into yanking perfectly legal speech from the web until its proven innocent at the time and expense of the victim. The provisions of the DMCA that are abused show us which provisions need to be tossed or re-done. It's being looked at, and the more obnoxious provisions are getting wrung out by the courts.
Anti-American
So Free Software is now only "free" to countries whose politics you agree with? What a load of crap! I don't see anyone making sites of software and information available to everyone except, say, China or Saudi Arabia. Why not? You could be arrested if you went to China after saying anything bad about their political system, or arrested if you went to Saudi Arabia while publishing a website with scantily-clad women on it--or pirate copies of "Satanic Verses".
While you're at it, better block all French sites if you discuss WWII or mid-20th century European history--you might mention Nazis. Better block Germany if you are a religious site that says rude things about anyone else's religion--even in a historical context. Thomas Payne's papers are extremely inflammatory and insulting toward the British monarchy, so Project Gutenberg had better block Great Britain--I think lese majestie is still a crime over there. Any site that hosts the writings of Martin Luther had better block most of the majority-Catholic countries in the world--I believe it is a crime in Italy and Germany to defame the Church.
Shall I continue? The Un-Freeworld site is run by a bunch of hypocrites, and Alan Cox is just as much a hypocrite if he supports it. A bunch of Europeans have decided they are going to take their ball and go home because we Americans won't play the way they want, when they want--then they have the temerity to call themselves supporters of "free" software.
Ballocks.
Free software is NOT about "you can't see my code if I don't like your politics". The latter is called CENSORSHIP . Anyone with the attitude of this so-called TheFreeWorld site is a damn liar and hypocrite if he calls himself a support of free software, because he's just another fucking censor.
Oh yeah, the Freeword site claims to restrict access to non-U.S. computers, but it does not. I downloaded stuff from it just fine. Like every other fill-in-the-form, jump-through-the-stupid-hoops site, you lie through your teeth to get at the "free" content. And ignore the stupid license with the stupid unenforceable threats.
Hypocritical morons.
---dragoness
The DMCA is a bug which could be exploited, for example by Lawyers. :S
So you cannot talk about it, which means also in court of course.
This makes it illegal to use the DMCA, because of the DMCA.
So actually what I'm saying here is illegal, because this could be exploited.
Damn, glad I live in Europe these days
sig(h)
I prefer to use Orthene. One tablespoon nails a whole nest within the day.
...I want to see the little bastards die in writhing agony. En masse. Squashing them is just too inefficient.
But then, I really, really hate fire ants. Ever accidently stepped in a nest of the little buggers? Fire ants are the rabid, poison-fanged, enemies of all mobile life besides themselves; they will happily swarm over any creature of any size that disturbs their nest and try to bite it to death.
---dragoness
Who else thinks the kernel patch contents would make an excellent t-shirt?
That's heartening, as Canada is one of the nicer possible destinations for a fleeing American. Actually the stories I've heard didn't mention Canada, specifically, most of them were from people who had gone on vacation in Europe or England and had someone just come up to them out of the blue and start hollering at them. One guy said that he was walking down the street in Italy and a cop pulled him aside to inform him that he should be ashamed of himself, in a big unpleasant speech! I think that that one took place during the first Bush's presidency.
;)
I'm really a quiet person actually -- I usually hole up in my apartment and tinker with old laptops and such, and all I really want is to be left alone. This is why the possibility of random strangers just suddenly hating me is so horrifying. Not that the possibility of all sorts of perfectly legitimate activities suddenly being made illegal in the name of "homeland security" makes me feel any better.
Your post is very reassuring to me, though; it makes Canada, at least, look very attractive. For the record, here's my take on "things U.S.":
On Bush: His "diplomacy" really turns me off (ANOTHER war with Iraq? WHY?) and the way he's irritating everyone kind of freaks me out. I disagree with almost all of his policies except for the war in Afghanistan, which I think was just (I'm a New Yorker, and my Dad was scheduled to be in a meeting right next door to the trade center, cancelled just in time). Of course, that war is more or less over, isn't it? New government in power, etc? Reconstruction in progress? I thought Afghanistan was more or less straightened out by now, even building schools and such. And, no one has seen or heard from Osama Bin Laden in months, so I'm guessing he's probably dead, but that's just my opinion... Ah, well.
On the U.S. Legal system: It totally horrifies me. Unlike Europe, Canada (I think) and most of the rest of the world, cases are tried by two lawyers competing with each other -- NOT two barristers trying to find out the TRUTH!!! So the truth actually doesn't come into the picture at all. Horrifying. The result, of course, is that rich people can get away with murder (cough, cough OJ cough cough), poor people get electrocuted, gassed, or put to sleep whether they've done anything or not, and no one (except the rich) is really happy with the system. Now, think about THIS: some little hacker kid can actually get LIFE IMPRISONMENT for messing around with a computer system, whether he actually hurts anyone or not. I mean, that's just amazing, isn't it? Kinda freaks me out. And, you KNOW that some creepy D.A. is going to try and make that happen one of these days, don'tcha? Looks SO good on that resume...
Consider THIS: Instead of trying to rehabilitate a hacker, the courts here bar him from using ANY TECHNOLOGICAL DEVICE!!! So he can't use a cell phone, access the web... Basically they try to destroy the guy. Someone whose only potentially useful skill is computer related can't use a computer! So much for rehabilitation... But I digress. Picture how horrifying this is to a guy like me, who programs for a living. Not that I'm a hacker or anything, I'M NOT, but still. The sympathy pains are pretty strong!
On Guns: I don't personally hunt, so I don't have much need for 'em. I see guns as opportunities to get in trouble. If you own one, and you lose your temper, things can go FUBAR pretty fast. In countries where people aren't armed to the teeth, well, the worst that usually happens is someone gets punched in the mouth. Seems like a better situation, you know? One troubling thing is that lots of states are passing "concealed carry" laws which let everyone pack heat after filing for a license. They're arguing about that in Ohio right now. VERY SCARY. I can tell you, I won't be visiting any of THOSE states anytime soon. "Hey, you dented my bumper! You prick! POW POW POW POW!" Suuuuuure. Sounds like a GREAT idea.
On tech in general: It's a terrible shame that the U.S, which originally spawned a lot of the technology we use daily, is now setting up a situation in which new developments will be slowed down or stopped just so patent holders can make an extra buck for their portfolio and the MPAA and RIAA can keep charging inflated prices for their dopey crap.
Overall, I'm really sad about how things are going. I don't want to give up on my country just yet, I mean, Bush is going to get voted out by a massive landslide in the next election (I hope, I pray), and there's a chance someone a little more normal will get into office (I voted for Nader last time, but this time I'm voting Democrat as the "lesser of two evils" in hopes of ousting Bush even though I usually don't vote on the "why bother, it's all rigged anyway" principle...). And, a lot of the lousy legislation in place right now is under attack in the courts, so it might all be a bad memory, like a hangover that fades away, fairly soon.
Of course, if Bush gets in for a second term, anything goes. Say, how hard IS it to apply for Canadian citizenship? Unfortunately for me I don't know French so I don't think I'll be accepted in Quebec... They make you demonstrate fluency, don't they?
P.S. I do actually drive a pick up but it's a very, very small one and gets great mileage (it's a 4 cylinder, and gets "up to" 23 miles per gallon depending on conditions). The rating is 19 city, 23 highway, but I don't get quite that good results...
Farewell! It's been a fine buncha years!
Welcome comrade...
You are now entering the United Socialists Republic of the DMCA land... You cannot speak, read or hear anything about this land, or anything within or external, without express written, and congressionally approved permission, on stamped, certified and legally approved papers.
Please take your seat in one of our state approved chairs with specially designed built-in listening devices to make sure you are not doing or saying something that might be harmful to those in power here. Any single mis-spoken word will get you 30 years hard time in federal prison system with big fat guy named "bubba" who likes long things inserted into a rectially part of his anatomy.
I think you see where this is going...
Sigh.
In response:
I've been sitting here trying to figure out whether you just called me "ignorant and arrogant". I'm going to give you the benefit of the doubt (something I doubt you ever give anyone else): I'm going to assume you didn't mean to call me ignorant and arrogant.
Again, though, I will reiterate: After pulling Europe's fat out of the fryer in two world wars, helping them rebuild and then forgiving ALL of their loans (think France), I really don't think it's fair that Europeans are so mean spirited towards Americans. And, honestly, considering the stories I hear from people who've been over there, I wouldn't set foot in Europe if my life depended on it. I don't voluntarily spend time with people who find it amusing to be cruel to me.
And, yes, you guys really ARE really cruel to us, so don't give me any blather about how you just hate the Government and "ignorant and arrogant" Americans. After all, whenever you're in the mood to pick on someone, whatever poor soul you latch on to will suddenly be painted as the "ignorant and arrogant American" you want them to be, for your purposes that is.
You know, on another thread I got a different post from a very nice Canadian who says that people there aren't mean or rude to Americans, and can separate their distaste for American government from their feelings about individual Americans; this in my view implies that Canadians are pretty okay people. Thinking about it, all the Canadians I've met have been pretty easy to get along with so I'd guess this is true.
I sure hope whoever wrote this post isn't from Canada. Because if he is, well, so much for the idea of Canadian friendliness.
Farewell! It's been a fine buncha years!
dumb ass
FoundNews.com - get paid to blog.,
First off, I thought I made myself clear that the "ignorant and arrogant" section was a paticularly narrow one. Like I said, there are just enough out there to perpetuate the stereotype, not everyone is like that.
:) ). I'm just telling things like they are, and telling you the things the international community is saying behind your back. I figured you'd deserve to know that some people in your country are dragging your countries name through the mud, and that's why I said it. Call it a flaw, but I don't like living a lie. I'd much rather have things out in the open so they can be discussed as we are doing right now, than keep quiet. This has nothing to do with "ignorance and arrogance", but a "do unto others..." mentality I tend to have. Personally, I need to know if something I do is irritating, so I can change that behaviour. If nobody tells me, I feel that's worse than being knocked down a few notches.
:). Canadians as a whole are nice and polite to Americans, but that doesn't mean that you guys are automatically 100% in our books(and again, that's not to say we hate you either -- I know quite a few americans who are great guys). Everyone has flaws, and I thought it might be helpful to enlighten you as to those flaws, so you would understand why some other nations *are* nasty to Americans sometimes. Understanding is the first step towards peace(even on an individual level).
Secondly, the US deserves all the credit in the world for the things it did(though, as I said, they did *NOT* singlehandedly save the allies in WWII.), but how much is enough? Do Americans dwell on the War of 1812? It's (likely) a matter of national pride to downplay that part of it, which leaves the Americans not getting the credit they deserve.
Also, don't make assumptions about me -- especially on a place like slashdot, where you can't really read up on every posters history(especially the ones who are posting anonymously because they are on 12 step slashdot plans
Finally, I am Canadian. I am a nice guy, but there are times when the conversation turns to darker subjects. Notice the distinct lack of the words "poopy head" in my post
Now I'm going to get back to repairing our national igloo.(j/k)
Anyway, I need to go to work now. Please respond if you have something else to say, because I will be keeping an eye on this thread.
I'm getting the strangest feeling of deja vu...
Just read this dictionary definition of a Republic.
By saying that the US has a Representative Democracy, you are saying that we have a Republic form of government. It means the same thing.
However, you cannot say that we live in a Democracy, as a true Democracy is one in which every law is put to a vote by ALL of the people, not just representatives of the people. If you are going to use Democracy to explain the United States form of government it simply must be preceded with Representative or another word with a similar meaning.
As for your comment about a single source... Isn't that what you are doing? By the way, that is not anecdotal evidence. Did you bother to read the previous link that I send to you?
If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
this is a fantastic article. welcome to the future, ladies and gentlemen - where your ass is so restricted you aren't even allowed to take care of yourself.
:)
it is a fundamental REQUIREMENT of the world of the DMCA and the Fritz chip that users be blind to the workings of their computers. it is an inevitability that in such a world it is illegal to understand the workings of your OS or software. if you read the Fritz legislation, it quid pro quo outlaws open source!
only one thing to do now - start building our OWN computers, out of banana leaves and coconut shells, just like on gilligan's island.
Well... I'm glad you weren't directing the "ignorant and arrogant" thing at me. Maybe I'm a little too touchy at times. I was picked on as a child, so I tend towards hypersensitivity to that sort of thing. No hard feelings, then?
I think we might agree on most of the basic facts about WWII, while saying a similar thing differently. I'm not saying that we saved the day all by ourselves, but we did do a whole lot of work, and without us, I think the rest of the world would have probably gotten conquered by Germany and Japan, with those two powers probably ending up fighting each other (as Germany turned on Russia, it would have certainly turned on Japan). Remember, by D-Day the Nazis controlled all of Europe except for Russia and some parts of Yugoslavia, and Japan basically owned the Pacific until we got involved over there. The Pacific war may have been separated from the "thrust" of the main part of the war but it was definitely equally significant and covered a large portion of the world in terms of Japanese influence.
In Europe, without American supply convoys Britain would have starved from lack of essential supplies long before D-Day. This is why U-Boats deliberately targeted commercial vessels, which led to the creation of convoys in the first place. Also, bombing campaigns couldn't be carried out by Britain until the air war over Britain had been stopped, so the destruction of the German war machine (factories, supply lines, etc) didn't really commence until the Americans came in to relieve the pressure on England. Without the destruction of Germany's means of production, the war could not have been won, and much of this destruction was performed by American bombers. Let alone the fact that Americans made up a large part of the force that invaded Normandy on D-Day, and carried out the actual ground war in Europe. Let's give credit where credit is due, if we're going to be fair all around.
That's all I'm trying to say. Our part in WWII definitely counts as "pulling Europe's fat out of the fryer". Without us, the supplies we sent and the troops we sent, WWII would not have been won by the Allies. No matter how you analyze it, this is a basic truth and it's only fair to recognize it.
To be equally fair, I don't believe that just because we helped people fifty years ago, they owe us everything, forever. That's not what I'm trying to say. I just wish they wouldn't *hate* us so much. It's not a huge thing to ask. You know?
ALSO TO BE FAIR, there are ignorant and arrogant Americans. And, to be completely honest, I've been misused and abused by them all my life. It's a sad fact that in America if you're one of the smart kids, all the other kids hate you. They beat you up, they call you names, they make you a pariah... See, what you were supposed to do when I was growing up was pretend to be just "average", look like everyone else, and fit in. I didn't do it, because all I wanted to do was curl up with a book, so I grew up without any friends whatsoever.
Believe me, I understand how a European or Canadian might get seriously ticked off if some American redneck starts spouting off about how we ought to do this, or that, or some other crazy thing. If a tourist was to start acting like an asshole just because a hamburger looks a little different, for example. If someone were to do some stupid assed thing, and get his ass whipped, well, most of my friends (I have some now, thank God) would just say, "yep, he had it coming". And, that's cool with me, you know?
I just wish people wouldn't go on the assumption that I'm going to act like that, with the result that I don't even want to visit Europe because I know someone's going to mess with me. It's just not fair.
And, I think it's also not fair that we have this president who we definitely did NOT vote into office, who is making us look like a nation of psychotic, bloodthirsty idiots. So, everyone's going to hate us because he blew up someone else today, and so on, and now we're all trapped here in the U.S. and have to go on vacation in Miami instead of Europe. See? It just isn't cool.
The point I was trying tactlessly to make is this: Over our history, we've done good things and bad things. This century, we've done some very, very good things (and, yes, some really dumb things and the current prez isn't helping our numbers any). So, I just think that considering the good we've done, maybe we should get a little slack -- not in terms of allowing us to blow up anyone, but rather in terms of leaving the tourists alone until they really deserve to be abused. Some will! But not all.
Anyway, that was what I was trying to get across.
By the way: here's another thing I didn't think was particularly fair. When some third world country's president fixes the election, doesn't the U.N. come in and do something about it? But, when ours does, the rest of the world does nothing. Double standard?
Farewell! It's been a fine buncha years!
These DMCA songs aren't even funny. Please mod to -1 and stop posting them!