Skip to content

Instantly share code, notes, and snippets.

wget -c "https://boot.netboot.xyz/ipxe/netboot.xyz.lkrn" -O /boot/netboot.xyz.lkrn && \
cat > /etc/grub.d/40_custom <<EOF
#!/bin/sh
exec tail -n +3 \$0
menuentry 'netboot.xyz' {
set root='hd0,msdos1'
linux16 /netboot.xyz.lkrn
}
EOF
update-grub
@fcenobi
fcenobi / smtp-test.ps1
Created July 21, 2019 17:50 — forked from jpoehls/smtp-test.ps1
SMTP Test Script (in PowerShell)
$smtp = New-Object System.Net.Mail.SmtpClient
$smtp.Host = "127.0.0.1"
$smtp.Port = 587
$creds = New-Object System.Net.NetworkCredential
# $currentCreds = Get-Credential
$creds.Domain = ""
$creds.UserName = "my_user" # $currentCreds.UserName
$creds.Password = "my_pass" # $currentCreds.GetNetworkCredential()
@fcenobi
fcenobi / README-create-debian-startup-script.md
Created June 8, 2019 22:54 — forked from drmalex07/README-create-debian-startup-script.md
An example of how to create a init.d script in Debian, using dependency booting. #debian #init.d #lsb-script #startup-script
@fcenobi
fcenobi / zerotier_rules_example.ztrd
Created May 23, 2019 21:58 — forked from adamierymenko/zerotier_rules_example.ztrd
An example of what an advanced ZeroTier network rule set might look like
# This is an example from a work in progress, so final versions might
# be slightly different. Don't use as a guide after release!
# Define rule set macros
# Whitelist a TCP destination port on the network. Use this as a template to
# make your own rule sets for more advanced criteria like tag matches, etc.
# This works for both IPv4 and IPv6. Add an ethertype match to restrict it to
# one or the other.
macro tcp_whitelist_dest_port($port)