Install aircrack-ng from your package manager.
Ex: sudo apt install aircrack-ng
| import requests | |
| URL = "..." | |
| def hexify(password: str) -> str: | |
| realpass = "" | |
| for i in password: | |
| if i == "_": | |
| realpass += "__" |
| #!/bin/bash | |
| # Daniel Norhøj <daniel@dnorhoj.me> | |
| # This script checks all x.509 certificates in the specified directory | |
| # and prints the expiration date of each certificate. | |
| # Usage: ./check_certificates.sh /path/to/certificates | |
| # The script expects the certificates to be in PEM format. | |
| # The script expects the certificates to be named like this: |
| #!/bin/bash | |
| # 2024 - Daniel Norhøj <daniel@dnorhoj.me> and Super02 | |
| # This script is used to manage the sites on the server. | |
| # It is used to add, remove, and list sites. | |
| # This version of site-manager does not handle dns, instead you should use the following certbot command: | |
| # | |
| # sudo certbot certonly --dns-cloudflare --dns-cloudflare-credentials /root/.secrets/cloudflare.ini -d example.com,\*.example.com --preferred-challenges dns-01 |
| from random import randrange | |
| from datetime import datetime | |
| from time import time | |
| from colorama import init | |
| init() | |
| from termcolor import cprint, colored | |
| START_DATE = datetime(year=2022, month=1, day=1) |
I hereby claim:
To claim this, I am signing this object:
| # To use this script you need these dependencies: i3lock-color, ImageMagick 7+ | |
| timeposx=100 | |
| timeposy=$((screenH-150)) | |
| dateposy=$((timeposy+60)) | |
| timefont="Monospace bold" | |
| green=00ff99c0 | |
| red=ff5050c0 |