Skip to content

Instantly share code, notes, and snippets.

View stillbigjosh's full-sized avatar
💭
Having a blast!

stillbigjosh stillbigjosh

💭
Having a blast!
View GitHub Profile
@stillbigjosh
stillbigjosh / make_oneliner.py
Created October 15, 2025 16:46 — forked from ropnop/make_oneliner.py
Python script to convert a file to a oneliner exec command
#!/usr/bin/env python2
# Author: @ropnop (Ronnie Flathers)
# Simple script to ingest a Python file (e.g. a shell) and return a oneliner command
# Useful with command injection vulns
# Based entirely off of Metasploit's "reverse_python.rb" payload
# Credit to Brendan Coles <bcoles[at]gmail.com>
#
# Example:
# $ python make_oneliner.py pty_shell.py
@stillbigjosh
stillbigjosh / cups-browsed.md
Created September 26, 2024 21:03 — forked from stong/cups-browsed.md
CUPS disclosure leaked online. Not my report. The original author is @evilsocket

Original report

  • Affected Vendor: OpenPrinting
  • Affected Product: Several components of the CUPS printing system: cups-browsed, libppd, libcupsfilters and cups-filters.
  • Affected Version: All versions <= 2.0.1 (latest release) and master.
  • Significant ICS/OT impact? no
  • Reporter: Simone Margaritelli [[email protected]]
  • Vendor contacted? yes The vendor has been notified trough Github Advisories and all bugs have been confirmed:
@stillbigjosh
stillbigjosh / pulseversion.py
Last active January 9, 2020 19:04 — forked from rxwx/pulseversion.py
Pulse Secure Version Scanner
import requests
import sys
import re
import tqdm
import os
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
HEADERS = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:67.0) Gecko/20100101 Firefox/67.0"}