Skip to content

Instantly share code, notes, and snippets.

View rb-x's full-sized avatar
💭
🌡 Grinding

rb-x rb-x

💭
🌡 Grinding
  • /proc/self
View GitHub Profile
@rb-x
rb-x / nmap_examples.md
Created November 8, 2023 18:26 — forked from rsperl/nmap_examples.md
nmap examples #snippet
@rb-x
rb-x / signing-vbox-kernel-modules.md
Created July 30, 2022 20:10 — forked from reillysiemens/signing-vbox-kernel-modules.md
Signing VirtualBox Kernel Modules

Signing VirtualBox Kernel Modules

These are the steps I followed enable VirtualBox on my laptop without disabling UEFI Secure Boot. They're nearly identical to the process described on [Øyvind Stegard's blog][blog], save for a few key details. The images here are borrowed from the [Systemtap UEFI Secure Boot Wiki][systemtap].

  1. Install the VirtualBox package (this might be different for your platform).
    src='https://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo'
@rb-x
rb-x / install_sign_reload_vmware.sh
Created May 11, 2022 11:45 — forked from 0x4d4e/install_sign_reload_vmware.sh
Install VMware Workstation modules and sign for SecureBoot
#!/bin/bash
echo "> Building VMware modules..."
systemctl stop vmware.service
vmware-modconfig --console --install-all
echo "> Signing modules ..."
/usr/src/kernels/$(uname -r)/scripts/sign-file sha256 /root/module_sign/MOK.priv /root/module_sign/MOK.der $(modinfo -n vmmon)
/usr/src/kernels/$(uname -r)/scripts/sign-file sha256 /root/module_sign/MOK.priv /root/module_sign/MOK.der $(modinfo -n vmnet)