Skip to content

Instantly share code, notes, and snippets.

@slooppe
slooppe / citrix-adc-version-hashes.csv
Created January 25, 2023 18:10 — forked from fox-srt/citrix-adc-version-hashes.csv
Citrix ADC & Citrix Gateway version hashes
rdx_en_date vhash version
2018-08-25 03:29:12 12.1-49.23
2018-10-16 17:54:20 12.1-49.37
2018-11-28 08:56:26 26df0e65fba681faaeb333058a8b28bf 12.1-50.28
2019-01-18 17:41:34 d3b5c691a4cfcc6769da8dc4e40f511d 12.1-50.31
2019-02-13 06:11:52 1ffe249eccc42133689c145dc37d6372
2019-02-27 09:30:02 995a76005c128f4e89474af12ac0de66 12.1-51.16
2019-03-25 22:37:08 d2bd166fed66cdf035a0778a09fd688c 12.1-51.19
2019-04-19 11:04:22 489cadbd8055b1198c9c7fa9d34921b9
2019-05-13 17:41:47 86b4b2567b05dff896aae46d6e0765bc 13.0-36.27
@slooppe
slooppe / flexdump
Created August 9, 2022 05:16 — forked from defparam/flexdump
Flexdump - A script that wraps flexdecrypt to dump, decrypt, re-sign, re-package iOS apps
#!/bin/bash
# Copyright 2021 Evan Custodio (@defparam)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@slooppe
slooppe / enable_vnc.sh
Created August 5, 2022 10:21 — forked from leonjza/enable_vnc.sh
macOS enable vnc remotely via ssh
#!/bin/bash
# simple script to enable remote management via an ssh
set -e
if [ "$EUID" -ne 0 ]
then echo "please run as root (eg: sudo $0)"
exit
fi
@slooppe
slooppe / README.md
Created August 5, 2022 10:20 — forked from leonjza/README.md
Forward a remote iOS device, locally.

fwd_ios.sh

Forwards a remote iOS device, exposed via usbmuxd on Linux to a local macOS client.
The inverse (aka ssh -R) is left as an excercise to the reader, but shouldn't be too hard :)

This is basically a simple usbfluxd that only depends on socat.

install

Copy the bash script to a local file, say fwd_ios.sh and make it executable with chmod +x fwd_ios.sh.

@slooppe
slooppe / sslextract.py
Created November 20, 2020 13:28 — forked from devanshbatham/sslextract.py
sslExtract : Extract DNS records from IP addresses
#!/usr/bin/env python
from multiprocessing.pool import ThreadPool
from time import time as timer
from urllib.request import urlopen
import sys
import re
import os.path
start = timer()
@slooppe
slooppe / cloud_metadata.txt
Created November 1, 2020 10:27 — forked from jhaddix/cloud_metadata.txt
Cloud Metadata Dictionary useful for SSRF Testing
## AWS
# from http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html#instancedata-data-categories
http://169.254.169.254/latest/user-data
http://169.254.169.254/latest/user-data/iam/security-credentials/[ROLE NAME]
http://169.254.169.254/latest/meta-data/iam/security-credentials/[ROLE NAME]
http://169.254.169.254/latest/meta-data/ami-id
http://169.254.169.254/latest/meta-data/reservation-id
http://169.254.169.254/latest/meta-data/hostname
http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key
@slooppe
slooppe / get-shodan-favicon-hash.py
Created November 1, 2020 09:58 — forked from yehgdotnet/get-shodan-favicon-hash.py
Get Shodan FAVICON Hash
# https://twitter.com/brsn76945860/status/1171233054951501824
pip install mmh3
-----------------------------
# python 2
import mmh3
import requests
response = requests.get('https://cybersecurity.wtf/favicon.ico')
favicon = response.content.encode('base64')
@slooppe
slooppe / all.txt
Created October 29, 2020 07:21 — 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.
.
..
........
@
*
*.*
*.*.*
🐎
@slooppe
slooppe / Dockerfile
Created July 2, 2020 07:22 — forked from lanmaster53/Dockerfile
Docker image for running Python 3 scripts in a throw-away environment.
FROM python:3.7-slim-buster
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN mkdir -p /src
WORKDIR /src
ENTRYPOINT ["/bin/bash"]