Home
Node Security
Cancel

User Dumping with MSOL

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...

When are OPTIONS Requests Sent?

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...

Admin to SYSTEM with PsExec

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 Adm...

Extract NTLM Hashes via Linux Live Boot

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...

Sticky Keys Windows Login Bypass

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...

How to Kerberoast

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 th...

LSASS Dumping

Create a dump file of lsass process using multiple different techniques. Task Manager Create Dump File Procdump Download Tools Dump LSASS Minidum...

NodeJS Express SNI

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...

Docx Templating in JavaScript

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...

Web Workers

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 ...

Web-Sockets - Socket.IO

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...

Web-Sockets - Native

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...

Creating XLSX Documents in Javascript (Advanced)

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...

Creating XLSX Documents in Javascript (Basic)

In this post we’ll look at how to create basic XLSX documents in JavaScript using the xlsx package. This works in both NodeJS and React. What we are Making Installing Requirements The Code ...

Building a Plexus

In this post we’ll look at how to build a Plexus in JavaScript using the p5.js library. What we are Making How we will make it Setup p5.js Points Generating Po...