HackerTrans
トップ新着トレンドコメント過去質問紹介求人

HeadlessChild

75 カルマ登録 12 年前

投稿

MD5 Implemented in Bash

youtube.com
3 ポイント·投稿者 HeadlessChild·12 日前·2 コメント

コメント

HeadlessChild
·一昨日·議論
OT: This commercial video is gorgeous looking and I adore the actors!
HeadlessChild
·12 日前·議論
Here is the actual code: https://github.com/bahamas10/bash-md5
HeadlessChild
·12 日前·議論
Dave from the YouTube channel You Suck At Programming implemented the MD5 algorithm in pure Bash.
HeadlessChild
·24 日前·議論
It is nice for a basic port knocking as well.

   timeout 5s bash -c "echo >/dev/tcp/google.com/443" && echo "port open" || echo "port closed"
This uses the timeout command from coreutils though, so it is not a pure bash implementation.
HeadlessChild
·3 か月前·議論
Try running traceroute against the bad.horse address for a chuckle.

EDIT: You probably to increase the maximum hop count for it to fully work.
HeadlessChild
·7 か月前·議論
An engineer at my work literally designed the processor architecture that lives in our products but he is more or less computer illiterate.
HeadlessChild
·9 か月前·議論
/dev/null as a service.
HeadlessChild
·5 年前·議論
One needs to lookout for their config file being overwritten [1] if another ansible.cfg exist. In my case my ~/.ansible.cfg config got overwritten by a local ./ansible.cfg (as per the order the config files are read [2]) in a project directory.

In my case I workaround it by _merging_ all potential config files into one at runtime using `crudini` as demonstrated by rsguhr [3].

[1] https://github.com/ansible/proposals/issues/35

[2] https://docs.ansible.com/ansible/2.4/intro_configuration.htm...

[3] https://gitlab.com/-/snippets/1851171