Skip to content

Instantly share code, notes, and snippets.

View jgamblin's full-sized avatar

Jerry Gamblin jgamblin

View GitHub Profile
@jgamblin
jgamblin / CVEsPublished.ipynb
Last active February 2, 2023 14:00
When Are CVEs Published?
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jgamblin
jgamblin / 100-gpt-2.txt
Last active May 30, 2022 19:29
100 GPT-2 Generated Fake CVE Descriptions Using 175,000 Real CVE Descriptions.
figprint.c:70-91 (commentary) allows local users to gain privileges via manipulations of temporary process data.
====================
A vulnerability in the way a javascript.dll executes in the context of the current user could allow an attacker to run arbitrary code within the context of the current process. For more information about this vulnerability, see the Details section of this CVE.
====================
18.0.2.91 Node.js module can be processed by expected classpath that does not have a v Amethyst override. If an attacker is able to inject an 'x` parameter, and has strong unescaped inputs that result in the creation of an XAML object, they can inject the 'x` parameter to create a XAML object."
====================
BEIJING (Reuters) - The Financial Services Administration of China proposed higher restrictions on rebates on some Chinese tech platforms that were not backed by a bank account, to prevent e-commerce China from being run on the internet, a person with knowledge of the matter told Reuters.
=
@jgamblin
jgamblin / internetdb.ipynb
Created March 14, 2022 19:07
CIDR lookup tool for the InternetDB API
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jgamblin
jgamblin / fastest_pitch_updated.ipynb
Last active July 21, 2021 11:41
MLB 2021 Fastest Pitches
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jgamblin
jgamblin / spinrate.ipynb
Created July 20, 2021 21:45
2021 MLB Spin Rate
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jgamblin
jgamblin / AllPixelScrollText.py
Created November 12, 2019 21:31
AllPixel Board To Scroll Text Message.
import bibliopixel
from bibliopixel.drivers.serial import Serial, LEDTYPE
driver = Serial(width=8, height=32, num=256, ledtype = LEDTYPE.WS2812B)
from bibliopixel import Matrix, Rotation
led = Matrix(driver,
rotation = Rotation.ROTATE_90,
vert_flip = True,
@jgamblin
jgamblin / gist:a9f2ef27c78dfe3e5e65645fe9d1b970
Created September 17, 2019 15:05
Check a List Of Emails For Open Google Calendars.
#!/usr/bin/env bash
# Check a List Of Emails For Open Google Calendars.
if [[ $# -eq 0 ]]; then
echo 'Please provide a list email addresses to check.'
exit 1
fi
email_list="$1"
@jgamblin
jgamblin / Dockerfile
Created July 26, 2019 13:08
Apple_Blee Dockerfile
FROM ubuntu:18.04
RUN apt-get update && \
apt-get upgrade -y
RUN apt-get update && \
apt-get install -y \
bluetooth \
bluez \
cmake \
@jgamblin
jgamblin / defconjson.py
Last active January 5, 2024 20:10
Defcon 27 JSON Schedule
# the issue is that website.txt is not in chronological or track order!
import os
import re
import json
os.system("lynx -dump https://defcon.org/html/defcon-27/dc-27-speakers.html >\
schedule.txt")