Slashdot Mirror


Safecracking for the Computer Scientist

secureman writes "It looks like Matt Blaze (the University of Pennsylvania CS professor best known for finding security flaws in the NSA Clipper Chip and in master keyed locks) is still causing trouble in physical security circles. There's a draft paper (dated December '04) on his web site entitled Safecracking for the Computer Scientist, which is a pretty in-depth look at what computer security can learn from safes (and vaults). The interesting thing is that it describes in detail the different ways that safes are cracked, probably revealing techniques that locksmiths would rather you didn't know about (there's a lot of security-by-obscurity there). The conclusion seems to be that while safes can fail, at least they do so in better ways than computer systems do. Warning: it's a 2.5 meg pdf file with lots of pretty pictures."

85 of 322 comments (clear)

  1. not that obscure by iggymanz · · Score: 3, Informative

    The information for the way that locksmithing is done (including lock picking) is available in most libraries. Ditto for safe and vault construction methodologies for the past 120 years.

    1. Re:not that obscure by Spellbinder · · Score: 3, Funny

      you have to be able to read
      so it is quite obscure

      --


      stop supporting microsoft with pirating their software!!!!!
    2. Re:not that obscure by iggymanz · · Score: 3, Insightful

      heheh, I think there's problem of a growing number of people who don't *bother* to read, though they have the gift of literacy. I don't think most computer geeks are guilty of that, however - everyone I know who's into IT in some also likes to read real live physical books.

    3. Re:not that obscure by Arctic+Fox · · Score: 5, Funny

      Ever read /. at -1?
      You'll discover that you are incorrect, Sir.

    4. Re:not that obscure by ChairmanMeow · · Score: 3, Insightful

      Yes, the problem in our society is not illiteracy, but aliteracy: nearly everyone can read, it's just that they don't.

      --
    5. Re:not that obscure by daniil · · Score: 3, Insightful
      Contrary to what you may think, illiteracy is a problem. At least a fifth of the population of the US of A are functionally illiterate -- ie unable to fill in a form, or even piece together more than two bits of information from a sports article. Note that these are the official figures: in reality, these figures are probably much larger.

      This problem is quite common in all the countries where literacy levels should be at 100%. In reality, about 20% of Britons have very poor literacy skills; in Switzerland, it's more than 30%.

      Some studies have linked poor literacy to excessive TV viewing. People can't read because they don't read.

      --
      Man is a slave because freedom is difficult, whereas slavery is easy.
  2. slashdotted by jon787 · · Score: 2, Funny
    The conclusion seems to be that while safes can fail, at least they do so in better ways than computer systems do.

    How about a safe holding up to the /. effect, hmmm?

    wgetting it at 12 K/s :(
    --
    X(7): A program for managing terminal windows. See also screen(1).
  3. Well so much for the PDF... by yuriismaster · · Score: 4, Informative

    Cmon, you expected a 2.5 mb file to last...

    Here's Google's HTML-ification of the pdf (sans said 'pretty pictures')

  4. Mirror by hardlined · · Score: 5, Informative

    http://shell.athenet.net/~files/safelocks.pdf

  5. The shocking secret the industry wants covered up by Anonymous Coward · · Score: 5, Funny

    All safes open using a maintenance combination of 12345.

  6. Re:spoof? by sfjoe · · Score: 4, Funny

    Did anyone else read the headline and think this was some horrible spoof on "Queer Eye for the Straight Guy"?

    Well, now that you mention it ... no.

    --
    It's simple: I demand prosecution for torture.
  7. A point well made by gateman9 · · Score: 5, Insightful

    I think his comparison is on to something here.

    A good safe is designed in layers, so that to get in, you have to break through each layer. And the more layers, the more time it takes. Safe-makers know no safe is completely secure, and all safes are crackable.

    Time is the enemy of anyone looking to commit theft/robbery, whether that person is working physically or digitally. So the longer it takes the more secure the system it is.

    While we defeinitely know security by obfuscation is stupid in terms of computer security, safety by layers makes sense.

    If there were several layers of encryption (asymmetrical and symmetrical), compromising the system takes more time, and if one layer fails, the game isn't over just yet.

    Admittedly secure traffic would be much slower than unsecured traffic, the benefits of this kind of layered approach would be more than worth it for data that needs to be as secure is possible.

    --
    You can't defeat physics.
  8. Re:Unable to determine IP address by NanoGator · · Score: 4, Funny

    " Unable to determine IP address from host name for www.crypto.com

    Wow, that's pretty darned secure!

    --
    "Derp de derp."
  9. Re:The shocking secret the industry wants covered by KillerDeathRobot · · Score: 5, Funny

    That sounds like the combination some idiot would have on his luggage.

    --
    Thinkin' Lincoln - a web comic of presidential proportions
  10. Re:spoof? by big+tex · · Score: 2, Funny

    Except that 'funny' mods don't get karma.

    Other than that, which forms the entire body of your argument, you're spot on.

    Me, I was amused by the name of the safe-cracking book mentioned in the PDF: "The Art of Manipulation." I'm sure that's the name of a low-budget pr0n film.

    --
    I think I need a new sig here.
  11. Re:cse professor by big+tex · · Score: 5, Funny

    To top it off, his mastery of punctuation and the Shift Key is far better than yours.

    --
    I think I need a new sig here.
  12. general coding v. coding for security: assumptions by G4from128k · · Score: 5, Insightful

    The challenge for IT security is that computer science loves to use abstractions, encapsulation, APIs, libraries and what not that let the programmer ignore the details of the internal complexity of systems. The problem is that it leads one to assume that these systems behave in some idealized fashion (the logical, black-box model of the system). In reality, the systems don't always follow the assumed logical model or the ignored internals create side-effects that are unforeseen by the original programmer, but exploited by malicious actors.

    For example, assumptions about metadata and syntax give rise to buffer overflow or malformed string exploits. In trusting that an input string will be its stated length or follow the official syntax, the programmer adheres to the logical model of the system but creates a vulnerability. Similarly, physical power consumption artifacts can let a cracker guess the state or internal activities of a smartcard encryption chip. The original programmer is unaware that the code creates these artifacts since most coding paradigms ignore issues such as the exact execution time of subroutines, power consumption of CPU instructions, etc.

    Becoming security conscious means unlearning all the tricks that let a programmer ignore the complexity inside a system. It means understanding the real behavior of all the internals, all the side-effects, and all the system properties that might be observable or influenceable by a malicious party. That makes programming for security very different and very much harder that standard programming.

    To mangle a metaphor, security means that one must peel the onion to ensure that it does not have contain an open door in its core.

    --
    Two wrongs don't make a right, but three lefts do.
  13. Re:The shocking secret the industry wants covered by R2.0 · · Score: 5, Funny

    True story.

    I needed access to secured room of a building my company was renovating. It had a pushbutton type combination lock on it (or some such). I asked the combination, and the maintenance superintendent said "1-2-3-4-5". I immediately blurted out "1-2-3-4-5? That sounds like the combination some idiot would put on his luggage." Straight Pavlovian response to a Mel Brooks straight line.

    It was only after a 5 seconds of being stared at that I realized that the Superintendent had intentionally set that combination, and he was NOT a "Spaceballs" fan.

    --
    "As God is my witness, I thought turkeys could fly." A. Carlson
  14. Hacker vs cracker by AtariAmarok · · Score: 4, Funny

    This one throws a monkey-wrench in the works of the old "hacker vs cracker" argument. If someone is a redneck safe-cracking computer scientist from Georgia, what category do they fall into? Hmmm?

    --
    Don't blame Durga. I voted for Centauri.
    1. Re:Hacker vs cracker by forceflow2 · · Score: 2, Funny

      My dad :-(

  15. Similar by irefay · · Score: 5, Insightful

    Similarly, you can have as many security layers as you wish but if you forget to weld the back end of the safe or network on than they still do nothing for security... your only as secure as your weakest point of security.

    1. Re:Similar by tchuladdiass · · Score: 2, Insightful

      Well, in the case of the safe, you'd have to forget to "weld the back end on", and forget to secure the back door on the building, and leave an opening in the side perimeter fence, and leave the attack dogs tied up. This is what's meant by layered security. You don't just add three more locks to the same door, you instead add & secure more perimeters. The way you'd do this on a web server for example is to have the outside firewall direct requests to an inside box, which interprets the queries and then re-issues the incomming requests (after validation & sanitization) to another box that only it has access to. Hopefully each box is running a different os. Also, the internal web server should query a database server on yet another host, with a firewall between them. That way your database server is 4 layers away from the outside user.

  16. Re:Surely you're joking... by casuist99 · · Score: 2, Insightful

    If I remember correctly, Feynman used what many safe crackers and computer crackers still use today: the human factor. He relied partially upon secretaries writing combinations on desk notes and mechanical failings of filing cabinets. When you have lazy people who can't remember passwords/combinations, it becomes an exercise in getting the combination from people.

  17. Re:The shocking secret the industry wants covered by oman_ · · Score: 3, Funny

    So I was reading the DaVinci Code and the main characters discovered that the account number for a swiss bank account was the first several digits of the Fibbonaci sequence.

    The first thing I thought to myself was:
    "That sounds like the combination some GENIUS would have on his luggage!"

    --
    Rats would be more funny if they could fart.
  18. A Companion Piece... by stankulp · · Score: 5, Informative
    --

    ...The MIT Guide to Lock Picking

    Don't leave home without it.

    --
    We must be alert to the danger that public policy could become captive to a scientific-technological elite. - Eisenhower
  19. Re:The shocking secret the industry wants covered by EvanED · · Score: 4, Interesting

    Surely You're Joking Mr. Feynmann has a chapter called "Safecracker Meets Safecracker." It describes his time at Los Alamos during which he repeatedly opened people's safes. (The ease with which he did this actually quite disturbing.) Anyway, at the end of the chapter, he talks about how he learned that a particular lock came factory set at either 0-30-0 or 60-30-60 (I think those were the two), following which the owner would change it to something more secure.

    He said he went around Los Alamos after he learned this trying those two combinations and opened about 1/3 of the locks with one or the other.

  20. Re:Considering the audience... by MrLint · · Score: 5, Funny

    ...is posting safe-cracking techniques on /. responsible behaviour?

    Well i dont think we have much to worry about here. As most /. readers wouldnt be able to get past teh 1st level of physical security around any safe. Namely the door at the top of the stairs to their parent's basement ;)

  21. Re:Surely you're joking... by EvanED · · Score: 2, Insightful

    The chapter in Surely You're Joking only mentions two or three instances where he actually used stuff like that. Once when some other people needed a safe opened, and the people thought he might use a date. Feynmann tried every date in the 1900s* until he found what it was. Another time he needed something, and tried a couple mathematical constants, and 27-18-28 opened it. But that's about as far as he pushed that method.

    Most of what he talks about that chapter was when he was able to figure out the last two numbers in someone's combination by fiddling with the lock when it was open. So the only human factor there was just people leaving their safes open.

    *Rounded to the nearest multiple of 5

  22. Re:Surely you're joking... by ngkdc · · Score: 2, Informative

    Um ... only partly due to social engineering and fast thinking. For the rest he either tried the standard shipping combinations (25-0-25) or (50-25-50); in many cases the safe combinations were never changed from the "default" combination. For the rest, he would lean on the safe, twiddling the dial in what appeared to be a random, nervous twitchy thing, when in fact he was trying different combinations in increments of 5 digits. Those locks had rather wide notches in the wheels, and would respond rather nicely (with those nice rounded shoulder cuts) to a number +/- 3 digits. He only had to try numbers in steps of five to come close enough to get the lock open. Remember, he wasn't trying to get the EXACT number, just get the thing open. He'd return to his office, and note the combination for that particular safe and write it down. Ah, security.

  23. Best home safe is a home vault by swb · · Score: 4, Interesting

    Pick a corner area of your basement. Build a concrete block room, filling the block voids with concrete and rebar. Put a roof on the block room made out of steel plate, anchored to the block walls, and add another 4" of concrete and rebar on top of this.

    For the entrance, use two doors. The inside door should be a vault door (better gun safe door hung on a frame with inside release). Outside door should be steel fire/security door with steel frame and heavy locks. Outside door is just to be time consuming to get to the inside door.

    This wouldn't be all that expensive, either, considering a high-end gun safe alone is $5k pretty easily.

    1. Re:Best home safe is a home vault by big+tex · · Score: 4, Interesting

      If you are going to all of that trouble, why use block masonry?

      To make a good strong wall, you should have reinforcement in both directions. Standard blocks don't have the notches for horizontal rebars, leaving you only with vertical reinforcement.

      Even more, CMU's aren't really high-strength concrete. The problem is impact resistance, jackhammers and the like.

      Best bet:
      Concrete wall, 6"-12" thick. When you pour it, use a piece of steel plate for the inside form.
      Now we're talking painful demolition.

      --
      I think I need a new sig here.
    2. Re:Best home safe is a home vault by ckedge · · Score: 4, Interesting

      .
      When the family grocery store burned down the only thing left was the safe, which is where the lottery tickets and other such important/like-money-but-not-money type things were kept overnight. Of course having been in the middle of an inferno for 6 straight hours left it such that it couldn't be opened using the combination or door.

      My Uncle called the safe company, and they faxed him some instructions and told him to take it to the local autobody shop. At which point we learned why safes of that size are so damn heavy. Outer and inner boxes of thick steel, with the inner space filled with concrete!! (It's hard to get through and it insulates against fire..)

      A couple hours of careful torching and hammering latter and only one corner of one document came out singed - everything else was fine.

  24. Massive Keyspace? by macz · · Score: 2, Interesting
    From the paper:
    There is much that information security can learn from physical security, and a careful study across the two disciplines should strengthen both of them. One of the most interesting aspects of physical security's methodology is its ability to very closely measure both the capabilities of the attacker and the resistance of various mechanisms to specific threats, as well as to compose these metrics in useful ways (e.g., to determine the required response time of an alarm system). Nothing approaching these kinds of metrics exists in information security.

    Isn't the use of ever increasing keyspace sizes in encryption algorithms (ie SHA256, SHA512, SHAadInfinitum) at a pace slightly higher than Moore's law effectively doing this now?

    I can't count how many times I have read "...will take longer than the age of the Universe itself to brute force this /insert encryption scheme of choice here/..." when reading about some new fangled encryption scheme. Naturally, that claim is based on computational power at the time, but doesn't this exactly dispute his claim?

    We can be better at it, sure. But computer security systems are designed with at least SOME regard for the notional hacker's motive, opportunity, and skill level.

    --
    ...But I digress. TREMBLE PUNY HUMANS!ONE DAY MY SPECIES WILL DESTROY YOU ALL!
    1. Re:Massive Keyspace? by charyou-tree · · Score: 4, Insightful
      I can't count how many times I have read "...will take longer than the age of the Universe itself to brute force this /insert encryption scheme of choice here/..." when reading about some new fangled encryption scheme. Naturally, that claim is based on computational power at the time, but doesn't this exactly dispute his claim?
      No. Physics gets involved ... From Schneier's Applied Cryptography page 157:

      One of the consequences of the second law of thermodynamics is that a certain amount of energy is necessary to represent information. To record a single bit by changing the state of a system requires an amount of energy no less than k T, where T is the absolute temperature of the system and k is the Boltzman constant. (Stick with me; the physics lesson is almost over.)

      Given that k = 1.38*10^-16 erg/deg Kelvin, and that the ambient temperature of the universe is 3.2 deg Kelvin, an ideal computer running at 3.2 deg Kelvin would consume 4.4*10^-16 ergs every time it set or cleared a bit. To run a computer colder thant the cosmic background radiation would require extra energy to run a heat pump.

      Now the annual energy output of our sun is about 1.21*10^41 ergs. This is enough to power about 2.7*10^56 single bit changes in our ideal computer; enough state changes to put a 187-bit counter through all its values. If we built a Dyson sphere around the sun and captured all its energy for 32 years, without any loss, we could power a computer to count up to 2^192. Of course, it wouldn't have the energy left over to perform any useful calculations with this computer.

      But that's just one star, and a measly one at that. A typical supernova releases something like 10^51 ergs. If all of this energy could be channeled into a single orgy of computation, a 219-bit counter could be cycled through all of its states.

      These numbers have nothing to do with the technology of the devices; they are the maximums that thermodynamics will allow. And they strongly imply that brute-force attacks against 256-bit keys will be infeasible until computers are built from something other than matter and occupy something other than space.
      IOW, you can't brute-force a 256-bit key.
    2. Re:Massive Keyspace? by EvanED · · Score: 2, Interesting

      Only slightly related, but I found this interesting. It's a few people who broke the "security" of PlanetPoker by exploiting flaws in their shuffling algorithm. They were able to combine weaknesses in the actual algorithm with weaknesses in the random number generator with weaknesses in how the random number generator was used to essentially completely determine the cards everyone has in any deal just from the face up cards.

      It really drives home the point that security is much more difficult to right do than you might think.

  25. Well that puts it by sammyo · · Score: 3, Interesting

    out of the hands of most criminals.

    Erk, now where have all those SuperCriminals gone?

  26. Re:general coding v. coding for security: assumpti by IO+ERROR · · Score: 2, Insightful
    Becoming security conscious means unlearning all the tricks that let a programmer ignore the complexity inside a system. It means understanding the real behavior of all the internals, all the side-effects, and all the system properties that might be observable or influenceable by a malicious party. That makes programming for security very different and very much harder that standard programming.

    It also takes a lot longer. If you're questioning everything the C library is doing, you're going to spend all your time trying to break your own program before you've even written it! Something has to give somewhere.

    From the PDF:

    Far more than in computers and networks, security here is recognized to be a tradeoff, and a quantifiable one at that. The essence of the compromise is time.

    There are a few obvious things you can do, like avoiding unbounded reads, trimming down your strings, validating your input, etc., but who's going to think twice about calling fd_set()? Yet there's a vulnerability in the implementation of fd_set() on *BSD which could lead to denial of service or code execution. What's more, it's a tricky and subtle problem which even experienced programmers might miss. (It's also subtle and tricky to exploit.)

    (It also affects more apps than the ones listed in the link there, and also affects some FreeBSD, and in theory might affect Linux. I'd post more links, but I'm short on time and long on the to-do list.)

    So in short, you aren't going to have time or space in your head to know everything. But if you do the few obvious things, you'll greatly increase the security of whatever you write.

    --
    How am I supposed to fit a pithy, relevant quote into 120 characters?
  27. Re:If all safes are crackable... by Desult · · Score: 2, Interesting

    Uh, OK.

    So 40^8 = 6553600000000.

    Let's say you'll hit the password halfway through the keyspace on average = 3276800000000.

    Let's be really generous, and say a single user can attempt 60 keys / sec. That's 5184000 keys per day.

    So, you'd get your password in about 632099 days... about 1700 years. Say you're attacking with 1000 people, that's only 1.7 years!

    Oh wait, no supposedly secure system is going to accept 60000 failed key attempts per second, for 1.7 years, before failing. Nice thought, though.

    --
    -Greg
  28. Time is the Key by Lucas+Membrane · · Score: 3, Interesting
    The locks on bank vaults can't be picked or cracked or defeated except by brute force, because they are time locks. The vaults themselves are not designed to be impenetrable, but rather to simply to take an excessive amount of time to penetrate. A cheapo bank vault might be rated at only 45 minutes, better ones at several hours. Some manufacturers leave one spot weak where a safe can be penetrated more quickly than at other spots. That is "security by obscurity." If you don't know where that is, you've got a long night ahead of you. Perhaps some kinds of modern instruments can detect this spot, if it exists, from the outside.

    John Dillinger penetrated a bank vault and looted safe-deposit boxes within, but he did it by stealth, finding a closed-down bank, pretending to be an authorized workman, and taking a long time to extract the contents.

  29. Better Safe Cracking through Chemistry by Detritus · · Score: 5, Interesting
    The most interesting method I've read about involved drilling a small hole in the top of the safe, filling it with water, and detonating a small explosive charge inside the safe. The hydrostatic pressure burst the safe open without damaging the contents.

    When I was a kid, my friends and I put an ordinary paper firecracker inside a wooden box, about the size of a cigar box, and secured the lid. To our surprise, the box spontaneously disassembled itself into its component parts, which travelled outwards at high speed. All of that from a firecracker that would only cause minor burns if you held it in your fingers when it exploded.

    --
    Mea navis aericumbens anguillis abundat
    1. Re:Better Safe Cracking through Chemistry by ultitool · · Score: 2, Informative

      Yep, same technique used by Robert De Niro in The Score. To which when questioned if the concept would work he replied "It's physics".

      So is it chemistry or physics that makes this work? I suppose the pressure generated by the explosion is the main factor to success but what about a purely chemical reaction via an exothermic reaction in the water causing it to expand.... /me runs to the convenience store with an aquarium heater and balaclava.

      --
      If You Drink, Don't Park, Accidents Cause People.
    2. Re:Better Safe Cracking through Chemistry by iggymanz · · Score: 4, Informative

      uh-huh, ever try to drill a *small* hole into armor plate with man-portable power tools? Please try that sometime, I would reccomend warming up by attempting said feat on an iron beam used to make the average american skyscraper. I actually tried that in my apartment in Chicago to mount something in the window; once through the drywall my eighth-inch titanium nitride bit powered by third horsepower motor did nothing more than polish the steel. embarrasing. Anyway, to put in water and explosive you'll need what, a one-inch hole? Maybe an oxygen lance would be better.

    3. Re:Better Safe Cracking through Chemistry by deanpole · · Score: 4, Informative

      The verb is to "tamp". It makes an explosion more effective by physically constraining it. For example a stick of dynamite if left on a road will create a pothole a foot or two deep. Whereas several sandbags placed on top will create a crater multiple feet deep. The improvement results from directing the explosive force, but also by helping the explosive fully combust. In fact the need to tamp is the difference between a "high" and "low" explosive. The later being able to burn under the right conditions.

    4. Re:Better Safe Cracking through Chemistry by BJH · · Score: 2, Interesting

      Thermite. Just pile your iron filings and aluminium powder (remember, kids: 3 parts of iron to 1 part of aluminium) on top of the safe, drop a bit of burning magnesium on it, and stand back.

    5. Re:Better Safe Cracking through Chemistry by iggymanz · · Score: 3, Insightful

      That's iron oxide (rust), by the way. Anyway, was just making the point that to drill a safe or vault that actually held something of great value (not the $150 sheet-metal-coated-concrete type you get at Walmart or Office Depot) won't be like what you see in the movies: someone reaching into a pouch under their coat and pulling out a carpenter's cordless and making a half inch or bigger hole in a half foot or more of armoured steel. Now, if they have a Ford F-3 parked on the street, running a construction generator pumping out a few dozen amps at 240VAC, with a bundle of cables & hose coming into the door, and a drill motor with more power than a driving lawnmower, then yes, a man can "quickly" drill a hole in a half foot or more of armor.

    6. Re:Better Safe Cracking through Chemistry by canadian_right · · Score: 2, Informative
      Read?

      That technique was used in the movie "The Score". I'm not sure that it would work on a real safe using a small charge. Also, you would have to drill two holes, one to let water in and one to let air out, or it is going to take a long time to fill.

      A guide to science in movies - comments on the movie the score

      --
      Anarchists never rule
    7. Re:Better Safe Cracking through Chemistry by wfberg · · Score: 2, Informative

      If you break open a firecraker (many will come apart just by applying pressure to the middle with your thumbs, holding the ends with your indexfingers, like snapping a twig) and light the exposed ends of scary explosives, all they'll do is fizzle a bit and make pretty sparks.

      Without containment, there's no pressure to build up, and explosives typically don't explode, but just burn quite rapidly.

      So, reinforcing firecrackers can make them a lot louder/destructive.

      --
      SCO employee? Check out the bounty
    8. Re:Better Safe Cracking through Chemistry by clark9mm · · Score: 2, Informative

      Dude you would need a hell of a drill to punch a 1\8" hole through an ibeam without a pilot hole. Milwaukee makes one, it's basically a portable drill press with a badass electromagnet in the base of it. It costs about as much as a pretty good used car. Failing that, you go buy a complete drill index -- it's a set of drills that start a little bigger around than wire and get bigger in 1/64" increments -- and you start with a very tiny one and drill a pilot hole. Use a sharp punch and a hammer to make a little dimple to start the drill. Then you work your way up through the index to the size hole you want. And, use oil. A couple drops at a time of light machine oil. Also low speed, not high. The speed and feed rate might be found in a manual but it's really a matter of feel. It's slower than you think.

      To the poster below who is worried about the integrity of a building after a hole is drilled through a beam, calm down. It's a building not a jet fighter. You'd have to spend your life on the end of a drill to make enough holes to undermine the redundancy in any code-compliant building.

  30. Re:Considering the audience... by forceflow2 · · Score: 2, Funny

    That's not fair, I live upstairs. I take offense for all of us readers who can't even make it to the stairs.

  31. Re:The shocking secret the industry wants covered by morcheeba · · Score: 4, Informative

    If 00000000 is an acceptable nuclear missle secret launch code, then 12345 has got to be NSA-level security!

  32. For those wanting more history by forceflow2 · · Score: 2, Informative

    Locks, Safes and Security: An International Police Reference Two Volumes is apparently a wonderful book all about the history of lock-picking and its evolution, including ways in which things were overcome. Although the book is a bit pricey.

  33. Re:Surely you're joking... by jesdynf · · Score: 2, Insightful

    Swear to God I want a "-1, Surely You're Redundant, Mr. Feynman" moderation just now.

    Not /specifically/ directed at you, but the editors coulda saved a couple hundred posts if they'd mentioned him in the summary.

    --
    Yahoo! Pipes are awesome. How awesome? http://pipes.yahoo.com/jesdynf/slashdot
  34. Re:The shocking secret the industry wants covered by Anonymous Coward · · Score: 2, Interesting

    Here's a different true story (posted as AC to protect the, erm, me):

    The client I currently work at installed similar push-button combination locks on all doors from each floor's elevator hall, and spent a far bit of money on it too.
    The combination was set to 7-2-5-3.
    Not being a big one for remembering this sort of thing, I idly tried entering 2-3-5-7 - and it opened!
    A few tests revealed that their vaunted locks would open with any arrangement of the required four digits - reducing the security from 1 in 10,000 combinations down to 1 in 400 or so.

  35. Re:The shocking secret the industry wants covered by tlhIngan · · Score: 2

    Another valid 5 digit combination that one can say out loud as "1-2-3-4-5" is "24445" (one 2, three 4's, then 5). So there are two possible combinations for "1-2-3-4-5".

    Of course, if your lock can't handle multiple digits being the same, well, it's time for a new lock!

  36. Fail-secure by russotto · · Score: 2, Insightful

    Good safes tend to "fail secure" -- that is, when something goes wrong, you can't get into it even with the right combination. The only reason this is acceptable is there's still ways into the safe without damaging the contents. They're expensive (hardened drill bits ain't cheap!), require esoteric tools and knowledge, and hopefully take a lot of time and make a lot of noise, which a cracker doesn't want to do. Encryption, if it fails for some reason, is as hard to break for the legitimate user as it is for the cracker. Fortunately, it doesn't fail that often --- except for good old human factors, like the guy with the key forget it, lost it, or dropped dead.

  37. It is actually interesting on how you "tap" a safe by Da+w00t · · Score: 3, Interesting

    My father who got sent to locksmithing training by the Department of Defense was describing how you drill into the door of a safe to open it if you've somehow lost the combination. Basically you get a piece of metal that is the size of the door from the manufacturer -- it has marks on it where to drill. You drill according to the directions, and then fiddle with the inner workings of the locking mechanism to move the tumblers where they should be in order to open the safe, and to change the combination.

    The bad part is that once you've done this, to make the safe secure again you put a steel ball bearing the size of the hole in the hole, and then weld it in there. There is absolutely no way you're going to be able to drill through that steel. Any drill bit you try to drill through it is just going to dance on it, and end up breaking the drill bit.

    So I guess in that case, safes that have been forcibly opened using the above method are safer than ones that havn't.

    --

    da w00t. mtfnpy?
  38. No Protection for the Clueless by scottd18 · · Score: 5, Interesting

    There was a burglar in Texas last year that was breaking into city hall buildings all over the state. In almost every one he managed to get access to the safe or safes kept in the building without prying or damaging the safes.

    When he finally got caught be debriefed and gave up his MO. He would get in to the building be defeating a usually inadequate door lock with a screw driver. Then once inside he would look in all the desk drawers for sticky notes with numbers on them. In almost every one he would find a sticky note with the combination to the safe. This guy hit over 50 different city halls and got into the safe(s) in almost all of them.

    The best safes in the world won't keep people from being clueless about security.

    --
    Heck is a place for people that don't believe in gosh.
  39. Re:The shocking secret the industry wants covered by vspazv · · Score: 3, Funny

    They changed the timeclock override password at work from 00000 to 12345 because the button broke from overuse :)

  40. Re:spoof? by EvanED · · Score: 2, Informative

    I see the same thing with, "Laughing so hard X was coming out my nose." Come on. As an adult, unless have a serious degenerative disease affecting your ability to control bodily reactions, that doesn't happen.

    It can happen, if something really funny comes up at just the wrong moment. I had it happen to me a couple years ago with lemonade as I was playing Scattergories with some friends. Lemonade is actually quite painful in the sinuses.

    That said, I'm sure that 99.9% of the times you see that it's not true.

  41. No Big Secret by Dun+Malg · · Score: 4, Informative
    The interesting thing is that it describes in detail the different ways that safes are cracked, probably revealing techniques that locksmiths would rather you didn't know about (there's a lot of security-by-obscurity there).

    A good locksmith specializing in safes doesn't care if you know how safes are opened-- on the contrary, they'll tell you all about it. The job of a competent physical security professional is give the client a straight and honest description of how the product works and what its weaknesses are, and safes are no exception. I've worked for a locksmith for the last ten years and it's company policy to show clients exactly what they're getting and/or what they already have. With safe openings, my boss explains exactly what he's doing and how it all works. Admittedly, there are a lot of locksmiths who think this should all be top secret stuff, but they're just fooling themselves. All the info is out there. There's no official schooling for locksmiths, and no coherent regulation of the profession. Subsequently, there's no way to really keep the information out of the hands of "criminals" while still allowing access for beginners trying to start out in the profession. You can join the Associated Locksmiths of America essentially by just saying you're a locksmith, although you'll be approved for membership quicker if you have the recommendation of an existing ALOA member. Once you have an ALOA membership number, you're a locksmith as far as the "keepers of the knowledge" are concerned. Heck, you don't have to have anything but fifty bucks and a mailing address to subscribe to The Locksmith Ledger, and they frequently have articles on opening various safes.

    Really, none of the techniques outlined by Mr. Blaze in the PDF are any big secret. Anyone with access to such a lock mechanism (buy a safe and you've got one) and a little brainpower can figure all that stuff out. The thing is, drilling a safe requires fairly specialized tools and is very noisy. Manipulating a safe requires a lot of practice, and even an expert can take a LONG TIME to get into a safe. There's no astounding revelations there. Walk into my boss' locksmith shop and he'd show you all that. I've tried my hand at both drill penetration and manipulation, and there are no "secrets" that make any of that stuff easy. At best, the knowledge it just makes it possible-- and that knowledge is available through simple observation.

    --
    If a job's not worth doing, it's not worth doing right.
  42. Re:Book recommendation: The Great Train Robbery by Animats · · Score: 4, Interesting
    Unfortunately, Bramah's "unpickable" lock was simply a round pin-tumbler lock. Like the ones Kryptonite used. Better design, though. The clever feature of the Bramah lock is that there's only one return spring for all the pins. So picking is really slow. Every time you get the setting wrong, you have to release all the pins and start over.

    Picking a Bramah lock is quite possible, but requires some specialized tools.

  43. Re:Book recommendation: The Great Train Robbery by Dun+Malg · · Score: 2, Interesting
    Unfortunately, Bramah's "unpickable" lock was simply a round pin-tumbler lock. Like the ones Kryptonite used. Better design, though. The clever feature of the Bramah lock is that there's only one return spring for all the pins. So picking is really slow. Every time you get the setting wrong, you have to release all the pins and start over. Picking a Bramah lock is quite possible, but requires some specialized tools.

    I "picked" a small Bramah lock on a liquor caddy once. My boss was repairing the customer's front door lock and (as a joke) told me to see if I could open it after the owner told us she had no key. I managed to tension the lock and eyeball the depth of a couple gates and cut a makeshift key from a bit and barrel key with the bit shaved off. By sheer luck I had made a perfect working key in about 20 minutes. When I brought the open lock with key to my boss he looked surprised and told me they weren't supposed to be pickable, I (who'd never seen a Bramah lock before) said "It's a good thing I didn't know that then, eh?"

    --
    If a job's not worth doing, it's not worth doing right.
  44. Where is the foresight? by KrackHouse · · Score: 2, Insightful

    Why on earth doesn't Slashdot set up a mirror first then link to that instead of bringing down people's websites? Bit/BlogTorrent are free last I checked. Linking to a 2.5MB file?! It's almost like they want the site to go offline.

    There was a guy with Tsunami Videos on his blog which ended up costing him $1,000 before he knew what hit him. Does Slashdot compensate those with huge bandwidth bills? or give any warning prior to linking to something like a pdf?

    --
    What if Digg added local news and a Slashdot inspired comment karma system? ---
    http://houndwire.com
    1. Re: Where is the foresight? by king-manic · · Score: 2, Insightful

      Why on earth doesn't Slashdot set up a mirror first then link to that instead of bringing down people's websites? Bit/BlogTorrent are free last I checked. Linking to a 2.5MB file?! It's almost like they want the site to go offline.

      It's about legality. It's totally legal to link, but mirroring may get you in trouble.

      --
      "There are more things in heaven and earth, Horatio, than are dreamt of in your philosophy."
    2. Re: Where is the foresight? by KrackHouse · · Score: 2, Insightful

      The slashdot FAQ says "For example, commercial sites rely on their banner ads to generate revenue. If I cache one of their pages, this will mess with their statistics, and mess with their banner ads. In other words, this will piss them off... It would make things a lot easier when servers go down, but it's a complicated issue that would need to be thought through in great detail before being implemented. "

      They're linking to a .pdf directly, that's the problem. Also, that was last modified in June of 2000, almost a half decade ago. Surely that's enough time to thing something through, even in great detail.

      --
      What if Digg added local news and a Slashdot inspired comment karma system? ---
      http://houndwire.com
  45. Re:Why no mention of key-locked dials and bolt lev by Dun+Malg · · Score: 3, Insightful
    I found this article to be quite diapointing. I don't know where he got that lock or how old it is, but it's likely at leat a hundred years old. They just don't make combination locks like that that would be so easily manipulated.

    Actually, the S&G lock he showed is pretty much current industry standard design. They're not as easy to manipulate as they sound. The principle is very simple, but the practice is extraordinarily difficult.

    Even a cheap $2 Master pad-lock, as he briefly mentioned in two sentences on page 31, has false gates on the wheels, basically defeating all the simplistic techniques mentioned in the article.

    They don't generally use false gates on the wheels of safe locks because the fence doesn't ride on the wheels while they're turning. The fence only drops down to contact the wheels when that smaller brass wheel in front is rotated so that thar hook shaped piece falls into it. False gates can make it more difficult to figure out where the real gates are, but the fact that they have a bottom and are not as deep as the real gate make them susceptible to the exact same analysis as a non-gated wheel pack. I think you are not entirely understanding how these locks work and the methods of manipulation he describes.

    Although he states that these false gates are easily identified, trust me, they are not.

    Trust you? You think an S&G 6730 lock (retail price $115.02, my price $69.01, 5 of them currently in stock at my lock supplier's warehouse in DC-- I just checked their online catalog) is "at least a hundred years old" and expect me, a locksmith with 10 years experience learning from a boss with 30 years experience, to trust your analysis? Please.

    --------

    Funny you should mention, but those cheap master locks with the false gates is absurdly easy to manipulate. As a locksmith I'll probably be banned from our secret society meetings for telling y'all this; but here, try it at home:

    First off, those false gates are only on the last wheel-- the first to wheels are smooth except for the combination notch. Second, the "keyspace" for those master combo locks is a lot smaller than it looks. The dial may be numbered 0 through 39, but you can be within 1.5 in either direction of the correct number and the fence will drop in. For sake of ease of implementation of my manipulation method, I usually round that down to 1.25 because this allows me to divide the wheel into 16 increments 2.5 apart. So effectively the possible numbers are 0 2.5 5 7.5 10 12.5 etc.-- basically each of the numbers marked on the dial face and the halfway mark between them.

    So now you have a keyspace of 16 * 16 * 16, or 4096 combinations. This is still a pretty big number, so let's reduce it. Pull up on the shackle and "feel" each of the points where there's a false gate on that last wheel. Around a certain number range it will feel "loose" because these lock wheels are never perfectly round and the fence of the lock will be stopped by the other two wheels. Once you find this loose space, you have a way to check if the other two wheels are correct. If they are, the fence will drop into them and your will feel friction at that formerly loose position. At that point you need only turn the dial until the third wheel gate is aligned and it pops open.

    You only need to go through 16 * 16 = 256 combinations on those other two wheels to find the combination. And you don't have to "clear" the lock after each try either: You set the first wheel at (say) 2.5, then spin around to 0 and see if it rubs. If it doesn't turn back the other way again to advance the second wheel to 5 then see if the third wheel rubs. Then go back and advance the second wheel to 7.5 and check the third wheel. Do this 16 times and you've checked all the combos beginning with 0. Reset the lock (4 spins) and try the ones that start with the first wheel at 2.5. continue this process until lock opens.

    The longest one of these has ever taken me is 20 minutes.

    --
    If a job's not worth doing, it's not worth doing right.
  46. New PIN posted *on* the door by xixax · · Score: 4, Funny

    I walked past the gym we have in the basement of our building. When too maany (non entitled) people started using it, they changed the PIN on the door. I know this because some Brainiac posted a apologetic notice on the door that helpfully included the *new* PIN for regular gym patrons.

    Unfortunately it was taken down before I could take a picture of it.

    Xix.

    --
    "Everything is adjustable, provided you have the right tools"
  47. Re:Tell you the truth I'm not happy about this. by Dun+Malg · · Score: 3, Insightful
    This is a very touchy subject and saying that alot of locksmiths were pissed off at Matt Blaze for even making that .pdf would be an understatement. Posting the link on Slashdot was just plain stupid.

    I'm a locksmith and any locksmith with half a brain should know that all of this is commonly available information. Certainly a few old fogies who think locksmithing is some sort of secret society like the Freemasons would pitch a fit if the customer wanted to see the inside of his safe lock. Or maybe they're pissed because they've been telling customers that the safes they're selling are "impenetrable", but if that's the case then they're the idiots. I have personally showed the various "safecracking" techniques to customers and let them try their hand at manipulating a combo lock. The theory is simple, but the implementation is darn near impossible without years of experience and practice. I've never had a customer decide not to buy a safe because I showed him how they're cracked and he thought it was "too easy". Basically, what it comes down to is that there's no such thing as 100% security. You Can pay more money and add more complication to get "more 9's", but a Star or Horizon in-floor burglary safe will keep out all but the most determined intruder. Honestly, any locksmith that thinks there are any "trade secrets" in the industry is foolig themselves. Anyone can get an Associated Locksmiths of America membership and a business license, and from there buy books that explain it all.

    I seriously doubt that posting this on slashdot is going to lead to a massive upswing in safecracking. The one thing I've noticed in the business is that (weird as it sounds) most people are basically honest! Besides, safecracking isn't fast enough for most criminals. Most safe burglaries happen when someone knows the combination, either having been entrusted with it, watching someone else dial it, or finding it written down in a drawer somewhere.

    --
    If a job's not worth doing, it's not worth doing right.
  48. Safe cracking/ Lock picking by Rank_Tyro · · Score: 5, Interesting

    For $35USD, and a glance at my driver's licence, I was able to purchase a lock-pick set. I was intrigued, after seeing hundreds of movies showing theives and spies opening doors faster than people with keys.
    After alot of research, and pracitice, I was able to open several brands of pad-locks, as well as the doors' to my house. Guess What? It's not as easy as it looks.
    I did this mainly out of curiosity, but I recently had a chance to put this new skill to the test.
    My neighbor had locked her keys in her house, and asked for my help. After thinking about it for 15 seconds, agreed to help.
    I broke a pane in the window of her back door. There was no way I was going to let her know that I was capable of defeating the locks on her house. I have no intrest in breaking and entering, but the fact is, if people know you can do it, and something goes missing, guess who the first suspect is going to be?
    I would love to figure out how to open a safe, not because I want to rob anyone.....it's just really cool, and the fun is in learning how to do something most people can't.

    --
    Today's show is brought to you by the number 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0: 25
    1. Re:Safe cracking/ Lock picking by YoungHack · · Score: 2, Interesting

      I once taught my Numerical Analysis class how to make a simple rake and tension wrench and use them. It was just a few pictures on the chalk board in between classes.

      About a week later, one of my students came to class very excited. He had made the tools and tried them--no success.

      Then he locked his keys in his house. His tools were sitting on the seat of his unlocked car. So he tried again. I believe he said it took him about 40 minutes to get in. Not bad for a beginner.

  49. Re:The perfect safe by Dun+Malg · · Score: 4, Informative
    The perfect safe is a computer controlled one. You can't crack a PIC controlling a solenoid-lock that is deep within the safe. And as long as there is a limit on combinations attempted per second, some sort of automatic combination guessing device is impractical, too.

    They make those, but my boss refuses to install them anymore, even if the customer wants it. We've seen too many cases of fritzed electronics, dead batteries, and broken wires with those things. I have only once seen a regular mechanical combo lock fail spectacularly, requiring drilling to open the safe, and in that case the lock "worked badly" for WEEKS beforehand (but the customer, of course, waited till it broke). Electronic locks tend to have binary failures: the work fine up until the point where they don't work at all.

    --
    If a job's not worth doing, it's not worth doing right.
  50. Re:The shocking secret the industry wants covered by dwillden · · Score: 2, Interesting
    I wonder about that story since most GSA approved security containers tend to use one of two major lock mechanisms (one is very easy to change the other moderately easy) and they both have factory zeros of 50-25-50. That was the case with the analog mechanisms. And now that I think about it, all the new digital ones have the same zero as well.

    Now I could see lazy users setting the combos to something easy to remember like 60-30-60 or such, but they don't come from the factory with either of the two settings you mentioned.

    --
    I'm too lazy to compose a creative sig.
  51. Re:"Matt Blaze" a pseudonym? by polysylabic+psudonym · · Score: 2, Informative

    According to http://www.cis.upenn.edu/departmental/faculty/ the CIS faculty of Penn Uni has a faculty member named Assoc. Prof. Matthew Blaze.

  52. Companion piece by Richard+W.M.+Jones · · Score: 3, Interesting
    Excellent companion piece, written in a very entertaining style:

    http://www.timhunkin.com/94_illegal_engineering.ht m

    Rich.

  53. Re: Multiple levels of encryption weaker? by EsbenMoseHansen · · Score: 2, Informative

    But who knows if the combined algorithm has a flaw that neither algorithm had, separated?

    As for simple layering the same protocol, consider this (silly example): Exchanging each letter with the letter n positions futher along the alphabet does not get more secure by being done multiple times.

    The same holds true for 3DES and every asymetric encryption method I have seen.

    --
    Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.
  54. [I stole this post, don't know from where] by narcc · · Score: 3, Funny

    I tried that myself with my new Quanilon(tm) quantum CPU from AMD. The problem I had, was when the cooling fan failed the CPU overheated -- causing the probability wave to colapse -- and my cat died...

  55. Re:The shocking secret the industry wants covered by HeghmoH · · Score: 4, Informative

    I believe the original poster simply misremembered the combinations mentioned in the book. My memory may have been corrupted by seeing your post, but I'm pretty sure the combinations in this story were 50-25-50 and 25-50-25.

    Oh wow, I love Amazon. Find Surely You're Joking, Mr. Feynman! on Amazon and use the search function to look for "Safecracker meets Safecracker". Click on the last link on the first page, and you can find the exact text. The combinations in the book are actually 25-0-25 and 50-25-50. It also turns out that it only opened 1/5th of the safes, not 1/3rd. That book search rules!

    --
    Mod down posts with a "Free Mac Mini/iPod" sig, they're spam!
  56. Re:The shocking secret the industry wants covered by morzel · · Score: 2, Funny
    3. Something you are
    Yeah... Because we all know it's a good idea to have criminals need (a part of) you to get access to whatever it is they want.

    I do agree with the other points though.

    --
    Okay... I'll do the stupid things first, then you shy people follow.
    [Zappa]
  57. Re:The shocking secret the industry wants covered by Randy+Wang · · Score: 4, Funny

    Bah. A real genius would set his combination to the LAST few digits of the Fibbonaci sequence ;-)

    --
    --- Egads, I glow in the dark!
  58. Re: Multiple levels of encryption weaker? by some+guy+I+know · · Score: 2, Interesting
    As for simple layering the same protocol, consider this (silly example): Exchanging each letter with the letter n positions futher along the alphabet does not get more secure by being done multiple times.
    That's true, but:
    1. Adding layers doesn't make it any less secure,
    2. Adding bits to a single key in the letter-shifting method by itself doesn't make it any more secure, and
    3. Stacking that encryption method and a second method, each with a key size of n/2, will probably be more secure than using the letter-shifting method alone with a key size of n.
    Your example caused me to think of a simplistic case where a combination of methods, each with a key size of n/number-of-methods, may be less secure than a single method with a key size of n: your letter-shifting method combined with a simple XOR method. In this case, it may be true that the combination is less secure than the XOR method by itself with twice the key size.
    This is due to the fact that the letter-shifting encryption method does not benefit at all from a larger key size, and thus taking bits from the method that does benefit from a larger key size to give it to a method that does not, will of course cause the security of the system as a whole to decrease.
    It is still more secure, though, than the letter-shifting method taken by itself.

    Now, let's assume that the flaw in the letter-shifting method wasn't discovered unitl after it been used for a few years.
    We now have three types of encryption systems (relevant to this example):
    • The system that used letter-shifting by itself, with key size n.
    • The system that used XOR by itself, with key size n.
    • The system that used the letter-shifting method in combination with the XOR method, each with key size n/2.
    After the flaw in the letter-shifting method is discovered, the people who used letter-shifting by itself are totally screwed, those who used XOR by itself are unaffected, and those who used the combination are partially-screwed.
    I'd rather be partially-screwed than totally screwed.
    The thing is, it's not possible to tell in advance whether or not a single encryption method is flawed.
    (If it were possible, such a method wouldn't have been used in the first place.)
    Using a combination of different methods is a way of avoiding putting all of one's eggs in one basket.

    Can anyone state a case where a combination of encryption methods, where each has a different key of size n/number-of-methods, is demonstrably less secure than each and every one of the methods used by itself with key size n?
    I don't see how a chain of methods could be any weaker than its weakest link, even when the weakest link, used by itself, would have a larger key size.
    --
    Those who sacrifice security to condemn liberty deserve to repeat history or something. - Benjamin Santayana
  59. Re: Multiple levels of encryption weaker? by EsbenMoseHansen · · Score: 3, Interesting

    Well, I'll try to explain why people think what you are proposing is suboptimal.

    Firstly, I think you have misunderstood what "adding extra bits" (enlarging the key) means --- at least in this context. In my (silly) example, the key had the length of 1 (number). Notice there is no bits, since the atomic unit in this encryption unit is letters. If you increase the number of bits we would have more numbers.. E.g, (1,2) would make "have" into "icwg", which would be harder to break. The scheme is actually not THAT bad --- there are methods to break this sort of encryption, but it isn't trivial. A person that has not studied cryptography would be pressed to break something like this, at least if the key length is unknown.

    If you take this method to an extreme with keys longer than the text, you would have a fair encryption method, provided that the keys are kept secret. But nevermind that.

    Now, to invent another cryptographic method, let's consider a method where the positions in the alfabet are multiplied rather than added, and the modulo of 26 is taken. So for the example key (1,2) and the word "have" the result would be "hbvj".

    How secure are these methods combined? Well, if the coded and original letters have position x and y, respectively, and we are using keys k,l with values k_1, k_2, ..., k_n and l_1, l_2, ..., l_m, where n and m are some integral numbers. Then the effort spend on encrypting the message is O(n+m). The effort spend decrypting then will only be proportional to the smallest common multiple of n and m --- it's an easy proof, so I leave it as an exercise. However, for the same effort you could have obtained and effort proportional to the multiplum... and the encryption and decryption rutines would be simpler, and thus less errorprone. That's one argument against layering encryption algorithms.

    Now, either of these algorithms may be weak --- indeed, the muliplum algorithm is for a number of reasons, most importantly the distribution of the resulting letters is not uniform. Note that if the addition is performed first, no harm is done by this, but if the multiplication is performed second, the distribution would be skewed in such a way that the addition key could be guessed from the distribution of the letters of the encoded message. This would render the combined algorithm weaker then the addition alone. This is the "real world" example you asked for... and admit it, it is not that far-fetched for a slashdot comment ;-)

    Disclaimer: I'm not really a crypto guy, just an IT specialist + mathematician.

    --
    Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.
  60. Richard Feynman - original geek safecracker by John+Jorsett · · Score: 4, Interesting

    In physicist Richard Feynman's book, "Surely You're Joking, Mr. Feynman," he talks about working on the Manhattan Project in New Mexico. He discovered he could figure out the combination to the safes they were using just by touch. So he went around to various offices and would kind of lean on the safe while chatting with the inhabitant. He'd twiddle the dial as though he were just playing around with it during the conversation, but he was really determining the combination. Eventually, he went to the security people and showed them how easy it was to crack these things, and showed how he had the combinations to many safes. Instead of improving the safes, the response of the security people was to make the occupant of every office Feynman had ever been in change the safe combination. The inhabitants were none too happy, and to avoid a repeat of the episode banned Feynman from entering their offices thenceforth. The safes were left as vulnerable as before.

  61. Re:Tell you the truth I'm not happy about this. by Dun+Malg · · Score: 2, Insightful
    The parent post was not a complaint about the information being distributed. It was a complaint about how the information was being distributed. There's a difference between making the information available to those who go looking for it(as Matt Blaze did with the .pdf,) and posting a link on Slashdot for thousands of people to see.

    Personally, I think mass public distribution is better. It better serves to destroy the "security through obscurity" mindset held by a lot of locksmiths. It's not like any of that information is a magic back door that lets one defeat safes with the wave of a hand. It's a straightforward and honest examination of the design limitations inherent in these locks. It shouldn't be "kept quiet" so that only those who think to go looking for it find out; everyone considering these for physical security should know about it. The very fact that there are locksmiths out there who think this should be kept quiet is why this needs to be broadcast as publicly as possible, because people clearly can't depend upon those particular idiot locksmiths to tell them what they have the right to know.

    --
    If a job's not worth doing, it's not worth doing right.
  62. Re: Multiple levels of encryption weaker? by EsbenMoseHansen · · Score: 2, Funny

    Please explain to me what 0.7 bits is? ;-)

    Sorry for nitpicking, but the above statement is rather silly, unless you can think up a way of generalizing the definition of a bit to include rational numbers ;-)

    As we both know, this is toally besides the point :) The point of course, was that by more bits we don't mean shifting the original letters more, we mean shifting the letters in more ways. Eh. Approximately.

    --
    Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.