Creating a Windows Bind Shell Using C
Creating a Windows Bind Shell Using C I’m studying for the OSCP and needed to replace the exe file of a Windows service with a new .exe file. On reboot my goal is to have a shell as NT Authority/System…
Creating a Windows Bind Shell Using C I’m studying for the OSCP and needed to replace the exe file of a Windows service with a new .exe file. On reboot my goal is to have a shell as NT Authority/System…
Problem Kali Linux keeps locking the screen when not used for a short period of time Solution You need to configure “Light Locker” to stop automatically locking the session. Steps Click the icon at the top left of the screen…
This post covers how to install the telnet client from the command prompt on Windows 10. Run the following command: pkgmgr /iu:”TelnetClient”
I came across a great article on detecting windows lateral movement and wanted to share it with everyone: CERT-EU Security Whitepaper 17-002 “Detecting Lateral Movements in Windows Infrastructure”
To install Google Chrome using Powershell (headless install) run the following command from and Administrative PowerShell Prompt: $LocalTempDir = $env:TEMP; $ChromeInstaller = “ChromeInstaller.exe”; (new-object System.Net.WebClient).DownloadFile(”, “$LocalTempDir\$ChromeInstaller”); & “$LocalTempDir\$ChromeInstaller” /silent /install; $Process2Monitor = “ChromeInstaller”; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor…
Column Selection – Sublime Text 3 Selecting an entire column of text using Sublime Text 3 on a Mac can be frustrating. Here is how to do it the easy way! Legend ⌘ – Command ⇧ – Shift ⌃ -…
Password Spraying Finding the source of Windows password spraying attacks can be daunting as the Event log does not provide the source IP of the machine making the calls. Windows Event Logs Ideally all of your Windows Event logs from…
Recently I’ve been writing a lot of windows batch files that need to be compatible with both Windows 7 and Windows 10. I’ve decided to document some of what I have learned below. Check if .bat file was ran with…
Recently I added a new drive to my Windows 10 VM using VMFusion 10.0. I was unable to write to it even after making myself owner of it. After digging in this for a while it appears that VMWare is…
Internet Explorer Enhanced Security mode can be frustrating to disable. Here is a fast way to disable it. First open an Administrative PowerShell Window. Next run the following: $AdminKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}” $UserKey = “HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}” Set-ItemProperty -Path…