Integrating Jamf Pro and Okta LDAP

This short guide will get Jamf configured to pull user information from Okta, no matter how your users are mastered. Okta Add LDAP Directory in Okta. Go to Directory > Directory Integrations. Select Add Directory > Add LDAP Directory. Make sure to set the LDAP Interface to Active. Jamf Log…

Raspberry Pi 4 Heatsink Placement

I wasn't sure where to put the smallest heatsink that came in my Canakit package. I decided to place it on the chip that handles the Gigabit Ethernet. Heatsink placement, from left to right: Processor, RAM, and Gigabit Ethernet.…

Enable SSH on Kali

The official Kali Linux VM comes with ssh disabled. I like to have ssh available so I can run commands from Terminal on my host to the VM. I only enable ssh in testing environments. Follow the steps to enable ssh.   apt-get install ssh systemctl enable ssh service ssh start…

How to upgrade Kali packages

A quick way to make sure your packages are up to date is to run this command: apt-get update && apt-get upgrade It runs apt-get update first, which checks for updated version. Then it runs apt-get upgrade which handles the installation. Depending on your system, this could take a…

Check SHA256Sum with macOS

I am working with Kali Linux and I wanted to make sure the VM I downloaded hasn't been tampered with. Offensive Security recommends doing this everytime you download Kali. How can we check the provided SHA265Sum from Offensive Security with the file we downloaded? macOS has a bulit…

Auditing WPS/WEP networks

wifite is a piece of software included on the default Kali installation. It is designed for automated auditing of wireless networks. This quick tutorial will take you through your first wifite attack. List of materials: * Kali Linux * Supported wireless network adapter * Network you have permission to audit 1. Open up…

How to update Dell R320 BIOS and iDRAC

This Dell R320 was previously a domain controller at a small branch office. When that office closed, we decided to repurpose it as an Ubuntu server to run tape backups. When I get a piece of hardware like this the first thing I do is wipe the settings clean and…

DSTIKE Pocket ESP8266 Deauther

I absolutely love custom hardware projects. I don't remember how I stumbled across spacehuhn's esp8266 deauther project but I knew I had to try it. I ordered some cheap ESP8266 boards from AliExpress and then waited for them to arrive. It was fun flashing the firmware,…