17

Ideas for a strong password:

- a regex matching my laptop's LAN IP address
- a sed command to enable X11 forwarding in sshd_config
- a shell oneliner extracting all the IP addresses from ifconfig / ip a sh
- an awk command to print processes in D state
-

Chip in!

Comments
  • 3
    You mean as regex:

    /127\.0\.0\.1/

    But with your own IP?
  • 2
    @Codex404 Since when is 127.x.x.x LAN's IP address? :D

    That aside - I mean smth like (10.41.69.218):

    ^([104]{1,3}\.){1,3}(9|6|17)+\.[a-zA-Z0-5]18$

    Well maybe smth a little simpler than that, but you get the idea :)

    Patterns I use often, just with some noise that would also be sensible to me (i.e. easy to remember what is the noise I added and why in those particular places)
  • 2
    @netikras I'm saying with your own IP :)

    Your example makes more sense though.
  • 3
    a randomly generated password by your favorite password manager? (but I get that some passwords need to be memorable)
  • 1
    Or just any tar command
  • 0
    well, do something with /dev/*random I guess.
  • 1
    The keys you try the first time you try to quit vim
  • 0
    @theuser Good luck making a 30+ symbols' password out of /dev/urandom and remembering it!
  • 0
    Some longer word that is easy to type with some letters replaced by punctuation, L = , etc
  • 3
    correct horse battery staple
  • 0
    @kleopi that password is probably the worst good password one can choose.
  • 0
  • 1
    Your name converted into base64
  • 2
    - Draw some shapes on your keyboard like a rectangle + a circle and some zig zag lines.
  • 1
    @gitreflog patterns! Love it!

    Though it might be difficult with different layouts on different computers.
Add Comment