Tool: Ping Plot
I wrote a small .NET tool that will plot ping responses visually. It also allows me to save the chart graph as an image and also export the…
I wrote a small .NET tool that will plot ping responses visually. It also allows me to save the chart graph as an image and also export the…
I hacked together a small tool in .NET that helps me quickly analyze the Component Based Servicing (CBS) log in c:\windows\logs\cbs\cbs.log for missing CSI Payloads. It will parse the log…
Awhile back I used a piece of software (iMazing) to backup an old iPhone of mine. The raw backup when extracted is a bunch of files without extensions…
I've setup a template to monitor a Dell R750 server via configured SNMP access on iDRAC. My server has only two CPU (Intel Xeon Gold 6338N). I did…
The following port scanner C code checks approximately 65535 ports in about 15 seconds on-network. #include <stdio.h> #include <stdlib.h> #include <netinet/in.h> #include <string.h> #include <sys/socket.h> #include <arpa/inet.h> #include…
// gcc bofh.c -o bofh #include <stdio.h> #include <stdlib.h> #include <time.h> #define NUM_QUOTES 10 const char* bofh_quotes[NUM_QUOTES] = { "No, my powers can only be used for good.",…
I’m working on a side project that is a portscan utility written in VB.net. Here’s my progress so far, and it is working. There’s some way to go…
A small WordPress plugin to create a BOFH excuse using a shortcode anywhere on your WordPress website shortcodes are supported. Usage [[bofh]] Output Example [bofh] wp-bofhDownload Continue reading
Over the last few weeks I've been using Python to scrape the Pennsylvania Department of Health's Coronavirus page. Over time the page has evolved and even split into…
A quick Powershell script I hacked together that will enumerate all Active Directory users, and build an XML file for an application I wrote that generates user reports…
I made this 5 years ago in Excel and it was pretty popular. I think there are some errors in the math formulas that were pointed out for…
I mean, who hasn’t written a calculator application? Not much explaining to do here…
This was a rather interesting project I took on. The project was created to monitor and restrict how many Remote Desktop sessions were permitted to logon based on…
An excercise in FileSystemWatcher in .NET that was used to create an application to monitor a given folder (and subfolders) for specific file/folder operations such as Creation, Deletion,…
A utility I wrote to show locked user accounts in the Allscripts Professional EHR database and allow the user to unlock selected accounts.