Skip to content

Instantly share code, notes, and snippets.

View rohan-molloy's full-sized avatar

Rohan rohan-molloy

View GitHub Profile
@rohan-molloy
rohan-molloy / tlsRandomArt.sh
Created September 7, 2019 12:33
Display SSH style random art of a TLS server
#! /bin/bash
echo \
| openssl s_client -connect $1 -CAfile $CAfile \
| openssl x509 -noout -pubkey \
| ssh-keygen -vi -m PKCS8 -f /dev/stdin \
| ssh-keygen -vlf /dev/stdin

Ask yes/no in Bash

read -r -p "Are you sure? [y/N] " response
case "$response" in
    [yY][eE][sS]|[yY]) 
        do_something
        ;;
    *)
 do_something_else
@rohan-molloy
rohan-molloy / 999-most-common-words.txt
Last active April 7, 2022 13:54
1000 Most Frequently Used English Words
Ability
Able
About
Above
Accept
According
Account
Across
Act
Action
@rohan-molloy
rohan-molloy / prosody.cfg.lua
Created August 13, 2019 06:36
A clean config for prosody xmpp server
admins = {}
modules_enabled = {
"roster"; "saslauth"; "tls"; "private"; "vcard"; "uptime"; "time"; "ping"; "pep"; "admin_adhoc";"posix"; "mod_log_auth"; "disco";
};
modules_disabled = {
"offline"; "s2s";
};

In order to be issued a certificate, Let's Encrypt needs to verify you have control over the domain. This process is automated through challenges, such as setting up a local webserver, or adding DNS TXT records. I don't like the DNS-TXT challenge, as it requires giving every host a DNS service account.

I came up with my own solution. The .well-known/acme-challenge can be hosted using S3, allowing Let's Encrypt to perform an HTTP-01 challenge.

This method requires the least amount of privileges on the host (no ports need to be open)

Why do internal hosts need valid certs?

The primary reason I want internal hosts to have valid certs is quite simple - invalid/untrusted certificates break things! A secondary reason is that constant browser warning are annoying and false alarms are detrimental to security.

@rohan-molloy
rohan-molloy / lines-without-ending-semicolon.md
Last active December 25, 2018 10:21
Print lines that do not end in semicolon

Print lines that do not end in semicolon

awk '!/;\s*$/'

@rohan-molloy
rohan-molloy / Regular_Expression_for_IPv4_Address.md
Created December 19, 2018 12:13
Regular Expression for IPv4 Address

Regular Expression for IPv4 Address

grep -E '\b(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\b'

server.socket = "0.0.0.0:443"
server.username = "lighttpd"
server.groupname = "lighttpd"
server.modules = (
"mod_openssl",
"mod_proxy",
"mod_dirlisting",
"mod_access",
"mod_compress",
"mod_auth"
@rebane2001
rebane2001 / lasermouse.py
Created September 27, 2018 19:19
Simple script to control your mouse pointer with a laser and a webcam (only works on Windows)
import cv2
import numpy as np
import win32api, win32con
import math
webcam_x = 640 #Set webcam resolution
webcam_y = 640
screen_x = 1280 #Set screen resolution
screen_y = 1024