Researched by Robert Quattlebaum [email protected].
Last updated 2020-02-03.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="main"></div> | |
| <br/> | |
| <button id="clear">Clear</button> | |
| <button id="fill">Fill</button> | |
| <button id="load">Load</button> | |
| <br/> | |
| <br/> | |
| <textarea id="output"></textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # script generates a GPG master key with Certify+Sign capabilities, and two subkeys each possessing the Encrypt and Authenticate capabilities. | |
| # intended to fill the 3 slots on a YubiKey <https://www.yubico.com/products/yubikey-hardware/> or OpenPGP card <https://g10code.com/p-card.html> | |
| # allows selection of variables via a single dependency besides GnuPG 2.x: dialog | |
| # kevin gallagher (@ageis) <[email protected]> | |
| function gen_smartcard_key() { | |
| local GPG_KEY_ALGO="RSA" | |
| local GPG_KEY_CREATION_DATE="$(date +%Y-%m-%d)" | |
| if [[ -z "${GNUPGHOME}" ]]; then |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # kevin gallagher (@ageis) <[email protected]> | |
| # normally I divide this into separate files: .bashrc, .bash_profile, .bash_aliases and .bash_functions (also .bash_logout), but it's all concatenated here. | |
| ulimit -s unlimited | |
| export MYUID=$(id -u) | |
| export USER="$(id -un)" | |
| if [[ "$TILIX_ID" ]] || [[ "$VTE_VERSION" ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: m5cam_esp32_camera | |
| platform: ESP32 | |
| board: m5stack-core-esp32 | |
| wifi: | |
| ssid: !secret wifi | |
| password: !secret wifi_pw | |
| # Enable logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
| default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
| default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # simplistic program that creates passphrases using bash. the passphrases | |
| # are a Number of '-' separated words, ea. of max Chars, with limited post | |
| # processing (upper case, lower case, 1337.) | |
| # | |
| # (c) 2019, thaddeus t. grugq <[email protected]> | |
| # | |
| CRACKLIB=/usr/share/dict/cracklib-small |

