Skip to content

Instantly share code, notes, and snippets.

@KFDCompiled
KFDCompiled / EQgroup.md
Created January 20, 2023 20:42 — forked from bontchev/EQgroup.md
Curated list of links describing the leaked Equation Group tools for Windows

Links describing the leaked EQ Group tools for Windows

Repositories and ports

Installation and usage guides

@KFDCompiled
KFDCompiled / Active Directory Attacks.md
Created September 10, 2022 15:59 — forked from ssstonebraker/Active Directory Attacks.md
Active Directory Attacks #oscp
## Based on https://download.seafile.com/d/320e8adf90fa43ad8fee/files/?p=/docker/pro-edition/docker-compose.yml
## See https://download.seafile.com/published/seafile-manual/docker/pro-edition/Deploy%20Seafile-pro%20with%20Docker.md
version: '2.0'
services:
db:
image: mariadb:10.5
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD=db_dev # Requested, set the root's password of MySQL service.
- MYSQL_LOG_CONSOLE=true
@KFDCompiled
KFDCompiled / scal.py
Created November 3, 2017 16:36
Second Attempt at Python Implementation of scal.pl
#import wget
import textract
# url = 'https://www.utcourts.gov/cal/data/SLC_Calendar.pdf'
# pdf = wget.download(url)
print "Processing pdf into text..."
pdf_text_raw = textract.process("SLC_Calendar.pdf") # Load text into list
print "Formatting..."
pdf_text_lines=pdf_text_raw.splitlines() # Convert '\n' into new lines
@KFDCompiled
KFDCompiled / scal.py
Created November 3, 2017 16:35
Python implementation of scal.pl
#import wget
import textract
# url = 'https://www.utcourts.gov/cal/data/SLC_Calendar.pdf'
# pdf = wget.download(url)
print "Processing pdf into text..."
pdf_text_raw = textract.process("SLC_Calendar.pdf") # Load text into list
print "Formatting..."
pdf_text_lines=pdf_text_raw.splitlines() # Convert '\n' into new lines