Author Topic: blag  (Read 17024 times)

0 Members and 1 Guest are viewing this topic.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
blag
« on: March 04, 2010, 06:23:45 pm »
I liked your passwords blag.  :)

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: blag
« Reply #1 on: March 04, 2010, 07:03:26 pm »
Thanks! :D

Offline Blaze

  • x86
  • Hero Member
  • *****
  • Posts: 7136
  • Canadian
    • View Profile
    • Maide
Re: blag
« Reply #2 on: March 04, 2010, 07:40:22 pm »
Me too, now that I've read it.  Need a second mirror for the passwords?  :D
And like a fool I believed myself, and thought I was somebody else...

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: blag
« Reply #3 on: March 04, 2010, 08:37:34 pm »
Haha, I think I'm ok. Feel free to download them all, though, just in case I get asked to remove them at some point.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: blag
« Reply #4 on: March 04, 2010, 10:07:08 pm »
Er....what?

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: blag
« Reply #5 on: March 05, 2010, 12:05:17 am »

Offline Ender

  • x86
  • Hero Member
  • *****
  • Posts: 2390
    • View Profile
Re: blag
« Reply #6 on: March 05, 2010, 12:11:33 am »
iago, I just wanted to use this opportunity to thank you so much for everything that you've done for me.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: blag
« Reply #7 on: March 05, 2010, 12:39:10 am »

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: blag
« Reply #8 on: March 05, 2010, 12:48:05 am »
omg... WTF MAN??????  YOU MISSED AN XKCD REFERENCE. I HATE YOU FOREVER


http://xkcd.com/148/

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: blag
« Reply #9 on: March 05, 2010, 08:28:44 am »
Heh, when I hear 'blag' I think of a show that none of you (except Blaze) have ever heard of, probably: Corner Gas.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: blag
« Reply #10 on: March 05, 2010, 01:07:40 pm »
Heh, when I hear 'blag' I think of a show that none of you (except Blaze) have ever heard of, probably: Corner Gas.


I think I've even watched an episode, but that's only because you made me. :)

Offline while1

  • x86
  • Hero Member
  • *****
  • Posts: 1013
    • View Profile
Re: blag
« Reply #11 on: March 14, 2010, 11:32:45 pm »
rabbot fails.
I tend to edit my topics and replies frequently.

http://www.operationsmile.org

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: blag
« Reply #12 on: March 15, 2011, 06:15:51 pm »
I liked the last two posts on your blag.  They were cool.  I especially liked the Taco Bell programming bit.  I've never used xargs in that way, but I definitely will be doing so in the future.

This seems like a solid (ish) way to generate random salts in PHP. Thoughts?

Code: [Select]
$salt = md5(rand() . microtime())

It seems to me that this is about as good as it gets.  Some of the things people come up with are a lot more convoluted than this, which puzzles me.

Offline while1

  • x86
  • Hero Member
  • *****
  • Posts: 1013
    • View Profile
Re: blag
« Reply #13 on: March 15, 2011, 11:10:22 pm »
I liked the last two posts on your blag.  They were cool.  I especially liked the Taco Bell programming bit.  I've never used xargs in that way, but I definitely will be doing so in the future.

This seems like a solid (ish) way to generate random salts in PHP. Thoughts?

Code: [Select]
$salt = md5(rand() . microtime())

It seems to me that this is about as good as it gets.  Some of the things people come up with are a lot more convoluted than this, which puzzles me.

Shit, no wonder my salts always get cracked.

Code: [Select]
$salt = md5(rand() . $penisLen)
I tend to edit my topics and replies frequently.

http://www.operationsmile.org

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: blag
« Reply #14 on: March 15, 2011, 11:12:49 pm »
That code is equivalent to

Code: [Select]
$salt = md5(rand() . 0);
Better than the nonsense code in iago's blog, but could be better.