Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Australian Competition & Consumer Commissio (Score 1) 270

Thanks for the pointer, I have been meaning to do just that. Here is mine:

Sony has just issued a firmware update[1] that disables the "OtherOS" support that is used to run alternate operating systems such as Linux on the Playstation 3 (PS3) game console. This was an advertised feature of the PS3 and was a factor in my decision to purchase the product. The firmware update is effectively mandatory; the PS3 will not support online play or game updates/downloads via the Playstation network without it (these are also advertised features).

That a major consumer electronics company can unilaterally remove advertised features from a product that I have bought and paid for is chilling to say the least and appears misleading and deceptive in the classic "bait and switch" style. I request that the ACCC investigate this matter.

[1] http://blog.us.playstation.com/2010/03/28/ps3-firmware-v3-21-update/

Encryption

OpenSSH 5.4 Released 127

HipToday writes "As posted on the OpenBSD Journal, OpenSSH 5.4 has been released: 'Some highlights of this release are the disabling of protocol 1 by default, certificate authentication, a new "netcat mode," many changes on the sftp front (both client and server) and a collection of assorted bugfixes. The new release can already be found on a large number of mirrors and of course on www.openssh.com.'"

Comment Do nothing (Score 1) 497

If you are randomly generating your passwords and they are of a decent length then you don't really need to do anything. If your passwords contain lower-case letters only (not recommended), but are eight characters long then your million authentication attempts would represent only a 0.0005% chance of success. If you passwords contain numbers and upper-case characters too, then the likelihood is 1000 times less.

Comment Re:Fast, Weak sshfs (Score 1) 249

Faster still (and a better cipher):

ssh -o Compression=no -o Ciphers=arcfour256 -o MACs=umac64@openssh.com ...

The umac-64 MAC is only supported by OpenSSH AFAIK (though the spec is available to anyone else who wants to). It is faster and has a better security guarantee than HMAC-MD5 (and is way faster than HMAC-SHA1).

Comment Re:Thanks OpenBSD (Score 1) 249

I'd like to thank the OpenBSD project, as well, but I'd also like to point out a few issues.

OpenSSH still won't work with certificates signed by a CA.

Quite right, and we have no intention of incorporating x.509 support. X.509 parsing and verification exposes a large amount of attack surface and all of it is, by necessity, pre-authentication too (the type which, if buggy, allows worms). Read Peter Gurmann's X.509 style guide and see if you ever want to go near this horror again. We have actually written our own minimal RSA verification code to avoid the sort of ASN.1 parsing that is necessary to deal with X.509, and it has saved us from at least seven bugs - some probably exploitable for authentication bypass or remote code execution.

OpenSSH doesn't allow an unencrypted connection (after authentication). Not all CPUs can encrypt/decrypt at 1Gbps.

Yep, we are a _secure_ shell and we take a mildly patriarchal attitude to adding options that can lead to insecure use of OpenSSH. Note that the actual bottleneck in most cases is not the crypto anyway (at least when using arcfour256 as your cipher) but the MAC, and you wouldn't want to switch that off. We do have a very fast MAC though: umac-64

OpenSSH doesn't work - as advertised - with an exclamation point in a "Match" statement.

File a bug, we'll fix it.

Other than that, OpenSSH is possibly one of the most capable and reliable pieces of software I've ever had the privilege to use.

Thanks :)

Comment Re:Thanks OpenBSD (Score 1) 249

Use arcfour256 as your cipher and umac-64@openssh.com as your MAC (ssh -oCiphers=arcfour256 -oMACs=umac-64@openssh.com ...). Between these, CPU is usually not the bottleneck anymore.

We don't support the none cipher because "secure networks" often aren't, and there are already tools that are insecure and go fast.
Graphics

Submission + - Crystalspace 1.0 released

Qbertino writes: The high-end open-source 3D engine Crystalspace has reached Version 1.0. From the website: "After almost 10 years of development we finally release Crystal Space and Crystal Entity Layer 1.0!" Crytalspace has several sub-projects: A game engine called CEL, a scripting exstension for that game engine called Cellstart, and CrystalCore, a single-player FPS Demo-Game built to show off Crystalspaces features. Crystalspace is generally considered a modern and extremely powerfull 3D engine and allready is in use in commercial products.
Media

Submission + - The semantics of climate change

gollum123 writes: "A nice article on the BBC talks about the difficulty in curbing the growth of greenhouse gases because scientists and politicians are speaking a different language ( http://news.bbc.co.uk/2/hi/programmes/from_our_own _correspondent/6324357.stm ). Quoting the author " I have wondered long into many nights why it always ends up like this; why it is so difficult to curb the global growth in greenhouse gas emissions which now runs above 2% per year. I have been concentrating on semantics. And it has brought me to a conclusion which is so simple I cannot believe I missed it years ago. The crux of the matter, it seems to me, lies in the different ways that scientists and politicians use language. Science is nothing without precision... political language, on the other hand, is a triumph of misrepresentation. When a scientist talks about 'reducing greenhouse gas emissions' he or she means just that; actually reducing them. But what it is coming to mean in the political lexicon is something very different. The emissions will still rise, but a bit less quickly than they would have done otherwise. Having them grow less fast becomes equivalent to reducing them.""

Slashdot Top Deals

Lots of folks confuse bad management with destiny. -- Frank Hubbard

Working...