Author Archives
Information Security Practitioner
-
Replacing the Default Splunk Web SSL Certificate
This post goes over how to sign a SplunkWeb Certificate Signing Request (CSR) using my Root CA in pfSense. I do not cover creating the Root CA. Step 1: Create the directory for the certificates
1splunk@siem:~$ mkdir /opt/splunk/etc/auth/certsStep 2: Generate the… Read More ›
-
Working with Raw LVM Disk Images
Mounting disk images on Linux is fairly straight forward, however an image with a Logical Volume Manager (LVM) partition requires a little more attention. The first thing I do is find out some information about the image(s):
12345root@box:# fdisk -l -o Device,Type,Size disk.imgDevice Type Sizedisk.img1 Linux 1Gdisk.img2 Linux LVM 952.9G-l lists… Read More ›
-
Slackware LVM over LUKS
This is mostly a post to document my process of setting up Full Disk Encryption (FDE) using the Linux Unified Key Setup (LUKS) and the Logical Volume Manager (LVM). Most major distributions already enable this process at installation, however Slackware… Read More ›
-
Using NetworkManager with DNSMasq and Slackware
dnsmasq on Slackware 14.2 is compiled without D-Bus.
12lab$ dnsmasq -v | grep optionsCompile time options: IPv6 GNU-getopt no-DBus i18n no-IDN DHCP DHCPv6 <snip> ...The logs show NetworkManager trying to start dnsmasq, but failing:
123dnsmasq[4466]: DBus not available: set HAVE_DBUS in src/config.hdnsmasq[4466]: FAILED to start upNetworkManager[3101]: <warn> dnsmasq exited with error: Configuration problem (1)After downloading the source files and SlackBuild resources from a Slackware Mirror, validate the GPG signature using the provided .asc… Read More ›
-
Migrating and Upgrading Apache Guacamole to Docker
UPDATED: I have created an all-in-one (AIO) version that includes nginx using TLS. Apache Guacamole is a client-less remote desktop gateway. I use it in order to access my lab when traditional methods are not available. Guacamole does not use… Read More ›
-
AutoFS with DHCP Classless Static Route Option
My FreeNAS server is a virtual machine (VM) on my Dell r710 server. I mount my NFS and CIFS Shares using AutoFS and configure my static routes to the NAS using the DHCP Server on my pfSense Appliance. AutoFS is software… Read More ›
-
Using Physical Security Keys with Slackware Linux
Most people are aware of the various computer data breach incidents and password dumps that have occurred over the last few years. You can even visit Have I Been Pwned (HIBP) to find out if your email address is included… Read More ›
-
Handcrafting Linux Shellcode
Crafting your own shellcode requires getting muddy with low level programming. One does not simply write machine code from memory. This blog post is my attempt at providing a template and tutorial of the shellcode creation process for a 32-bit… Read More ›
-
Mounting NFS Shares in Windows Using Identity Mapping
Before we begin let us enable Services for NFS and both Sub Features. The typical way you will see an NFS share mounted in Windows involves mounting the remote file system using the anonymous (anon) user:
1mount -o anon \\192.168.28.155\mnt\NAS0\media G:This will give… Read More ›