$ openssl genrsa -des3 -out root.key 4096
$ openssl genrsa -aes256 -out root.key 4096
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
| # Log | |
| lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | |
| lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
| lg = !"git lg1" |
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
| #!/usr/bin/env bash | |
| function chartmuseum { | |
| # Funcs | |
| function http { | |
| FILTER="" | |
| if [[ ! -z ${map['filter']} ]]; then | |
| FILTER='.[] | to_entries | map(. | select (.key == "'${map['filter']}'" ) | {(.key): .value} ) | .[]' |
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
| #!/usr/bin/env python | |
| """Cloudflare API code - example""" | |
| import os | |
| import sys | |
| import requests | |
| from time import sleep | |
| sys.path.insert(0, os.path.abspath('..')) | |
| import CloudFlare |
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
| #!/usr/bin/env bash | |
| # Author: Lucho00Cuba (JustMe) | |
| # VARS | |
| FTP_USER="ftpuser" | |
| CFG="/etc/vsftpd.conf" | |
| SSL_ENABLED="true" | |
| SSL_CRT="" | |
| SSL_KEY="" |
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
| #!/usr/bin/env bash | |
| PLATFORM="linux" | |
| ARCH="x64" | |
| VERSION="8.0.25" | |
| INSTALLER="xampp-${PLATFORM}-${ARCH}-${VERSION}-0-installer.run" | |
| cmd(){ | |
| if [[ "$($1 &>/dev/null; echo $?)" == "0" ]]; then | |
| logger "info" "$2" |
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
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " | |
| " ██╗ ██╗██╗███╗ ███╗██████╗ ██████╗ | |
| " ██║ ██║██║████╗ ████║██╔══██╗██╔════╝ | |
| " ██║ ██║██║██╔████╔██║██████╔╝██║ | |
| " ╚██╗ ██╔╝██║██║╚██╔╝██║██╔══██╗██║ | |
| " ╚████╔╝ ██║██║ ╚═╝ ██║██║ ██║╚██████╗ | |
| " ╚═══╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ | |
| " | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
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
| #!/usr/bin/env bash | |
| PROTOCOL="http" | |
| PROMETHEUS="192.168.1.203:9090" | |
| OPTIONS="-sL" | |
| query_http(){ | |
| name=$1; request=$2; args=$3 | |
| echo $name | |
| echo "Requests: curl $OPTIONS -G $request $args 2>/dev/null" |
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
| #!/usr/bin/env python3 | |
| import sys | |
| import configparser | |
| import argparse | |
| import json | |
| import requests | |
| monitoring = {} | |
| configs = {} |
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 | |
| SOCKS_PID_FILE="/tmp/socat.pid" | |
| start_socat() { | |
| socat TCP4-LISTEN:1080,fork SOCKS4A:localhost:www.example.com:80,socksport=1080 & | |
| echo $! > "$SOCKS_PID_FILE" | |
| echo "socat started with PID $!" | |
| } |