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 python3 | |
import re | |
from collections import defaultdict | |
# Path to the auth.log file | |
LOG_FILE = '/var/log/auth.log' | |
# Function to parse the log file and count failed login attempts per IP address | |
def parse_ssh_failed_attempts_by_ip(log_file): |
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
<# | |
.SYNOPSIS | |
Script to modify a WinPE ISO to prevent the "Press Any Key To Boot From..." prompt for UEFI deployments. | |
.DESCRIPTION | |
Script to modify a WinPE ISO to prevent the "Press Any Key To Boot From..." prompt for UEFI deployments. | |
Modified from: https://www.deploymentresearch.com/a-good-iso-file-is-a-quiet-iso-file | |
.NOTES |
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 bash | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} | |
PROGRAM="${0##*/}" | |
ARGS=( "$@" ) | |
SELF="${BASH_SOURCE[0]}" |
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 bash | |
die() { | |
echo "[-] Error: $1" >&2 | |
exit 1 | |
} | |
PROGRAM="${0##*/}" | |
ARGS=( "$@" ) | |
SELF="${BASH_SOURCE[0]}" |
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 bash | |
while IFS= read -r line; do | |
git clone "https://github.com/${line}" | |
done <<< "$(gh repo list | cut -f1)" |
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
#!/bin/bash | |
## Function to simply pipe nginx logs to goaccess | |
function _goaccessnginx(){ | |
user_input="${1}" | |
[[ "${user_input}" == "html" ]] | |
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
// ==UserScript== | |
// @name Jira Dark Theme | |
// @version 1.0.0 | |
// @description Dark Theme For Jira | |
// @author @ConnerWill | |
// @include *ENTER-URL-HERE* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=atlassian.net | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== |
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
#!/bin/env bash | |
### | |
# | |
# Here's what the function does: | |
# | |
# Defines variables for the remote server's username, hostname, directory to be backed up, and the local directory where the backup will be stored. | |
# | |
# It also defines a variable for the path to a file containing any files or directories to be excluded from the backup. | |
# |
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
# shellcheck disable=2148,2296,2154 | |
zsh-list-keybindings(){ | |
typeset -A Zcolors | |
# Regular Colors | |
Zcolors[Color_Off]='[0m' | |
Zcolors[Black]='[30m' | |
Zcolors[Red]='[38;5;196m' | |
Zcolors[Green]='[38;5;46m' |
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
# NOTICE: This project has been moved to its own repository https://github.com/ConnerWill/Convert-ImageToASCIIArt | |
function Convert-ImageToAsciiArt { | |
<# | |
.SYNOPSIS | |
Function to convert an image to ascii art. | |
.DESCRIPTION | |
The function Convert-ImageToAsciiArt takes an image file path and converts the image to ASCII art. | |
The ASCII art is created by replacing each pixel in the image with an ASCII character based on the brightness of the pixel. |
NewerOlder