Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
Privacy

Obama Administration Defends Warrantless Wiretapping 788

a whoabot writes "The San Francisco Chronicle reports that the Obama administration has stepped in to defend AT&T in the case over their participation in the warrantless wiretapping program started by Bush. The Obama administration argues that that continuation of the case will lead to the disclosure of important 'state secrets.' The Electronic Frontier Foundation has described the action as an 'embrace' of the Bush policy." Update: 04/07 15:18 GMT by T : Glenn Greenwald of Salon has up an analysis of this move, including excerpts from the actual brief filed. Excerpt: "This brief and this case are exclusively the Obama DOJ's, and the ample time that elapsed — almost three full months — makes clear that it was fully considered by Obama officials."
Government

New Report On NSA Released Today 81

daveschroeder writes "George Washington University has today released a three-volume history of NSA activities during the Cold War (major highlights). Written by agency historian Thomas R. Johnson, the 1,000-page report, 'Cryptology During the Cold War, 1945-1989,' details some of the agency's successes and failures, its conflict with other intelligence agencies, and the questionable legal ground on which early American cryptologists worked. The report remained classified for years, until Johnson mentioned it to Matthew Aid, an intelligence historian, at an intelligence conference. Two years later, an abstract and the three current volumes of the report are now available (PDF) from GWU and the National Security Archive. Aid, author of the forthcoming history 'The Secret Sentry: The Top Secret History of the National Security Agency,' says Johnson's study shows 'refreshing openness and honesty, acknowledging both the NSA's impressive successes and abject failures during the Cold War.' A fourth volume remains classified. Johnson says in an audio interview: 'If you are performing an operation that violates a statute like FISA, it's going to come out. It always comes out.'" And reader sampas zooms in on a section in Document 6 about the growth of NSA's IT: their first Cray purchase in 1976, the growth of circuits between facilities, and internal feuds over centralized IT development vs. programmers-in-departments. "A young systems engineer named [redacted] was urging NSA to look at some technology that had been developed by the Defense Advanced Research Projects Agency (DARPA). In 1969 DARPA had developed a computer internetting system called ARPANET... NSA quickly adopted the DARPA solution. The project was called platform."
Security

Damning Report On Sequoia E-Voting Machine Security 200

TechDirt notes the publication of the New Jersey voting machine study, the attempted suppression of which we have been discussing for a while now. The paper that the Princeton and Lehigh University researchers are releasing, as permitted by the Court, is "the same as the Court's redacted version, but with a few introductory paragraphs about the court case, Gusciora v. Corzine." What's new is the release of a 90-minute evidentiary video — the researchers have asked the court for permission to release a shorter version that hits the high points, as the high-res video is about 1 GB in size. See TechDirt's article for the report's executive summary listing eight ways the AVC Advantage 9.00 voting machine can be subverted.

Comment You guess wrong (Score 4, Insightful) 407

I pity the pour souls who were forced to use your "huge and widely used" web app that was compatible only with IE. It's clear you didn't do your homework before starting the project. ASP.NET web apps do not require having the .NET runtime on the client any more than PHP web apps require installing PHP on the client. (read: they don't)

All of the native framework web controls have two distinct rendering modes. One is for "uplevel" browsers which includes any javascript/DHTML/etc. goodness that the latest browsers support. The other is for "downlevel" browsers and basically renders everything in something like HTML 3.2 compatibility. The server runtime detects which mode to use based on a section of the machine.config called browserCaps (essentially the .NET equivalent of browscap.ini). The default values stored in the machine.config basically only recognize 5.x+ versions of IE as "uplevel" browsers.

Updated versions of the browserCaps info can be found here:
http://www.codeproject.com/aspnet/browsercaps.asp
It should be noted you can choose to either replace the data in your machine.config to make it a system-wide update, or just add the same data to your app's web.config file.

On a related note, you can find an updated version of the original browscap.ini here:
http://www.garykeith.com/browsers/downloads.asp

Slashdot Top Deals

I like work; it fascinates me; I can sit and look at it for hours.

Working...