When installed, running:
cat /dev/scream | head -c 100
Prints:
aHAAhhaHHAAHaAaAAAAhhHhhAAaAAAhAaaAAAaHHAHhAaaaaAaHahAaAHaAAHaaHhAHhHaHaAaHAAHaAhhaHaAaAA
Download file
git clone https://github.com/matlink/dev_scream && cd dev_scream
make build
sudo make install
sudo make load
sudo make clean
# Installed modules, see #7
lsmod # List modules
sudo modprobe one # Load one driver => creates /dev/one
sudo depmod # Re-create the module dependency list
sudo modprobe -r one # Load one driver => removes /dev/one
# Keys
sudo mokutil --list-new # List key that will be added at boot
sudo mokutil --reset # Delete future keys
sudo cat /proc/keys # View your installed keys
dmesg -wH # Kernel log like tail -f
- Based on https://github.com/tinmarino/dev_one
- Device Driver: https://www.apriorit.com/dev-blog/195-simple-driver-for-linux-os
- Signing driver: https://gist.github.com/Garoe/74a0040f50ae7987885a0bebe5eda1aa
- Mok: https://ubuntu.com/blog/how-to-sign-things-for-secure-boot
This project, DevOne, is licensed under the GPL v2.0 or later Copyright © 2020-2022 Martin Tourneboeuf (https://tinmarino.github.io)