Skip to content

Instantly share code, notes, and snippets.

View abdulx01's full-sized avatar
💭
I may be slow to respond.

AbdulRahman abdulx01

💭
I may be slow to respond.
View GitHub Profile
@abdulx01
abdulx01 / Programmer
Last active September 14, 2021 11:26
from congrats import programmer
class Day256:
def __init__(self,good_to_have_it, are_essential, are_the_best):
self.job = good_to_have_it
self.teamates = are_essential
self.programmers = are_the_best
def congratulation():
name = input("Enter your Name: ")
@abdulx01
abdulx01 / 2fa-bypass-using-a-brute-force-attack.go
Created September 16, 2021 09:56 — forked from ChrisPritchard/2fa-bypass-using-a-brute-force-attack.go
A solution script for the portwigger web-sec-academy lab "2FA bypass using a brute-force attack"
/*
for this lab https://portswigger.net/web-security/authentication/multi-factor/lab-2fa-bypass-using-a-brute-force-attack
*vastly* faster than using a burp macro with 1 thread and intruder
even if it took an hour to throw together :D
*/
package main
import (
@abdulx01
abdulx01 / PowerView-3.0-tricks.ps1
Created September 24, 2021 19: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