This file contains 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 sh | |
# modified version of "detect.sh" from https://www.openwall.com/lists/oss-security/2024/03/29/4 | |
set -eu | |
# find path to liblzma dep for sshd (empty if not found) | |
path_to_lib="$(ldd "$(which sshd)" | grep liblzma | grep -o '/[^ ]*' || echo '')" | |
if [ "$path_to_lib" = "" ]; then | |
echo "your sshd does not depend on liblzma" |
This file contains 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
import sys | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.chrome.options import Options | |
email_pwd = { | |
'[email protected]': 'micaballocaminapalante', | |
'[email protected]': 'estanolahackean' |
This file contains 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
alias watch="run_on_change"; run_on_change() { | |
color_command(){ | |
# Modify these values to change behavior | |
pass_terms="pass|ok" | |
fail_terms="fail|failed" | |
pass_color=$'\e[1;32m' | |
fail_color=$'\e[1;31m' | |
reset_color=$'\e[0m' | |
colored_pass_terms="✅ ${pass_color}&${reset_color}" |