Skip to content

Instantly share code, notes, and snippets.

@randy3k
randy3k / x-forwarded-for.md
Last active December 3, 2024 17:57
Spoofing X-Forwarded-For
curl -H "X-Forwarded-For: 1.2.3.4" https://example.com

doesn't work for cloudflare proxied domain if it is specifically removed.

We may be still able to "workaround" it by connecting directly to the server.

curl -H "X-Forwarded-For: 1.2.3.4" --resolve example.com:443:$SERVER_IP https://example.com
@randy3k
randy3k / hostapd.md
Last active December 15, 2024 06:11
How to enable wireless ap

/etc/hostapd/hostapd.conf

interface=wlan0
ssid=wifiname
hw_mode=g
channel=6
ieee80211n=1
wpa=2
wpa_passphrase=password
wpa_key_mgmt=WPA-PSK
@randy3k
randy3k / dhcp2dns.rsc
Last active December 8, 2024 01:07
Mikrotik DHCP2DNS
:local LowCase do={
:if ([:len $1]=0) do={:return "";}
:local C ("\41","\42","\43","\44","\45","\46","\47","\48","\49","\4A","\4B","\4C","\4D","\4E","\4F","\50","\51","\52","\53","\54","\55","\56","\57","\58","\59","\5A","\61","\62","\63","\64","\65","\66","\67","\68","\69","\6A","\6B","\6C","\6D","\6E","\6F","\70","\71","\72","\73","\74","\75","\76","\77","\78","\79","\7A");
:local L ("\61","\62","\63","\64","\65","\66","\67","\68","\69","\6A","\6B","\6C","\6D","\6E","\6F","\70","\71","\72","\73","\74","\75","\76","\77","\78","\79","\7A","\61","\62","\63","\64","\65","\66","\67","\68","\69","\6A","\6B","\6C","\6D","\6E","\6F","\70","\71","\72","\73","\74","\75","\76","\77","\78","\79","\7A");
:local o "";
:for i from=0 to=([:len $1]-1) do={:if ([:len [:find $C [:pick $1 $i]]]!=0) do={:set $o ($o.[:pick $L [:find $C [:pick $1 $i]]]);} else={:set $o ($o.[:pick $1 $i]);}}
:return $o;
}
:local CharReplace do={
@randy3k
randy3k / exfat_mount.md
Last active December 3, 2024 18:00
How to mount an exfat and ext4 drive

Mount autmoatically

Use blkid /dev/xxxx to determine UUID of a partition. Then add the following line in /etc/fstab, where UUID should not be quoted.

UUID=XXXX-XXXX  /mnt/media  exfat  defaults,nofail,uid=1000,gid=1000,umask=0022  0  2

Mount manually

@randy3k
randy3k / update-dns-v2.py
Created September 12, 2024 17:46
Cloudflare dns update
import CloudFlare
import requests
myip = requests.get('https://api.ipify.org').content.decode('utf8')
cf = CloudFlare.CloudFlare(token='<TOKEN>')
zones = cf.zones.get(params={'name': '<DOMAIN>'})
if not zones:
raise Exception("zone not found")
@randy3k
randy3k / cloudflare.ini
Created September 4, 2024 19:08
Docker setup for letsencrypt certbot cloudflare
dns_cloudflare_api_token = <CLOUDFLARE-API-TOKEN>
@randy3k
randy3k / homeassistant.conf
Last active September 16, 2024 05:12
Relying homeassistant and octoprint login errors to host rsyslog
# /etc/rsyslog.d/homeassistant.conf on client
# Enabling logging in HA
# logger:
# logs:
# homeassistant.components.http.ban: warning
if ($programname == 'homeassistant' and $msg contains 'Login attempt or request with invalid authentication') then {
$ActionQueueFileName fwdRule1
$ActionQueueMaxDiskSpace 1g
@randy3k
randy3k / netcat.txt
Last active August 25, 2024 04:01
rsyslog netcat example
# 134 = 16 * 8 + 6, i.e. facility = local0 and severity = info
echo "<134>1 - $HOSTNAME $PROGRAMNAME - - hello world" | nc -u -w 0 $DEST 514
@randy3k
randy3k / ender-5-pro-cura-g-code-end
Last active March 24, 2025 05:44
Ender 5 Pro Cura G-code
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positionning
G1 X0 Y0 ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
@randy3k
randy3k / systemd-journal-gatewayd.md
Last active April 15, 2023 06:55
Fix systemd-journal-gatewayd bug in Home Assistant
sudo rm -rf /run/systemd-journal-gatewayd.sock
sudo touch /run/systemd-journal-gatewayd.sock
sudo reboot
vim /lib/systemd/system/systemd-journal-gatewayd.socket
[Socket]