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?
View CVEsPublished.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View plotly-nvd.ipynb
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.
View 100-gpt-2.txt
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
View internetdb.ipynb
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
View fastest_pitch_updated.ipynb
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
View spinrate.ipynb
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.
View AllPixelScrollText.py
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.
View gist:a9f2ef27c78dfe3e5e65645fe9d1b970
#!/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
View 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 June 27, 2023 00:21
Defcon 27 JSON Schedule
View defconjson.py
# 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")