Windows Custom Right Click Menu Option
How to add a custom menu option to the right click menu in Windows 10 and have it execute a command/application. Steps Open regedit.msc. Navigate to HKEY_CLASSES_ROOT\*\shell. Right click o...
How to add a custom menu option to the right click menu in Windows 10 and have it execute a command/application. Steps Open regedit.msc. Navigate to HKEY_CLASSES_ROOT\*\shell. Right click o...
How to perform requests using wget and setup a http proxy for wget. API Call wget https://testing.com/login Ignore Cert Issues --no-check-certificate Add Headers --header 'Authorization: Basic ...
With MSOnline you can extract & search for users in a domain after obtaining a domain account. Install MSOnline Connect Search & Dump Commands Dump all Users Dump f...
In this post we’ll look at OPTIONS requests, when they get sent, and their security implications. A basic understanding of CORS and CSRF attacks would be beneficial before reading this post. S...
Escalate from admin to SYSTEM on a windows machine by doing the following. Download Tools Download Sysinternals Suite from Microsoft here. From Admin to SYSTEM Run the following command in an A...
Using a live boot of Linux, we can extract the NTLM hashes of the windows accounts on a computer and attempt to crack to find out the passwords. Prerequisites Mount Drive Dump Hashes Prer...
Using a live boot of Linux, we can bypass windows login by changing the sticky keys executable to command prompt. When at the windows login screen, stick keys can be activated to spawn a shell runn...
Prerequisites PowerShell Import & Run Crack Tokens Prerequisites Make sure you’re on a domain joined computer, or are running PowerShell in the context of a domain user. Download the r...
Create a dump file of lsass process using multiple different techniques. Task Manager Create Dump File Procdump Download Tools Dump LSASS Minidum...
In this post we’ll look at how to add SNI (Server Name Indication) to an express HTTPS server. This will allow us to return different certificates based on the domain (server name). This post will...
In this guide we’ll look at how to create a docx template and fill out that document using JavaScript. We’ll do this by using the docxtemplater package. This works in both NodeJS and React. Ins...
This page will demonstrate how to setup Web Workers, dispatch tasks to workers, and send messages/results from workers to the main thread. HTML Page Worker Code Example Output HTML Page ...
This guide will demonstrate how to setup an express webserver that uses Socket.IO for communication. Installing Requirements Backend Code Frontend Code Standard HTML Page R...
This guide will demonstrate how to setup an express webserver that uses built-in browser WebSockets for communication. Installing Requirements Backend Code Frontend Code Installing Requir...
In this post we’ll look at how to create XLSX documents in JavaScript with more advanced features such as custom styling and formulas using the xlsx & js-xlsx packages. This works in both NodeJ...