Skip to content

Instantly share code, notes, and snippets.

/* Melbus CDCHGR Emulator
* Program that emulates the MELBUS communication from a CD-changer (CD-CHGR) in a Volvo V70 (HU-xxxx) to enable AUX-input through the 8-pin DIN-contact.
* This setup is using an Arduino Nano 5v clone
*
* The HU enables the CD-CHGR in its source-menue after a successful initialization procedure is accomplished.
* The HU will remove the CD-CHGR everytime the car starts if it wont get an response from CD-CHGR (second init-procedure).
*
* Karl Hagström 2015-11-04
* mod by S. Zeller 2016-03-14
*
@system1357
system1357 / blacklist.txt
Created December 8, 2023 14:24
elf ip blacklist
1.0.153.46
1.0.159.34
1.1.129.181
1.1.130.107
1.1.135.147
1.1.135.98
1.1.152.98
1.1.161.193
1.1.162.33
1.1.163.102
@system1357
system1357 / 0001-patch-cm4.patch
Created December 4, 2023 03:33
ClockworkPi RPi-6.1.y patch
diff --git a/arch/arm/boot/dts/overlays/Makefile b/arch/arm/boot/dts/overlays/Makefile
index 14ce8e7833d6..22d7fae2bf87 100644
--- a/arch/arm/boot/dts/overlays/Makefile
+++ b/arch/arm/boot/dts/overlays/Makefile
@@ -41,6 +41,12 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
cirrus-wm5102.dtbo \
cm-swap-i2c0.dtbo \
cma.dtbo \
+ devterm-bt.dtbo \
+ devterm-misc.dtbo \
@system1357
system1357 / mitm-mi-rc4.py
Created October 13, 2023 09:28 — forked from Wh1terat/mitm-mi-rc4.py
mitmproxy contentview for Mi RC4 messages
from typing import Optional
from mitmproxy import contentviews, flow, http, ctx
from base64 import b64decode, b64encode
import hashlib
import json
ssecurity = None
@system1357
system1357 / rds_ct_gen.c
Last active September 22, 2023 09:37
RDS Group 4 CT(time) generation script
#include <stdint.h>
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
uint16_t blocks[3];
void main(){
// Check time
time_t now;