Skip to content

Instantly share code, notes, and snippets.

View LevitatingBusinessMan's full-sized avatar
🕴️
Ricing my polybar...

Rein Fernhout LevitatingBusinessMan

🕴️
Ricing my polybar...
View GitHub Profile
@LevitatingBusinessMan
LevitatingBusinessMan / slimcgi
Created December 11, 2024 03:49
Like slimrb but sets headers and exposes CGI
#!/usr/bin/env ruby
require "cgi"
require "slim"
$cgi = CGI.new
$cgi.out("text/html") do
Slim::Template.new { ARGF.read }.render
end
#!/usr/bin/env ruby
volumes = `run0 btrfs subvolume list -p #{ARGV[0] || "/"}`.lines.map do
|l| l.match /^ID (?<ID>\d+) gen (?<GEN>\d+) parent (?<PARENT>\d+) top level (?<TOPLEVEL>\d+) path (?<PATH>\S+)$/
end
edges = volumes.map do
|v| "#{v[:PARENT]!="5" ? "\"#{volumes.find{|p| p[:ID] == v[:PARENT]}[:PATH]}\" -> \"#{v[:PATH]}\"" : "\"#{v[:PATH]}\""};\n"
end
puts "digraph {\n#{edges.map{|e|"\t"+e}.join}}"
@LevitatingBusinessMan
LevitatingBusinessMan / opensuse
Last active November 25, 2024 18:32
My bedrock brl-fetch script for opensuse tumbleweed
#!/bedrock/libexec/busybox sh
#
# OpenSUSE bootstrap support
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# Copyright (c) 2016-2021 Rein Fernhout (LevitatingBusinessMan) <me@levitati.ng>
#
@LevitatingBusinessMan
LevitatingBusinessMan / vmware-loempiashop.md
Last active November 5, 2024 17:46
de loempiashop gemaakt met vmware

Een loempiashop box maken met VMWare

Na het success van de lxc nu de vmware variant.

Downloaden van de image

Je kan de Debian cloud vm hier vinden: https://www.debian.org/distrib/

Download dan de "local QEMU virtual machine" in qcow2 format.

Of volg deze link (bookworm release):

@LevitatingBusinessMan
LevitatingBusinessMan / archnews
Created October 16, 2024 09:16
Print archnews rss feed
#!/usr/bin/env ruby
require 'rss'
require 'open-uri'
require 'rainbow/refinement'
using Rainbow
puts 'https://archlinux.org/'
url = 'https://archlinux.org/feeds/news/'
URI.open(url) do |rss|

Een loempiashop box maken met lxc

LXC installatie

lxc kan geintalleerd worden op praktish alle distributies met de lxc package.

Een container aanmaken

Als root maken we een debian bookworm container aan met de naam "loempiashop".

root@r-mint ~# lxc-create --name loempiashop --template download -- --dist debian --release bookworm --arch amd64
Downloading the image index
Downloading the rootfs
Downloading the metadata
@LevitatingBusinessMan
LevitatingBusinessMan / out.dot
Created October 13, 2024 20:27
this sentence has
digraph {
20
21
22
23
24
25
26
27
28
@LevitatingBusinessMan
LevitatingBusinessMan / loempiashop_sqlmap.txt
Created October 8, 2024 14:15
sqlmap op de loempiashop
$ sqlmap http://localhost/item.php?id=1 --batch --dump
___
__H__
___ ___["]_____ ___ ___ {1.8.8#stable}
|_ -| . [,] | .'| . |
|___|_ [']_|_|_|__,| _|
|_|V... |_| https://sqlmap.org
[!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program
@LevitatingBusinessMan
LevitatingBusinessMan / ngircd
Created August 22, 2024 17:54
ngircd PAM config for FreeBSD
auth requisite pam_group.so group=irc luser no_warn
auth required pam_unix.so no_warn
[Match]
Name=eth0
[Network]
Address=10.20.30.40/24
Address=10.20.30.135/24
Gateway=10.20.30.1
DNS=10.20.30.1
From=10.20.30.40