Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. The Weird and The Wonderful
  4. Security through, er, idiocy?

Security through, er, idiocy?

Scheduled Pinned Locked Moved The Weird and The Wonderful
securityquestion
9 Posts 6 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    Rob Grainger
    wrote on last edited by
    #1

    No comment needed...

    If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

    "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

    L N Z K Sander RosselS 5 Replies Last reply
    0
    • R Rob Grainger

      No comment needed...

      If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

      "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      On a positive note, they've got enough characters and included punctuation :laugh:

      How do you know so much about swallows? Well, you have to know these things when you're a king, you know.

      1 Reply Last reply
      0
      • R Rob Grainger

        No comment needed...

        If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

        "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

        N Offline
        N Offline
        newton saber
        wrote on last edited by
        #3

        According to http://xkcd.com/936/ -- password strength[^] that is the strongest password in the universe. :laugh: Albeit, cleartext does tend to make things a bit easier to hack. :)

        L 1 Reply Last reply
        0
        • R Rob Grainger

          No comment needed...

          If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

          "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

          Z Offline
          Z Offline
          ZurdoDev
          wrote on last edited by
          #4

          Like. :thumbsup: :-\

          There are only 10 types of people in the world, those who understand binary and those who don't.

          1 Reply Last reply
          0
          • R Rob Grainger

            No comment needed...

            If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

            "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

            K Offline
            K Offline
            kmoorevs
            wrote on last edited by
            #5

            Ha! :thumbsup: A few of our screens are protected with a password of WMTSU and some numbers. Easy to remember: we're making this stuff up! :laugh:

            "Go forth into the source" - Neal Morse

            1 Reply Last reply
            0
            • R Rob Grainger

              No comment needed...

              If (InputBox("Access is highly restricted. Please enter the password: ") = "nooneneedstoseethisscreensokeepoutyoumonkey.") Then

              "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

              Sander RosselS Offline
              Sander RosselS Offline
              Sander Rossel
              wrote on last edited by
              #6

              At my former employer we had a small config app with such a password baked into the code. It ran with all our clients on many computers. The regular user couldn't change the configs and we, and admins at the customers, always knew the password. A bit more secure than a regular config file or a non-password protected config app. It did the job! :thumbsup: I wouldn't use it on a website or anything though :laugh:

              My blog[^]

              public class SanderRossel : Lazy<Person>
              {
              public void DoWork()
              {
              throw new NotSupportedException();
              }
              }

              R 1 Reply Last reply
              0
              • Sander RosselS Sander Rossel

                At my former employer we had a small config app with such a password baked into the code. It ran with all our clients on many computers. The regular user couldn't change the configs and we, and admins at the customers, always knew the password. A bit more secure than a regular config file or a non-password protected config app. It did the job! :thumbsup: I wouldn't use it on a website or anything though :laugh:

                My blog[^]

                public class SanderRossel : Lazy<Person>
                {
                public void DoWork()
                {
                throw new NotSupportedException();
                }
                }

                R Offline
                R Offline
                Rob Grainger
                wrote on last edited by
                #7

                Even in those circumstances, the password should at the very least be encrypted. Further, should it become necessary to change the password, your app will have to be rebuilt. There are many, many better alternatives.

                "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                Sander RosselS 1 Reply Last reply
                0
                • R Rob Grainger

                  Even in those circumstances, the password should at the very least be encrypted. Further, should it become necessary to change the password, your app will have to be rebuilt. There are many, many better alternatives.

                  "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                  Sander RosselS Offline
                  Sander RosselS Offline
                  Sander Rossel
                  wrote on last edited by
                  #8

                  Rob Grainger wrote:

                  the password should at the very least be encrypted.

                  Why? It wasn't a big secret. Just some local configuration...

                  Rob Grainger wrote:

                  should it become necessary to change the password

                  That was the beauty of it, the password was always the same!

                  Rob Grainger wrote:

                  There are many, many better alternatives

                  I know, I'd actually never use such a solution. I'm just saying it did the job of keeping users out and letting admins in ;)

                  My blog[^]

                  public class SanderRossel : Lazy<Person>
                  {
                  public void DoWork()
                  {
                  throw new NotSupportedException();
                  }
                  }

                  1 Reply Last reply
                  0
                  • N newton saber

                    According to http://xkcd.com/936/ -- password strength[^] that is the strongest password in the universe. :laugh: Albeit, cleartext does tend to make things a bit easier to hack. :)

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #9

                    erm. the password to 'something in our network' (I wn't say what just in case!!!) is actually "correcthorsebatterystaple"

                    PooperPig - Coming Soon

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups