Skip to content

Instantly share code, notes, and snippets.

View talha's full-sized avatar

Talha AYDIN talha

View GitHub Profile
@talha
talha / PowerView-3.0-tricks.ps1
Created October 20, 2022 20:02 — forked from HarmJ0y/PowerView-3.0-tricks.ps1
PowerView-3.0 tips and tricks
# PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/
# tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c
# the most up-to-date version of PowerView will always be in the dev branch of PowerSploit:
# https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1
# New function naming schema:
# Verbs:
# Get : retrieve full raw data sets
# Find : ‘find’ specific data entries in a data set
@talha
talha / boxstarter.ps1
Last active January 28, 2019 14:43
docker-desktop for windows box
# Description: Boxstarter Script
# docker-desktop for clean windows box
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# Install-BoxstarterPackage -PackageName <URL-TO-RAW-GIST> -DisableReboots
Update-ExecutionPolicy Unrestricted
Disable-UAC
choco install docker-desktop