Slashdot Mirror


DHS To Review Report On US Power Grid Vulnerability

CWmike writes "The US Department of Homeland Security is looking at a report by a research scientist in China that shows how a well-placed attack against a small power subnetwork could trigger a cascading failure of the entire West Coast power grid. Jian-Wei Wang, a network analyst at China's Dalian University of Technology, used publicly available information to model how the West Coast grid and its component subnetworks are connected. Wang and another colleague then investigated how a major outage in one subnetwork would affect adjacent subnetworks. New Scientist magazine reported on this a week or so ago, and the paper has been available since the spring."

138 comments

  1. Power Station PLCs should _not_ be connected... by Finallyjoined!!! · · Score: 0

    To that new-fangled interweb.

    Simple.

    Why they are, is question simply answered with "stupidity".

    Bye.

    --
    If I had an Ass, I'd call it Fanny Bottom, then I could slap my Ass; Fanny Bottom, on the Arse.
    1. Re:Power Station PLCs should _not_ be connected... by Anonymous Coward · · Score: 0

      The benefits of connecting the power grid to the web are numerous, concerns about security should just be addressed (and problems solved), you don't stop flying just because airplanes can crash.

    2. Re:Power Station PLCs should _not_ be connected... by Shakrai · · Score: 3, Informative

      you don't stop flying just because airplanes can crash.

      No, you stop flying because you don't like having to bend over to get through the TSA security theater. Sorry, random offtopic rant because I just got back from a flight....

      --
      I want peace on earth and goodwill toward man.
      We are the United States Government! We don't do that sort of thing.
    3. Re:Power Station PLCs should _not_ be connected... by Anonymous Coward · · Score: 1, Interesting

      I don't see the benefits of connecting them to the grid that can't be achieved through alternative means. That is, the data availability issues can be connected, but command/control functionality (ie, that which can be used to shut down service) should not be accessible from the internet.

      Is there a reason you believe they should be?

    4. Re:Power Station PLCs should _not_ be connected... by Beardo+the+Bearded · · Score: 2, Informative

      If you connect your PLC to the Internet, it can email you when a problem arises. If you haven't coded responses to incoming email, it simply won't respond. I didn't see any incoming email commands on the PLCs I've worked on, but that doesn't mean they don't exist.

      So, you get error reporting and real-time data from your PLCs when you connect them to the Internet. Apparently that's stupid.

      The programming ports on the ones I've used are physically separate from the ones used for communication, and the functions simply cannot be swapped.

      There is also -- again, in the cases of all PLCs that I have used, which is not exhaustive of all that are on the market -- a physical toggle switch that switches the PLC from "run" to "program" mode.

      I suppose that if the PLC was attached to the Internet, and then you had a guy flip the switch and swap the cables, and then put the cables back and flip the switch back later, then yes, you could reprogram a PLC online.

      If you can figure out an easier way, Omron, Koyo, AB, and IEEE would like to have a word with you.

      --

      ---
      ECHELON is a government program to find words like bomb, jihad, plutonium, assassinate, and anarchy.
    5. Re:Power Station PLCs should _not_ be connected... by AB3A · · Score: 5, Interesting

      Not so fast. See the first paper in this bunch. The authors managed to hack a Koyo and AB PLC Ethernet interfaces. The AB Ethernet card had lots of useful stuff in it, including a symbol table. From the symbol table I saw many backplane calls that you could use to communicate with the PLC. How well do you trust a hacked Ethernet module on a PLC backplane?

      Having a physically separate port is nice, but it is no substitute for secure coding. If you think that coding is poorly secured in the PC world, you'll be shocked at what often gets done in embedded system coding.

      Some PLCs and Variable Frequency Drives have been noted for their inability to handle Denial of Service traffic. I've seen that demonstrated myself. This is the official cause of a reactor SCRAM at Browns Ferry a few years ago.

      Try a port scan of your PLC some time and tell me how many ports it responds to (DO THIS ON A TEST-BENCH --NOT PRODUCTION EQUIPMENT!). If you can identify everything that critter responds to, congratulations. If not, be afraid. Be VERY afraid. I've heard quite a few PLC models that have mysterious responses to ports where you wouldn't expect them to respond.

      Real Time embedded systems are not good candidates for direct internet exposure. They're too difficult to patch in a timely fashion. Often the windshield time alone is prohibitive. And if you have any notions of pushing patches to them remotely, remember, these things control some pretty high speed/high power processes. You don't just patch them. There are process and safety implications that you need to consider. This ain't some office application where you can say oops and restore from a backup. Real physical things will happen and real physical problems will be created that you can't clean up with a simple code reversion.

      Most of our infrastructure today has not been engineered with security issues in mind. There is still lots of Gee Whiz "Let's Share Data" synergy crap going on. This leads to all sorts of direct interconnections that aren't absolutely necessary. Many controls can be made over links that weren't intended for that purpose. It's not easy to split the data flows up any more because many organizations have been very profligate with their use of SCADA information and it isn't easy to find all the sources and sinks.

      I'd love to post data from a PLC directly to the public. But I just can't sleep at night with something like that waiting to screw things up.

      Good luck with your security, and I mean that quite sincerely.

      --
      Nearly fifty percent of all graduates come from the bottom half of the class!
    6. Re:Power Station PLCs should _not_ be connected... by jeffstar · · Score: 1

      maybe the power station is geographically remote and economically unfeasible if it has to be manned. maybe it is also economically unfeasible if it has to have an expensive private data connection but can't use a VPN over satellite just fine.

      people are going after the 'long tail' of generation with distributed generation such has small/micro hydro, solar etc and I bet a lot of that stuff ends up connected to the internet.

      of course a nuclear station shouldn't be on the internet, but maybe a 200kw hydro is?

    7. Re:Power Station PLCs should _not_ be connected... by Loudog · · Score: 1

      A combination of VPN access and firewalling does the trick. I've tested it with AB (EthernetIP) gear and it works fine. There are quite a few vendors that will sell you the parts, but they aren't the traditional ones (Omron, AB, etc,...) so most of the controls folks seem to ignore their existence. When it comes to control, go to them. If it's data security, Cisco, Juniper,...

    8. Re:Power Station PLCs should _not_ be connected... by Anonymous Coward · · Score: 0

      Good answer. You're surely right for the remote stations generating low output that's on the peripheries of the grid.

      But like you say, that's probably the long tail. For larger generation it'll be more connected to the grid, so a few data lines should really not be that much more expensive.

    9. Re:Power Station PLCs should _not_ be connected... by gearloos · · Score: 1

      All I'll say is I am an Engineer in this industry and your a bit wrong. ...quite a bit.

      --
      "Computers are a lot like Air Conditioners" "They both work great until you start opening Windows"
    10. Re:Power Station PLCs should _not_ be connected... by Anonymous Coward · · Score: 0

      If your spelling is indicative of your expertise as engineer, we should all be very very afraid.

    11. Re:Power Station PLCs should _not_ be connected... by Anonymous Coward · · Score: 2, Interesting

      I don't think so. I recognized his nick as the Ethernet channel on an PLC-5 system. His points are dead on.

    12. Re:Power Station PLCs should _not_ be connected... by jroysdon · · Score: 1

      Anyone following any NERC guidelines knows this. Anyone not only needs an audit and millions in fines (per day).

    13. Re:Power Station PLCs should _not_ be connected... by vtcodger · · Score: 3, Insightful

      ***you don't stop flying just because airplanes can crash.***

      I expect that you would stop flying if any sociopathic teenager in Belgrade or Sendai could crash your plane from his bedroom with fifteen keystrokes. Would it be rude to point out that cyber security is a disaster area and the situation seems to be deteriorating, not improving?

      --
      You can't see ANYTHING from a car, You've got to get out of the goddamned contraption and walk...Edward Abbey
  2. Don't worry by dedazo · · Score: 5, Interesting

    The US power grid is so ancient, convoluted and in such a massive state of disrepair that we can be sure we're safe from terrorists. They wouldn't even know where to begin to find a point in the system that could be used to trigger a catastrophic cascading failure like the one in the East Coast a few years ago.

    Trees on the other hand... trees are truly evil.

    --
    Web2.0: I love when people Flickr my cuil and digg my boingboing until my google is reddit and I start to yahoo
    1. Re:Don't worry by Anonymous Coward · · Score: 2, Funny

      Linux is so ancient, convoluted and in such a massive state of disrepair that we can be sure we're safe from viruses. They wouldn't even know where to begin to find a point in the system that could be used to trigger a catastrophic cascading failure like the one that is the Linux OS itself.

      Fixed your typos there for ya.

    2. Re:Don't worry by Anonymous Coward · · Score: 0

      Linux is a kernel, not an OS.

    3. Re:Don't worry by tetsukaze · · Score: 1

      Well, someone apparently has used publicly available information to find a weakness. Now that the door is open, who is stop a terrorist. With the grid being such a mess, won't it be that much harder to fix the problem if we did have an attack of this kind?

    4. Re:Don't worry by Saliegh · · Score: 5, Funny

      Everyone knows that a small thermal exhaust port at the end of a long trench is the key to initiating a catastrophic cascading failure.

      --
      1368127 is prime!
    5. Re:Don't worry by dedazo · · Score: 1

      You just reminded me of this

      --
      Web2.0: I love when people Flickr my cuil and digg my boingboing until my google is reddit and I start to yahoo
    6. Re:Don't worry by Saliegh · · Score: 1

      Thank you for that. Pure awesomeness.

      --
      1368127 is prime!
    7. Re:Don't worry by LoRdTAW · · Score: 3, Insightful

      Have you watched the History Channel special: The crumbling of America? Well if you did the "terrorists" have nothing to worry about, they just have to sit by and watch us fall apart.

      The roads are shot along with bridges. Sewer systems overloaded, water supplies in jeopardy, levies and dams in a state of serious disrepair. And an electrical grid that teeters on the edge of blacking out every day.

      Its wasn't all doom and gloom as its not too late. Th1ere are many technological advances to replace and update our infrastructure with better and longer lasting replacements. Problem is money, there is simply not enough to go around and in some cases there is no money at all.

    8. Re:Don't worry by Anonymous Coward · · Score: 0

      Linux is so ancient, convoluted and in such a massive state of disrepair that we can be sure we're safe from viruses. They wouldn't even know where to begin to find a point in the system that could be used to trigger a catastrophic cascading failure like the one that is the Linux OS itself.

      Fixed your typos there for ya.

      This needs to be modded up for being so fantastically hilarious.

    9. Re:Don't worry by mikael · · Score: 2, Interesting

      Back around 2000 there was a complete failure of the SF Bay Area power grid when a couple of engineers activated the grounding switches to a local area of the power line before decoupling it from the main grid.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    10. Re:Don't worry by Ozric · · Score: 1

      That is all propaganda....

      The "terrorists" watch and think, heck... They live in as big a shithole as us. We should stop hating them and feel sorry.

    11. Re:Don't worry by misexistentialist · · Score: 1

      You could say the same thing about the Western hegemony. Some terrorists are still naive enough to give a go though

    12. Re:Don't worry by Anonymous Coward · · Score: 0

      It's not the trees, it's the Treants you've got to worry about. 'Civilization is destroying US they cry!', as their gnarled woody arms crash through the lines.

    13. Re:Don't worry by sjames · · Score: 2, Insightful

      There IS money, but it's currently busy going up CEOs' noses.

    14. Re:Don't worry by Anonymous Coward · · Score: 0

      Linux is a kernel, not an OS.

      The kernel IS the OS. We call everything else "applications." When I install a bunch of gnu applications in my windows box, I'm not suddenly running GNU/Windows.

    15. Re:Don't worry by mcgrew · · Score: 1

      That's completely and utterly incorrect -- almost. Parts of the power grid must certainly be in disrepair, especially in places where the local power company is bad (an example is Amerin down in the St Louis area), but most of it is in good shape (an example is CWLP in Springfield, IL). If it were that easy to take down the power grid, it would happen every time there was a tornado anywhere.

      The US power grid is an ongoing construction project akin to the US interstate highway system. Some roads are brand new with good surfaces, some have potholes, but despite the fact that it is fifty years old it is mostly in good shape.

      It's nowhere near convoluted or this study would not have been possible. Complex, yes, but not convoluted (see: the PC sitting in front of you).

      My dad was a lineman for forty years (retired maybe 20 years ago) doing both repair and construction, so even though I'm no expert I probably know more about it than the average layman.

      In 2006 three tornados made me realize that we should nationalize the power grid. In March of that year, two of them ripped through my town in one night, one right through my neighborhood. They were strong F2s, almost F3s. Square miles of the power lines and utility poles were destroyed, along with buildings, cars, and everything else in their path. Power at the apartment where I lived was out for a week. Our power company, CWLP, is city owned and operated.

      Later that spring (or early summer) a weak F1 tornado went through the St. Louis area. I have a friend in Cahokia, right where that tornado went through. I visited him a week after their tornado, and the damage was pretty minimal -- nothing compared to the utter devastation in my neighborhood. But it took the privately owned Amerin a full month to get my friend's power on. And he pays twice as much for his electricity as I do. In fact, Springfield has the cheapest and most reliable electricity in the state.

      If government sucks, it's your fault for voting the wrong people into office. If you put someone in government that thinks government is always the problem, you're going to have bad government. But who runs your government is up to you, while who runs your power company is up to its stockholders -- unless it's owned by the government. The free market doesn't apply to utilities -- you can't go down the street and get a new power company.

  3. not attacked via the web by Chirs · · Score: 2, Insightful

    Obviously you didn't read the article. They're talking about cascading failures due to the fact that they're connected via the electrical grid.

    Basically the same thing that happened some years back on the eastern seaboard, but on the west coast and triggered on purpose.

    1. Re:not attacked via the web by Finallyjoined!!! · · Score: 3, Interesting
      Obviously, you have not read TFA:

      News about Wang's research comes at a time when there are considerable concerns about the security of the U.S. power grid. In April, The Wall Street Journal, citing anonymous national security officials, reported that cyberspies from China, Russia and elsewhere had gained access to the U.S. electrical grid and had installed malware tools that could be used to shut down service. Though the access hasn't been used to disrupt service, the concern is that the malicious hackers could do so with relatively short notice during a time of crisis or war.

      What a prawn.

      --
      If I had an Ass, I'd call it Fanny Bottom, then I could slap my Ass; Fanny Bottom, on the Arse.
    2. Re:not attacked via the web by Runaway1956 · · Score: 1

      To lazy to look for citations - but this scenario was envisioned in Sci-fi literature long before the advent of the internet. And, in fact, I believe the north-east has experienced such a thing at least twice, probably more than that. Brown outs and black outs due to local overloads aren't a new concept at all, nor is the idea of cascading failures. All that I see here, is the idea of inducing one or more local overloads via the internet.

      Of course, there are any number of "experts" who claim that this is not possible. They claim that internet connected computers are isolated from the machines that actually regulate power delivery, power generation, and power usage. But, I'm left scratching my head over all the wireless devices that have been incorporated into the system. I suppose that they have some magical security system that all us peasants are unaware of.....

      --
      "Windows is like the faint smell of piss in a subway: it's there, and there's nothing you can do about it." - Charlie Br
    3. Re:not attacked via the web by pilgrim23 · · Score: 1

      one emp producing Nuke exploded 25k miles above Kansas. No worries what is connected to who, it all goes off. Tell me how a smart grid connection will prevent this scenario. Through the magic of Wikipedia: The worst effects of a Russian high altitude test occurred on 22 October 1962 (during the Cuban missile crisis), in âOperation Kâ(TM) (ABM System A proof tests) when a 300-kt missile-warhead detonated near Dzhezkazgan at 290-km altitude. The EMP fused 570 km of overhead telephone line with a measured current of 2,500 A, started a fire that burned down the Karaganda power plant, and shut down 1,000-km of shallow-buried power cables between Aqmola and Almaty. --1962, long before chips in everything....

      --
      - Minutus cantorum, minutus balorum, minutus carborata descendum pantorum.
    4. Re:not attacked via the web by spun · · Score: 1

      Well, you're both right. The article IS talking about cascading power failures due to electrical grid connection, not Internet connection, while the part you quote backs up your... hey! Wait a second, it doesn't back up what you were saying AT ALL! Where does it say the 'cyberspies' gained access through the Internet?

      --
      - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    5. Re:not attacked via the web by ParanoiaBOTS · · Score: 3, Insightful

      Obviously you didn't read the article. They're talking about cascading failures due to the fact that they're connected via the electrical grid. Basically the same thing that happened some years back on the eastern seaboard, but on the west coast and triggered on purpose.

      Obviously, you have not read TFA:

      News about Wang's research comes at a time when there are considerable concerns about the security of the U.S. power grid. In April, The Wall Street Journal, citing anonymous national security officials, reported that cyberspies from China, Russia and elsewhere had gained access to the U.S. electrical grid and had installed malware tools that could be used to shut down service. Though the access hasn't been used to disrupt service, the concern is that the malicious hackers could do so with relatively short notice during a time of crisis or war.

      What a prawn.

      Actually both you, and your parent post are correct. They are pointing out why the compromised grid is so concerning(aside from the obvious). Couple that malware with this knowledge and you can very effectively take out power for the west coast by targeting a very small subset of stations.
      What they are saying is that the outage like we had several years back can be triggered fairly easy, and even scarier, since we are compromised already, someone sitting at a computer could probably just turn off power for all the west coast.

    6. Re:not attacked via the web by Anonymous Coward · · Score: 0

      Detonating a 300kt nuclear warhead at 290km above the United States is a little harder than taking out a single sub-station somewhere out in the middle of the nowhere with a car bomb, or whatever.

    7. Re:not attacked via the web by MrNaz · · Score: 1

      25k miles is so far away that you can't really say that it's "above Kansas", so much as "above everything". 25k miles is ~3 times the diameter of the Earth.

      --
      I hate printers.
    8. Re:not attacked via the web by geogob · · Score: 3, Funny

      Everyone knows that you hack a power grid system with a modem, weird command line interfaces using pseudo-english commands and some fast random typing on a keyboard.

    9. Re:not attacked via the web by hoggoth · · Score: 4, Funny

      Jeez. Please read the article before posting. The article states that power company officials have found very small Chinese people hiding in cabinets inside 75% of our power stations. The situation is very precarious.

      --
      - For the complete works of Shakespeare: cat /dev/random (may take some time)
    10. Re:not attacked via the web by KraftDinner · · Score: 2, Funny

      Everyone knows that you hack a power grid system with a modem, weird command line interfaces using pseudo-english commands and some fast random typing on a keyboard.

      Don't forget about the swirling numbers and mathematical symbols in the background all the while you can see them flying through the file system.

    11. Re:not attacked via the web by PitaBred · · Score: 1

      And you hack the Gibson with viruses that look like happy-face ping-pong balls and the Cookie Monster and Pac Man. Duh.

    12. Re:not attacked via the web by thynk · · Score: 4, Funny

      Hack the Gibson!

      --

      Good judgment comes from experience, and a lot of that comes from bad judgment.
    13. Re:not attacked via the web by blackraven14250 · · Score: 0, Troll

      Oh, I put them there. Just don't open the cabinets and we'll be fine.

    14. Re:not attacked via the web by KingPin27 · · Score: 1

      Everyone knows that you hack a power grid system with a modem, weird command line interfaces using pseudo-english commands and some fast random typing on a keyboard.

      This is after you have driven your motorcycle off the adjacent roof and exploded the front enterance - knocked out the guards at the station and ran your fancy nmap commands to get the root passwords and then disable the power grids.

      --
      "i lost my dignity on a slippery wiener"
    15. Re:not attacked via the web by Techman83 · · Score: 1
      --
      # cat /dev/mem | strings | grep -i cat
      Damn, my RAM is full of cats. MEOW!!
    16. Re:not attacked via the web by beckett · · Score: 3, Funny

      SUPPPLIES!!!!

  4. Re:Will Taco the asshole fix the bugs? by jollyreaper · · Score: 1

    Keep getting resource no longer available messages. The forums have been shit for 2+ years now.

    That'll be fixed the day after they clean up the CSS on idle.

    --
    Kwisatz Haderach
    Sell the spice to CHOAM
    This Mahdi took Shaddam's Throne
  5. Silly report by Ancient_Hacker · · Score: 1

    There are dozens of Power Engineers at utilities and govt agencies whose job has been, for the last fifty years or so, to run just these kinds of simulations.

    They do this all day, every day.

    The problem areas are pinpointed, and sometimes money is budgeted toward ameliorating the situations.

      Some problems can only be fixed by adding several billion dollar highlines, so those usually get postponed or ruled impractical.

    1. Re:Silly report by queazocotal · · Score: 1

      The margins on all power grids are getting smaller.
      'Just in time'
      'Predicted demand' ...
      In the bad old days of monopoly providers, the monopoly would often reasonably plan the capacity, and built to some way in excess of this.

      With the market coming to shine its light on all these restrictive practices, a new way of looking at power grids has arisen.
      'What does upgrading the grid so to next years bottom line'.

      Clearly this is the better solution.

    2. Re:Silly report by jeffstar · · Score: 1

      clearly you don't live in ontario where everybody gets an extra line on the monthly bill to help pay their part of the old bankrupt monopoly's debt.

      30 billion in debt against 10 billion in assets (http://www.electricityforum.com/news/jul03/hydrodebt.html).

      maybe they should have paid a bit more attention to the bottom line

    3. Re:Silly report by queazocotal · · Score: 1

      Yes - monopolies don't do everything right.

      But the unfettered market in utilities, without strong requirements for infrastructure margins large enough to cope with multiple failures - is somewhat broken too.

    4. Re:Silly report by HornWumpus · · Score: 1

      You believe the monopolies ran adequate spinning reserve?

      You should look into the history of cascade failures (particularly in the NE interconnect) and realize which administrative model the system was running in at the time.

      All power pools that I am somewhat aware of (most of them, at a previous job I developed and maintained power trading and systems modeling software) have some mechanism for capacity power payments to keep the hydro and standby guys in business.

      The system routinely steps right to the brink. The only way FERC will increase the reserve requirements is for someone to figure out a way to routinely trip the system (routinely on super hot July days that is).

      Some groups would do it for the fun of if. Good thing they are dumb as rocks.

      Reserve requirements are pragmatic, expensive number that are set (and sometimes ignored) based on decades of experience. You'd be amazed how little changes in the control room monopoly vs pool. The changes are more in day ahead operations, but everybody knows that if system requirements demand it all trades etc will be blown off by operators keeping the lights on.

      --
      John McAfee 'It was like that time I hired that Bangkok prostitute; to do my taxes, while I fucked my accountant'
    5. Re:Silly report by jeffstar · · Score: 1

      i agree - while there is economic incentive for providing various types of operating reserve, these are meant to cover the failure of the single biggest unit and transmission line in the area and not growth in demand.

      The markets are meant to provide economic incentive for private investors to build power stations, but that means higher prices which makes governments look bad, energy companies look like thieves, and consumers angry.

      in ontario, when supply got tight the market operator would lower the reserve requirement to prevent the price from climbing to high. I can't find the citation for this right now, but it is http://www.ieso.ca/imoweb/marketSurveil/mspReports.asp somewhere in there.

      Without energy prices high enough to justify the investment, there is no investment.

      the money isn't on the table

  6. The amazing thing by guruevi · · Score: 5, Insightful

    The amazing thing is that nobody ever tried it or at least never succeeded. The US is apparently not that hated in the world since nobody ever does anything. We have hundreds of reports on how easy it would be to disable this or take that out of service. All it takes to black out the USA are some well placed charges or for somebody to hit a few poles hard enough but nobody does it. All we got was some measly hijacked plane (which has been done since the 70's) in a few buildings.

    --
    Custom electronics and digital signage for your business: www.evcircuits.com
    1. Re:The amazing thing by oodaloop · · Score: 4, Insightful

      All we got was some measly hijacked plane (which has been done since the 70's) in a few buildings.

      ...whose cost rose into the tens of billions and exacerbated our recession. It didn't topple our economy, which was their aim, but put a dent in it.

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
    2. Re:The amazing thing by whitelabrat · · Score: 1

      Would you mess with a house full of trigger happy rednecks? Hell no. That's why nobody has messed with this. It would be suicide.

    3. Re:The amazing thing by vlm · · Score: 1

      The amazing thing is that nobody ever tried it or at least never succeeded.

      I wouldn't worry about a small terrorist conspiracy, or even the best efforts of a lone wolf.

      Believe it or not, a company-sized army of kamikaze terrorist squirrels and at least a division-sized army of terrorist trees has been trying to do this for literally over a century, and have won only minor short term battles and the nations EE-army has rapidly regained the lost territory.

      Add in all the drunk drivers crashing thru the fences, cropduster airplanes that fail to avoid the lines, it just seems unlikely.

      My favorite part of all these "terrorists will destroy our infrastructure" stories is how the true enemy of america (our own govt employees) claim the attackers will use crazy hollywood style plots, when everyone knows you just buy some hardware store chain, tie one end to the fence post, the other to a brick, and throw the brick over the station. Or crash a stolen truck thru the fence and into the station.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    4. Re:The amazing thing by Ron+Bennett · · Score: 4, Interesting

      People have tried blowing up / cutting high-tension power towers, but it seems that either they're stopped part way through their plan, or simply never follow-through (ie. cutting one or more of the tower supports, but failing to taking down the line).

      Very often attacks are attempted at night, but that's a bad time, since load is often low. One would need to wait until mid afternoon on a very high load day (even more ideally when some major lines are down for maintenance) - that takes advanced planning and good luck.

      Furthermore, cutting lines, alone, probably wouldn't be enough to cause a cascade. One would very likely need to bypass / overwhelm (ie. in the 2003 east coast black out some of the monitoring computers were unresponsive due to a worm going around) some of the safety systems, as well, for a cascade failure to occur.

      On a related note, detonating a nuclear device high in the atmosphere at the right location would likely do it, but that would be extremely challenging - more likely, a terrorist with a nuke, probably of very low yield, would most likely detonate it at ground level, which would minimize EMP effects.

      Ron

    5. Re:The amazing thing by hoggoth · · Score: 5, Insightful

      > It didn't topple our economy, which was their aim, but put a dent in it.

      Yes it did. The cost of the buildings is negligible compared to our GNP. But the cost of the followup war in Afghanistan, war in Iraq, DHS, etc have toppled our already shaky economy. What's more their aim wasn't to topple our economy, it was to ruin our way of life. I'd say our descent into security theater, torture, surveillance and paranoia has gone a long way towards destroying our way of life. America the free?

      --
      - For the complete works of Shakespeare: cat /dev/random (may take some time)
    6. Re:The amazing thing by Rich0 · · Score: 1

      If you wanted to take out a substation/etc, wouldn't it make more sense to just shoot at the ceramic insulators with a rifle? Why on earth would you go sawing on the support beams for a tower? First, it takes a while. Second, you are right next to a metal tower that is about to have high-voltage lines fall onto it - at those levels that electricity will arc multiple feet through the air and turn you into a cinder. To shoot out an insulator you probably just need to be a good shot - you probably don't need a particularly exotic rifle. Of course, if you're shooting up into the air you might need to take the elevation change into account with your aim - and if you don't have tracers it could be a tough shot.

    7. Re:The amazing thing by queazocotal · · Score: 1

      Or you cut a lot of lines.

      You use public domain resources and a little research to work out which lines are under most stress.

      You get maybe 10 guys with vans and big catapults that throw copper wire over a high voltage line.

      You drive along the lines - with a plausible excuse - and you work out where a nice little farm road is that nobody uses for each line, and come 1:23:23 AM (or whenever) you kill all 10 lines as your teams are driving away from thier catapults on a 1 minute trigger.

      For added fun have a second few teams that do this at 1:33:23

    8. Re:The amazing thing by oodaloop · · Score: 1

      What's more their aim wasn't to topple our economy, it was to ruin our way of life.

      Well, Usama bin Laden said he intended to destroy our economy by taking out the twin towers. Khalied Sheikh Muhammad said the same thing when planning the Bojinka plot in 94. They thought those two towers were pivotal to our economy, for some reason. They've also said they will not stop until they have raised the flag of Islam over the White House. They could really care less about our way of life if we're still alive.

      Perhaps we overreacted as a nation, and you're entitled to your opinion. I am personally greatly upset at the rise in surveillance, loss of rights etc. But remember we are fighting an enemy that is dedicated to destroying us no longer how long it takes. Some things must change if we are to stay alive.

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
    9. Re:The amazing thing by MrLogic17 · · Score: 1

      Correction: It wasn't a worm that caused the unresponsiveness - it was a bug in the software that didn't display alarms. The operators didn't see them, thus they stacked up. The backlog of alarms brought the system to it's knees. The switch to the backup servers didn't fix that issue, thus bringing them to a crawl too.

      There's lots of facinating reports on the 2003 blackout out there- including pics of the single tree that started it all.

    10. Re:The amazing thing by dkf · · Score: 4, Insightful

      But the cost of the followup war in Afghanistan, war in Iraq, DHS, etc have toppled our already shaky economy.

      Actually, it was the collective stupidity of millions of people that did that. And yes, believing that house prices would always go up in real terms (or that you'd at least be able to guarantee to get out without burning yourself when they stopped) is most certainly stupidity. On the other hand, as long as everyone believed, it almost worked; the only problem was this inconvenient thing called reality...

      --
      "Little does he know, but there is no 'I' in 'Idiot'!"
    11. Re:The amazing thing by Anonymous Coward · · Score: 0

      Tell that to Osama Bin LAden, your rednecks have not been able to get him. Why shoould anyone else be worried?

    12. Re:The amazing thing by drinkypoo · · Score: 1

      Very often attacks are attempted at night, but that's a bad time, since load is often low. One would need to wait until mid afternoon on a very high load day (even more ideally when some major lines are down for maintenance) - that takes advanced planning and good luck.

      It would be trivial to apply remotely activated thermite packs to the legs of the towers. They could be activated by cellphone. The cost of the whole thing to take down two towers simultaneously would run into the low single-digit thousands if you really slicked it up. Obviously nobody serious has ever really tried to do this.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    13. Re:The amazing thing by blackraven14250 · · Score: 1

      It's not a "tower takes out nation" movie plot. It's a "tower changes nation into crazy people who then waste massive amounts of money thus killing their economy which lets us invade them 50 years later when they have nothing to fight back with and are infighting more than we do" large-amount-of-long-term-strategy plot. You forgot that their entire strategy is to wait, always. They can wait for the economy to fall, as they have literally nothing that's time-sensitive in their society. They're still in the bronze age, and they're gonna stay there until we get back there because of our infighting, then kick our asses because they're much more used to it.

      Also, just because it hasn't killed our economy yet, and didn't directly, doesn't mean the events of 9/11 won't lead to the US falling. The changes in our security can lead to changes in our economy, because if the government is allowed control over security, they'll take control over other aspects of life too. The government puts expenses of security on the economy, and constantly add to that burden (with some more of their provocation) until the economy couldn't take it anymore. That would lead to an economic collapse of massive proportions, large enough to prevent us from recovering at any decent speed, which would put us right where Islamic extremists would want us - back in the stone age, where they've been fighting for long periods of time.

    14. Re:The amazing thing by oodaloop · · Score: 1

      It's not a "tower takes out nation" movie plot. It's a "tower changes nation into crazy people who then waste massive amounts of money thus killing their economy which lets us invade them 50 years later when they have nothing to fight back with and are infighting more than we do" large-amount-of-long-term-strategy plot.

      Aside from your vivid imagination, do you have any sources for that? Have you heard any Al Qaeda members say that? Because what they have explicitly said on multiple occasions is that they wanted to destroy our economy. If you have a source from Al Qaeda, post it.

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
    15. Re:The amazing thing by shermo · · Score: 1

      Very often attacks are attempted at night, but that's a bad time, since load is often low.

      Actually.... Low load means the system is much more likely to collapse. The power system has inertia in it, if the load is high, this inertia is high and there's a long time to respond before the system collapses. If on the other hand, you take out a couple of power stations when load is low, the frequency in the system will drop much faster, and it will be more difficult for the reserve mechanisms to respond in time.

      I agree that if you cut a line during high load you'll be more likely to cause some people to lose power (in a semi-controlled fashion), but if you're really trying to cause the system to collapse, it's much easier to do it at night.

      --
      Insanity: voting in the same two parties over and over again and expecting different results
    16. Re:The amazing thing by beckett · · Score: 2, Informative

      it could be as easy as determining regional weak points, and a terrorist cell can launch BLU-114/B carbon filament warheads in enough areas simultaneously to cause a cascade blackout. the technology has already been in news in Taiwan.

      (man i can't wait to get that phone call from Homeland Security tonight.)

    17. Re:The amazing thing by Anonymous Coward · · Score: 0

      But remember we are fighting an enemy that is dedicated to destroying us no longer how long it takes.

      Ummm yes. Bin Laden is no fool, the guy is very intelligent. He is fully aware that the best way to take the US down is to cause enough panic and knee-jerk reaction in the general population that WE end up destroying our selves. Taking down the towers (which he never expected to actually come down, BTW) was simply the first domino falling over... the subsequent wars, security theater, loss of liberty, increase in big government control & spending, are simply the next ones in line.

    18. Re:The amazing thing by chrb · · Score: 1

      Very often attacks are attempted at night, but that's a bad time, since load is often low. One would need to wait until mid afternoon on a very high load day (even more ideally when some major lines are down for maintenance) - that takes advanced planning and good luck.

      From TFA: "To their surprise, under particular loading conditions, taking out a lightly loaded subnetwork first caused more of the grid to trip out than starting with a highly loaded one. An attack on the nodes with the lowest loads can be a more effective way to destroy the electrical power grid of the western US due to cascading failures,"

    19. Re:The amazing thing by Anonymous Coward · · Score: 0

      An enemy that is dedicated to destroying us no matter how long it takes is not particularly threatening if they are convinced (on what appears to be a fairly permanent basis) that two towers are pivotal to our economy, and only manage to actually strike once or twice a decade.

      You are tangentially right that some things must change if we are to stay alive, but those things involve the gross corruption of our elected representatives and have very little to do with bin Laden.

    20. Re:The amazing thing by mcgrew · · Score: 1

      But the cost of the followup war in Afghanistan, war in Iraq, DHS, etc have toppled our already shaky economy

      No, an incompetent government whose leaders thought no regulation is good regulation and the war is good helped topple it (Iraq had nothing to do with 9-11), but the main reason was oil, just as oil caused the recession in the 1970s. When Bush took office gasoline was $1.05 per gallon in my town, before he left office (and the economy tanked) gasoline was over $4.50. Why do you think all those people all of a sudden couldn't make their mortgage payments?

    21. Re:The amazing thing by Anonymous Coward · · Score: 0

      It is a well known fact that people are stupid. The fact that the investment and banking industries decided to finally exploit that stupidity at the most basic level, shelter, just validates that that stupidity extends into those areas as well. And, if you haven't been paying attention, reality is what is defined on the TV set. Or didn't you get the memo?

  7. Fragile Grid by Old+VMS+Junkie · · Score: 4, Informative

    The electric grid has already suffered multiple cascading failures from simple events that led to widespread outage. Look into the West Coast outages of 1996 and 1998 as well as the failure in the Northeast in 2003. There's a lot of interesting science going on around networks, graph theory, complexity and all. There's a really good book on teh subject, "Six Degrees" by Watts.

    1. Re:Fragile Grid by Anonymous Coward · · Score: 0

      Note the rolling blackouts in California in 96 were induced by Enron, not grid capacity.

  8. All the more reason to renew the grid by 99luftballon · · Score: 1

    The paper looks very interesting and should be another reason for a full grid upgrade, so we can use smarter power systems. It's a pity Edison's idea of local power stations never took off. Such a system would be much more fault tolerant and scalable. The same thing could be done now with pebble nuclear reactors.

    1. Re:All the more reason to renew the grid by Anonymous Coward · · Score: 0

      Didn't bother to check but did his idea of local power stations have something to do with his idea that DC was the way to go? Tesla managed to get his shitty DC systems to work to some degree but left cause edison was too stupid (as usual) to see the beauty in AC for transmission of power. So, screw edison, he was a moron, he was the bill gates of electricity.

    2. Re:All the more reason to renew the grid by Old+VMS+Junkie · · Score: 2, Informative

      There were economic issues with Edison's ideas. The biggest problem was his insistence with DC. DC only worked with local power stations. AC scaled and could transmit over much farther distances with much less loss. More fault tolerant, perhaps. More scalable? Not from an economic standpoint.

    3. Re:All the more reason to renew the grid by Stenchwarrior · · Score: 1

      Undoing a mis-mod

      --
      Loading...
    4. Re:All the more reason to renew the grid by Ungrounded+Lightning · · Score: 3, Informative

      There were economic issues with Edison's ideas. The biggest problem was his insistence with DC. DC only worked with local power stations. AC scaled and could transmit over much farther distances with much less loss. More fault tolerant, perhaps. More scalable? Not from an economic standpoint.

      The main reason AC scaled better than DC was that simple transformers could be used to boost the voltage or long-distance transmission on affordable diameter wire and back down to what could be safely handled in a home. Shifting DC, at the time, required rotary converters and was limited in voltage by the arcing and size of the commutators.

      Since about the 1960s or so DC conversion for long-lines has been practical. And with modern semiconductors it's now economically competitive. With that, DC lines become practical for a makeover.

      AC, unfortunately, introduces propagation timing effects that make things a bit more complex to keep running. DC doesn't have those failure modes AND it makes somewhat better use of a given amount of metal in the wire.

      (A downside of DC vs AC is that a DC arc is harder to extinguish.)

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
    5. Re:All the more reason to renew the grid by Ungrounded+Lightning · · Score: 1

      Going "smarter" is a big boondoggle for the makers of the "smart network" equipment. Last I saw it would not pay for itself with either electrical savings AND reduced costs of outages combined. And it has extra failure modes of its own.

      Replacing the current grid with a DC distribution similarly would be a great way to funnel government money into the pockets of campaign contributors but would hardly pay for itself in energy savings (though if done right it MIGHT raise reliability somewhat). Switching to DC across the grid would eliminate the AC transmission line phasing failure modes. But those are handled well already. It wouldn't do squat for the "not enough generation and transmission capacity to carry the load" failures - local or cascading.

      The scare scenario given in TFA seems to be a variant of one of the latter: Taking out a local section of the grid and leaving the rest unable to serve its load. (Though I'm not sure, having not paid for a copy of the not-adequately-quoted article.) Presuming this is true it doesn't argue for the remedies suggested - either transmission line upgrades or "smart grid" technology.

      Seems to me the right thing to do is build new long-haul transmission lines with DC where appropriate and stop wringing hands about it.

      (It might also be good to boost the voltage of any new new DC transmission lines by about a factor of 2 from the current stuf, to match the voltage of hydrogen-boron fusion products. That would significantly reduce the amount of equipment needed to build a generation plant if any of the schemes that do direct conversion, such as Polywell fusors, work out.)

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
    6. Re:All the more reason to renew the grid by Ungrounded+Lightning · · Score: 1

      The scare scenario given in TFA seems to be a variant of ... Taking out a local section of the grid and leaving the rest unable to serve its load. (Though I'm not sure, having not paid for a copy of the not-adequately-quoted article.)

      And a closer reading of TFA2, referenced by TFA, makes that clearer.

      It was an "aha" moment: Of COURSE disrupting the LIGHTLY loaded subnets (where there is a surplus of generation feeding the HEAVILY loaded sections) causes more failures than attacking those with heavy loads:

        - Taking down a section with a generation surplus reduces the available power on the rest of the net, leading to local shortfalls that trip protective breakers on generators and produce the cascade failure.

        - Taking down a section with a generation shortage may even help, taking out enough excess load to make up for the loss of the transmission capacity through the section and thus limiting or eliminating failure cascades into its neighbors.

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
    7. Re:All the more reason to renew the grid by Anonymous Coward · · Score: 0

      I thought the impedence of a powerline was inversely proportional to the frequency of the AC? So wouldn't that make DC have much larger line losses? I had like three analog EE courses before I went all digital so I'm just parroting stuff here.

    8. Re:All the more reason to renew the grid by Ungrounded+Lightning · · Score: 1

      You're confusing impedance with resistance. It's really about voltage/current tradeoff for the parasitic currents that charge the stray capacitance through the stray inductance and stray resistance.

      Lower impedance means higher charging currents, which means higher losses in stray resistance. So you want your transmission line impedance high and your frequency low - the lower the better. And in the case of AC-powered third-rail trains (such as subways and the Chicago Elevated) the unavoidable low impedance from the enormous stray capacitance of the miles of third-rail next to the ground is compensated for by running at a LOWER frequency. (The downside to lower frequency is that you need more core material in your transformers and motors - not a big problem for an electric railroad engine (which also needs weight for traction) or an electric self-propelled car - because the power to accelerate the extra weight is mostly returned by regenerative braking to be used elsewhere.)

      You may also be confusing signal propagation with single-frequency power transmission. In the latter you do NOT try to match the impedance of the line. (You can't - because the resistive component of the load varies with how much power you're pulling - and you want to provide a voltage that dips only slightly with load, not drops to half the unloaded value.) Any energy that "bounces off" the "underterminated" load connections just goes to feed some OTHER load - or back to the generator to reduce it's mechanical energy consumption. You just try to roughly match the reactive component, mainly using lump-constant capacitors and relay switching, to avoid out-of-phase currents (which deliver no power but produce real resistive losses).

      A half-wavelength of 60 Hz is about 776 miles (a little less due mainly to the refractive index of the air and the insulators), so lump power-factor correction is generally adequate to keep transmission-line pathologies under control (and switching transients get phase-shifted but are generally just that - transient). Meanwhile, "reflected power flowing backward" has the effect of REDUCING line current, and thus losses. The approximation of "put it in anywhere and take it out anywhere, less some resistive losses" is pretty close to the actual case for a single frequency sinusoid on an underloaded transmission line.

      So you want an impedance which is low at the individual loads (to mitigate voltage dip and transient generation on switching) but as high as practical on long transmission lines (both to minimize LOAD current - the usual explanation - but also to minimize parasitic capacitance charging current and the associated resistive losses.) Fortunately, the voltage step-up transformers also step up the impedance (by the square of the voltage ratio), which is just what you want.

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
  9. oh noes by Lord+Ender · · Score: 3, Funny

    if terra were to plant a nuclear bomb in my apartment, thousands in my neighboorhood could be killed. that's worse than a mere blackout! please give me a large grant so i can upgrade my apartment to a more secure version. think of the children!

    --
    A slashdotter who didn't build his own computer is like a Jedi who didn't build his own lightsaber.
  10. Brilliant! by Anonymous Coward · · Score: 0

    What better way for a Chinese spy to get further access to not-public data? Just produce a report that says "You're vulnerable!" and let DHS open the secrets vault.

  11. Looks like it's time to by polymerousgeek · · Score: 1

    get those new UPSs I've been wanting.

    --
    53 49 47 53 20 53 55 43 4B
  12. This just in... by It+doesn't+come+easy · · Score: 4, Funny

    Jian-Wei Wang has just been added to America's Top 10 Most Wanted Terrorist list, according to a DHS spokeperson. "We believe this person has been studying some of our infrastructure with the intent to identify inherent weaknesses. It is only a matter of time before this person, or someone else, uses the knowledge gained to attack the USA." A few moments later, a nearby open microphone caught the DHS official's candid statement "Anyone using information, public or private, to point out our own stupidity is automatically suspect. To go so far as to publish their findings is criminal. Besides, since we can't find any real terrorists, we have to demonize someone so we can continue justifying our astronomical budget in these difficult economic times." After a reporter on the scene brought this admission to the attention of the spokesperson, the reporter's name was also added to the list.

    --
    The NSA: The only part of the US government that actually listens.
    1. Re:This just in... by Anonymous Coward · · Score: 0

      They'd do that before they'd ever indict Osama bin Laden for 9/11.

      http://www.fbi.gov/wanted/topten/fugitives/laden.htm

    2. Re:This just in... by Beerdood · · Score: 1

      I think I saw this happen in a documentary called "Live free or Die Hard". Someone send in Bruce Willis after this guy, before he disabled the entire grid!

      --
      Global warming and other natural disasters are a direct effect of the shrinking number of pirates - Gospel of the FSM
  13. Re:Congress in Do Nothing Mode for 3 decades by Anonymous Coward · · Score: 0

    If you're going to troll, you could at least make your third partisan claim be one that actually has something to do with budgeted funds like the first part. I mean, seriously, it's not even good bad-rhetoric, and frankly it feels like you're not really respecting people enough to disrespect them with effort.

  14. Let me guess... by Balial · · Score: 1

    So they're going to decide, therefore, that the thing to do is hide the information and ban research into it. You know, instead of actually making the systems secure.

    Hooray for security for obscurity.

  15. chinese study ?? by Anonymous Coward · · Score: 0

    of course the study just happens to be linked to china ..

    and you mean to tell me the DHS has not done it's own studies on the vulnerability of the us infrastructure .. and what are they using their funding for ..

    just what are they there for then ??

    oh Ya! .. i forgot protecting us intellectual property rights .. building detention centres for when you all wake up .. and domestic spying ..

  16. Re:Congress in Do Nothing Mode for 3 decades by Anonymous Coward · · Score: 0

    Congress has not funded the grid, ...

    The Federal government doesn't own "the grid", so why should they be blamed?

  17. Fundamental problem by zorro-z · · Score: 1

    Now that power utilities are free to be profit-generating enterprises, there's less incentive for them to invest in the redundancies which make cascading failures possible. In the past, when utilities were heavily-regulated non-profits, people complained that their systems tended to be "gold-plated," due to so much potential profit being re-invested in the systems. But, as the northeast blackout of a few years back demonstrates, today the same money which would have gone to improving the infrastructure now goes to shareholders + private owners.

    It's a no-win situation, unless you happen to be an owner, in which case you can probably afford your own private generator when the system you own fails.

    --
    -Z
    1. Re:Fundamental problem by Anonymous Coward · · Score: 0

      Yeah. Because they get paid for outages which are really cheap for them to implement since they don't consume any energy at all. In fact, they are going to start tearing down the power lines to really jack up their profits.

      Shu'up dumbass.

    2. Re:Fundamental problem by Attila+Dimedici · · Score: 1

      . In the past, when utilities were heavily-regulated non-profits, .

      When exactly was this? The utilities that provide electric and gas in my area have been for profit companies for as long as I have been alive (and I believe for as long as electric has been available to run in home appliances in this area). They have also always been heavily regulated and require authorization from the state to raise rates.

      --
      The truth is that all men having power ought to be mistrusted. James Madison
    3. Re:Fundamental problem by zorro-z · · Score: 1

      The deregulation of the US electric industry began w/the Energy Policy Act of 1992, although, as Wikipedia notes, "It began in earnest only from 1996 onwards when the Federal Energy Regulatory Commission issued orders that required utilities to provide transmission services "on a reasonable and non-discriminatory basis."

      http://en.wikipedia.org/wiki/Electricity_sector_of_the_United_States#Deregulation_and_competition

      --
      -Z
    4. Re:Fundamental problem by Attila+Dimedici · · Score: 1

      So, are you claiming that before 1992 electric utilities were non-profit? Because I happen to know that in my area that is not true. Additionally, since what you are referring to is Federal regulations, it doesn't exactly effect what I said, which was about state regulations, which as a matter of fact your link states: "By 2008 only about a dozen states had deregulated their electricity markets".

      --
      The truth is that all men having power ought to be mistrusted. James Madison
  18. I worked in Nuclear security... by Anonymous Coward · · Score: 1, Interesting

    They required all employees to use the same identical 4 letter password, to which I objected but was forced to do. My first few weeks there I discovered a keylogger on two PCs using Spybot. I reported it to management and suggested they have everyone scan their PCs, they said I was overreacting. Their email service was hosted by a remote 3rd party provider in Texas, who could be reading all their mail because they were too lazy to set up one in house. I recommended an internal email server and also that everyone use public key encryption to sign emails on several occasions and was told, "You do it and take responsibility for it when it fails."

    Customers, like nuclear weapons/energy facilities, sometimes requested encrypted email or transmissions of files and our lead developer refused to do that because it was too hard to figure out. So, he just sent everything plaintext through zipit/rapidshare websites, he'd sometimes send whole CDs zipped up. And, when I voiced concerns about security they told me to shut the hell up, literally.

    Also, when I mentioned I had made my code secure against remote attacks, they told me to stop wasting time on that because none of these machines would ever be connected to the Internet. However, when I pointed my boss to an article about guards at energy facilities hooking wifi routers to the network, which he had assured me they weren't allowed to do, he just ruffled his feathers at me and told me not to worry about it.

    Suffice it to say, they let me go, and kept the engineers that didn't care about security. I remember having a conversation with one of the developers in my team who didn't think secure code was important and I stated that actual lives depended on our work, his response was, "I don't care it is just a job, you take it too seriously." I guess I did, that's why I'm gone and he's still there.

  19. Cascade effect by whoisisis · · Score: 1

    Here in Europe, we've also experienced a few cascading blackouts, triggered by single
    failing power plants. Blackouts throughout Denmark caused by failing power plants
    in middle/southern europe is not unheard of. When the power grid is so interconnected, a few
    failures means the capacity of the rest of the plants does not meet the demand of the grid,
    which in turn forces the rest of the plants to a grinding halt. A very well coordinated effort is then required
    to bring the grid back up.

    There's probably not much to be done about this, other than
    perhaps segmenting the grid (making it harder so sell/buy power from other plants).

    Interestingly, the grid in Denmark is naturally segmented by water. The western part of the country
    is connected to the central european power grid, and the eastern part is connected to the rest of the North (Sweeden etc).
    Because of a new tunnel under Storebelt, a (DC) powerline can help restart the northern power grid and vise versa.
    This was used a couple of years back after a failure of a sweedish powerplant that caused Sweeden and eastern Denmark
    to black out.

    1. Re:Cascade effect by Anonymous Coward · · Score: 0

      are you saying the Swedish powerplant bork bork borked denmark?

  20. This is not new by HangingChad · · Score: 1

    I started a book years about a coordinated attack by a small group of people that blacked out the west coast for months. That was early 90's. Surprisingly little has changed. Security is better, but it's still astonishing how much of our power infrastructure is unprotected.

    Almost as surprising is how few people are prepared for an extended power outage. Ever since I worked around power management systems, I've dragged around a generator and keep enough gas on hand to run it at least two weeks.

    It says good things about our electrical grid that I've only needed the generator a handful of times in all those years. But I've also noticed over the years we've come to take the grid for granted and are woefully unprepared for a wide spread outage that lasted more than a week. An interesting mental exercise is to look around your house and think about what things would be worth without electricity.

    --
    That's our life, the big wheel of shit. - The Fat Man, Blue Tango Salvage
  21. Haven't I seen this one before? by Drunken+Buddhist · · Score: 1

    Already, subscribers are talking about a controversial military maneuver whereby a small unit or individual, outgunned and trapped may use an otherwise abandoned motor vehicle and a makeshift ramp to disable or destroy a rotory aerial vehicle.

    At least one may in fact currently be viewing this via "the old satcomms".

    --
    -1, Disagree is not a valid option. Troll, Flamebait and Offtopic are not a substitute.
  22. Why the heck ? by aepervius · · Score: 1

    Why the heck the power infrastructure is connected to the internet ? Why the heck not use direct modem or similar non easily compromisible stuff, and certainly nothing a MALWARE could control ? Whiskey Tango Foxtrot ? Why not a freaking red button outside with "hit me to break me".

    --
    C. Sagan : A demon haunted world:
    http://www.amazon.com/gp/product/0345409469/
    visit randi.org
    1. Re:Why the heck ? by PitaBred · · Score: 1

      Because it doesn't need just point to point communications, and they want constant communication instead of dedicated lines. They'd have to essentially build a private Internet for communications.

      The problem isn't that they're using the Internet. The problem is that they're not using something like a VPN to connect. Businesses do it all the time with damn good security. The power companies just don't give a shit since they have a monopoly on the lines, they have no competition, and no incentive to protect themselves or the rest of us.

    2. Re:Why the heck ? by Anonymous Coward · · Score: 0

      Actually, most of the article was talking about physical security. The power network, not the computer network running it. The researcher suggested that destroying a small, lightly loaded section of the network would cause overloads on other parts of the power grid which would cascade and bring down the entire West Coast grid.

      I'm betting that if you do it by computer, you wouldn't be able to cause that sort of unsafe shutdown (So that a single disgruntled company employee can't cause a blackout across the continent). You could still deny service, but computer security holes are a lot easier to patch than physical ones.

  23. and Smart Grid will let any 10-year-old crash all by swschrad · · Score: 2, Interesting

    used to be, you had load dispatchers at switches in multiple areas. they had telephones and a small phone book of other dispatchers. under that system, the US became the world's dominant superpower and home of most wealth.

    worth trying. not everything has to run on flash and crackberries.

    --
    if this is supposed to be a new economy, how come they still want my old fashioned money?
  24. In Soviet Amerika: by Anonymous Coward · · Score: 0

    Power grid report YOU !

    Yours In Astrakhan,
    Kilgore T.

  25. DHS? by Anonymous Coward · · Score: 0

    Meh. Call me when Jack Bauer want's to check the powerplants.

  26. reminds me... by mach1980 · · Score: 1

    Reminds me of the swedish transport agency. It has several publications on its website describing, in great detail, how a terrorist may steal and release dangerous goods from vehicles.
    Counties is Sweden also have more localized publications describing where to find the dangerous goods and vunerable sites.

    Still no-one is putting the information to terror use. Seems there is other ways of protecting the homeland...

    --
    Break the sound barrier - bring the noise.
  27. bah...more green scare mongering by Anonymous Coward · · Score: 0

    I guess next he'll suggest that a decentralized network would be more resilient? Locally produced power, maybe solar or some such? Pure green propaganda. This man probably claims global warming is real and hates business.

  28. Who needs terrorists? by meustrus · · Score: 0

    Who needs terrorists to take down the entire West Coast power grid when you've got Enron? It WILL happen again, especially with the current state of the California government.

    --
    I sometimes ask revealing, often ignorant-seeming questions. Maybe they're harder to answer than you think.
  29. Duh, the equipment is exposed by johnny+cashed · · Score: 2, Interesting

    I have conceived of a distributed attack involving timed/coordinated thermite devices placed on transformer housings at substations. Place the same devices on any emergency generator housings where first responders are located, and massive chaos would quickly ensue.

    Thermite is easily made/sourced from the components, timing devices are trivial. Thermite is not an explosive, but it would easily burn a hole in the top of a oil filled transformer housing, drop inside the transformer, burning all the way. I'm sure it would short the xformer, and ignite the oil inside. Same with generators, a thermite device placed on top would easily burn into the engine block or generator windings.

    I'll leave the details out for the terrorists to figure out, but I see this as an easy attack for small cities. Larger cities will have the infrastructure more secure, but it is a large grid to secure. Too large. Modern society needs electricity like humans need air. I see my plan of attack as cheap, not too sophisticated for dedicated attacker(s) and probably effective, depending on how large a coordinated attack could be. It is very scalable.

    What, who's at my door? DHS?

    1. Re:Duh, the equipment is exposed by Anonymous Coward · · Score: 0

      What, who's at my door? DHS?

      If you're lucky.

      If you're not lucky it is some terrorists.

    2. Re:Duh, the equipment is exposed by johnny+cashed · · Score: 1

      while I'm guilty of thinking, let me expound a little more. Thermite is trivially easy to make from steel wool and finely divided aluminum (powder). The aluminum can be produced with a labor intensive process called filing or sanding. The process can be mechanized. The ignition process is slightly more difficult that the base materials. However, in the US, fireworks are commonly available and thus provide an easy source for raw materials. The dedicated attackers would not care about getting caught. One person would be an annoyance and rude awakening. Ten people could take out a town of 50,000 people (back of the envelope calculations). The process could use the cell network to synchronize attacks, then take out the very network itself with the same process. To me the fact that something like this hasn't happened yet amazes me. Around here (a town of ~50,000) substations are secured with chain link fence. There is high voltage present within the perimeter, but a knowledgeable person would do well to avoid the HV. One day to place charges. Then activate.

      The thing is, most of us like our power. The system is vulnerable to off grid radical activists. Even with green power, the grid is useful as a "storage" medium (right?, technically it is a distribution system). We here all like our Internet, lights, HVAC, entertainment systems, hospitals, etc, etc. So, who would target the electrical grid?

  30. The Grid Is Challenged Daily by anorlunda · · Score: 1

    In the ice storm of 1998 in the Northeast more than 200,000 poles and 100,000 miles of lines were downed. The blackout did not extend much beyond the counties affected.

    On 9/11 300 MW in NYC disappeared when the towers went down. The blackout did not extend more than a block.

    Tornadoes, earthquakes, wildfires, ice storms, and hurricanes provide frequent tests of multiple unplanned simultaneous contingencies. They hardly ever cause cascading outages.

    Yes cascading outages do occur in real life, but the grid is much more robust than popular chit chat assumes. If it were as vulnerable as pundits suggest, we'd have regional level blackouts weekly.

    The design criterion is that blackouts affecting 10,000,000 or more customers should not happen more often than once every 10 years. (Source) The record for the past 40 years shows that performance is just about on-target.

  31. IDIOT. by Anonymous Coward · · Score: 0

    Your village called and asked you to return.

    Power station PLCs are connected to power station control networks that have links to power company administrative networks. These links are necessary as it's kinda difficult to ensure fuel arrives on time if you have no idea how much you're using. It's also kinda useful if you can coordinate power output with other power stations on the grid too or things tend to blow up. Oh, and since the grid itself is a distribution mechanism shared by many companies, you probably want some way of measuring how much power you put onto the grid so that your accounting department can ensure that your power company gets paid for it and stays in business.

    Are you seeing the picture yet?

    If you're looking for a purely air-gapped computer, might I suggest you start with your own so we can be spared your ignorant arrogance?

    1. Re:IDIOT. by blackraven14250 · · Score: 1

      They don't need to be put on the internet. Get a phone line, and run it between places where you want connections. Congratulations, you just made a network much more secure by taking it off the general, connected-to-everywhere-in-the-world internet.

    2. Re:IDIOT. by Anonymous Coward · · Score: 0

      Wrong again. Just because it's at the end of a phone line doesn't make it any more secure.

      Wardiallers anyone?

  32. Sadly by Anonymous Coward · · Score: 0

    America is LOADED with lots of holes just because we run windows and are hiring more and more offshore. Offshore REALLY could not care less if America was attacked and taken down. Heck, just the other day, verizon had a major attack on its network. Where were the openings? In work from India. Yet, that kind of stuff is being kept quiet.

  33. It's nice to near the source of power. by nsaspook · · Score: 1

    My house is on a main tie power line substation that once was connected to a Al plant here. Now the power goes to two large
    semiconductor fabs that have contracts for power with massive penalties for loss of production. I think I have had less than a hour of outage in 20 years.

    When California disconnects my lights do get a little brighter. http://www.bpa.gov/power/pl/columbia/4-gal-1.htm

    --
    In GOD we trust, all others we monitor.
  34. Decentralized power by Nonillion · · Score: 1

    The power grid is a relic of the past. It has been long over due for decentralised power. It seems to me that the power industry has kept this from happening for quite some time. Wouldn't it be nice to have the equivalent of a "Mr. Fusion" to power your whole house for decades. Even if you could generate ALL your power, I'm sure some law would be passed that will enable to energy industry to "charge" (aka gouge) you a nominal fee for the privilege.

    This way, severe weather or terrorists, domestic or foreign wouldn't be able to disrupt power on a large scale basis as easily as they could now.

    --
    "I bow to no man" - Riddick
  35. Thank You China by LifesABeach · · Score: 1

    As an American, I thank Jian-Wei Wang for bringing a possible worst case senario to our fine country. I would hope that the Leaders of China don't grace Mr Wang's thoughts by throwing him under, in this case, a Tank. Maybe the lesson that the Chinese Government learned the hard way is being reciprocated in kind. China lost a whole generation of children when they, 1) Ignored Earthquake building codes, and 2) the warning of large dams make large earthquakes from an analysis at the University of Alaska. China's loss is the World's loss. Maybe I should think more seriously about the 1 Giga Watt of Solar Panels that China will be shipping to the U.S. in about 4 more months. Maybe it's time for this little round eye to start thinking "Re-Newable Energy".

  36. I don't think this is new... by Newer+Guy · · Score: 1

    Didn't Enron do this almost every day in 2000 and 2001 to raise rates?

  37. Re:Shooting insulators by Anonymous Coward · · Score: 0

    Insulators are easy to replace. Substation and generator transformers, on the other hand, are often custom made, and much easier to hit. Generator transformers have the added bonus of having no circuit breaker protection.

  38. Stop with the right wing propaganda by Anonymous Coward · · Score: 0

    Problem is money, there is simply not enough to go around and in some cases there is no money at all.

    The problem is never money in things like this. What we need for that is work. Labor. And the materials, most of which can be found within the US.

    Especially with the current economic situation and unemployment rates, it would be easy for government to find people willing to work for a while if the government gives them housing, food and some commodities for a while. Perhaps money (because not everything can be regulated well. "You get 3 movie tickets this month.") but only a very small amount of that would be needed.

    It could never fly in the USA, though. "That would be socialism!" and all that. And yes, that would indeed be socialism. The question just is if it would be a good idea or not. Government would save money, taxes would go down, unemployment rates would go down and infrastructure would be improved...

  39. Google Jamming - The amazing thing by SgtChaireBourne · · Score: 1

    Well, Usama bin Laden said

    I notice how you use the new post year 2000 coup d'etat spelling. God forbid you use the regular spelling, "Osama bin Laden", and find that the administrations of Big Bush and Reagan not only heavily financed and trained his whole group but also held that scum up as a "freedom fighter" and hero.

    The net, with the centralization of both sources and indexing/retrieval are making Revisionist history possible in ways barely even dreamed of by fascists, real or from literature.

    --
    Beta is broken and the link to classic doesn't work. Stop wasting our time or there won't be anybody left here.
    1. Re:Google Jamming - The amazing thing by oodaloop · · Score: 1

      Spell it whatever way you like. When I was an intelligence analyst at JAC Molesworth in 1998, that's the way we spelled it, so I guess I was ahead of my time. DIA spelled it the other way at the time. Whatever. I've been tracking UBL, or OBL, for a few years now so I know stuff too. Thanks.

      BTW, the US did NOT knowingly finance UBL, though our money made it his way. That's also on the 'net in case you missed it.

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
    2. Re:Google Jamming - The amazing thing by oodaloop · · Score: 1

      I know already replied to your drivel, but the more I thought about it the more it bothered me. Your first part about googling UBl vice OBL is just flat out wrong. If you google "Usama bin Laden", Osama bin Laden results come right up. The Wikipedia page is second on my list, with the OBL spelling up front and immediately after that the numerous variations of his name, UBL being first. So your whole post is really making mountains out of molehills, and you seem to think you know more about UBL than you actually do.

      But your insinuation that I am one of those revising the past when you yourself are cherry-picking information is annoying, at the least, and hypocritical. Did you know Sudan offered to give UBL to us, and Bill Clinton refused? Or that snipers had UBL in their sights and Clinton called them off? Or that Clinton chose to ignore ties between Iraq and WTC 93 and 95 OKC, because it would be unpopular? (Google those, just for fun). If you're going to pass around blame to previous administrations, let's make sure everyone gets their fair share.

      It's armchair hindsight generals like you, questioning our methods, with little evidence, that are just as bad as "revisionists" if not worse. Maybe if you had brilliant insights WITHOUT hindsight, Washington would be calling for your advice right now.

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
  40. Re:Shooting insulators by Rich0 · · Score: 1

    No doubt the insulator is easy to replace, but what else gets damaged in the resulting short? If you hit a few of them power will certainly be out for a while no matter what. You could get a cascading failure which multiplies the damage.

    Substation transformers are clearly another possible target.

    The serious vulnerabilities are the distributed ones. Most likely a power plant has some kind of security - even a barbed wire fence and ID badges are a serious impediment to an attack. On the other hand, most substations run with almost nobody around, and the equipment is just sitting out in the open where it could be attacked with fairly simple weapons. With all that current it doesn't take much damage to destroy things permanently.

  41. Who has been watching Quantum Leap by Anonymous Coward · · Score: 0
  42. What do you bet DHS will say... by Jeprey · · Score: 1
    Of course, for an agency, DHS, created by centralization, it will probably never occur to them that the best answer is decentralization of the power grid... instead draconian but worse single-point-failure solutions will almost certainly be proposed by DHS.

    Will they be utterly predictable or will they actually care about a real solution? I have my bets down on this already based on past DHS performance and what is typical for bureaucracies.