Posts

Checking Windows License Status and KMS Configuration with PowerShell

Craig Wilson
Checking Windows License Status and KMS Configuration with PowerShell In this blog post, I will walk you through a PowerShell script that helps you check the current license status of a Windows host, verify if it’s using a Key Management Service (KMS), determine if it’s part of a domain, and check the DNS KMS settings if applicable. What Does the Script Do? This PowerShell script performs several important tasks: Retrieves and displays the current license status of the Windows host.

Automating Agent and Log Forwarding to New Relic on Ubuntu

Craig Wilson
Automating Agent and Log Forwarding to New Relic on Ubuntu In this post, we’ll walk through the steps to automate the installation and configuration of the New Relic Infrastructure agent on an Ubuntu system. Additionally, we’ll show how to dynamically configure log forwarding for all log files in the /var/log directory and its subdirectories. This script has been tested on Ubuntu 22.04 LTS on ARM, but should work for other versions of Ubuntu.

Azure CLI: Installing CLI on Mint Linux

Craig Wilson
Azure CLI on Linux Mint Today, I embarked on an exploration of Linux Mint as a potential new desktop environment. Linux Mint stands out as an operating system recognized for its robustness, user-centric design, and unparalleled stability. Its foundation on Ubuntu, which draws from Debian, positions Linux Mint as an exemplary choice for the Linux community. The system’s interface, celebrated for its elegance and simplicity and an extensive software repository, ensures a seamless user experience.

SSL Automation: Azure Resources and Let's Encrypt SSL Certificate

Craig Wilson
Azure Resources and Let’s Encrypt SSL Certificate Automation In the digital age, securing your web applications with SSL/TLS certificates is not just an option—it’s a necessity. Microsoft Azure users have a powerful toolset at their disposal to automate this process, using a combination of Azure resources, Bicep, and Let’s Encrypt. This guide dives into the specifics of setting up Azure resources with Bicep and automating SSL certificate generation and renewal with Let’s Encrypt, highlighting the integration with Azure Key Vault for secure storage of certificates and service principle details.

Hydra: The Simple Guide

Craig Wilson
Hydra: The Simple Guide Introduction to Hydra Hydra, often referred to as THC-Hydra, is a powerful and fast network authentication cracker. It is widely recognized for its ability to rapidly guess or crack login credentials across a wide range of protocols and services. Developed by “The Hacker’s Choice” (THC), Hydra has become an indispensable tool in the arsenal of penetration testers, security analysts, and unethical hackers alike. Why Use Hydra?

Export Certificates in Multiple Formats Using PowerShell

Craig Wilson
How to Export Certificates in Multiple Formats Using PowerShell Introduction Certificates are a crucial part of any IT infrastructure, dealing with secure communications and data protection. Managing them effectively is vital. Today, I am looking at a versatile PowerShell script that simplifies the process of exporting certificates from the Windows Certificate Store in various formats: PEM, PFX, and CER. What Does the Script Do? This PowerShell script allows IT administrators and security professionals to:

NMAP: The Simple Guide

Craig Wilson
NMAP: The Simple Guide Introduction to NMAP NMAP, short for Network Mapper, is an indispensable open-source tool for network exploration and security auditing. Since its initial release in 1997 by Gordon Lyon, NMAP has become a staple in the cybersecurity and IT professional’s toolkit. It excels in scanning large networks rapidly, but it’s equally effective against single hosts. Utilizing raw IP packets in innovative ways, NMAP can discover hosts, services, operating systems, packet filters/firewalls, and numerous other characteristics.

Windows 11 on Unsupported Hardware

Craig Wilson
Installing Windows 11 on Unsupported Hardware: A Guide for Your Test Lab Windows 11 demands specific hardware features for production environments. However, there’s a workaround for experimental purposes. This guide is aimed at those looking to use Windows 11 on outdated or unsupported hardware, typically found in home or development labs. It’s not recommended for production use. During a standard Windows 11 build, once the screen appears to select your langauge, you can press F-10 and open the registry editor(regedit).

Linux Automation with SSH

Craig Wilson
Linux Automation over SSH Linux Automation over SSH, a set of scripts designed for the deployment and configuration of headless Linux workstations and servers. Perfectly suited for creating development servers, this solution has been developed and tested on Raspberry Pi and Ubuntu VMs. It offers a streamlined approach using builtin tools to executing shell scripts remotely, ensuring secure and orderly operations. While it’s a boon for development environments, users are cautioned to handle secure passwords with care before deploying it in production settings.

Damn Vulnerable Web App DVWA testing with ZAP on Kali

Craig Wilson
How to Set Up and Test the Damn Vulnerable Web App (DVWA) Using OWASP ZAP and Docker Web application security is of paramount importance today, with cyber threats becoming more sophisticated. If you’re a web developer, security professional, or a student keen on learning about web application security, this blog post is tailor-made for you. Today, we will guide you through a comprehensive walkthrough on setting up the Damn Vulnerable Web App (DVWA) using OWASP ZAP and Docker, based on a YouTube video tutorial.