Skip to content

Instantly share code, notes, and snippets.

View jgamblin's full-sized avatar

Jerry Gamblin jgamblin

View GitHub Profile
@jgamblin
jgamblin / Kali 2.0 ISO Build
Last active June 11, 2022 14:42
Build Your Own Kali 2.0 ISO
##################################################################
Install live-build
##################################################################
sudo apt-get install live-build
##################################################################
Git clone the live-build configs
##################################################################
git clone git://git.kali.org/live-build-config.git
@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 / nmapburp.sh
Created September 6, 2018 19:49
NMap a network and send all open web servers to Burp.
#!/bin/bash
#Script to Scan All Sites Found With A Simple NMAP Scan With Burp.
sites=$(nmap "$1" --open 443 --resolve-all --open -oG - | awk 'NR!=1 && /open/{print $2}')
for site in $sites
do
curl -vgw "\\n" 'http://127.0.0.1:1337/v0.1/scan' -d '{"urls":["'"$site"'"]}' > /dev/null 2>&1
printf "Scanning %s with burp.\\n" "$site"
done
@jgamblin
jgamblin / vtslack.py
Last active November 15, 2021 05:02
Scan a Folder and Upload VT Findings to Slack.
#!/usr/bin/env python
import os
import sys
import json
import urllib
import urllib2
import hashlib
import argparse
from slacker import Slacker
@jgamblin
jgamblin / NVD.py
Last active November 2, 2021 09:30
NVD CVEs to Indivual JSON files
import requests
import json
import gzip
import os
import codecs
import time
from datetime import timedelta
start = time.time()
count = 0
@jgamblin
jgamblin / vc-local.py
Created June 28, 2019 18:55
A Local Version of VulnerableContainers.org
import csv
import os
import re
import requests
import subprocess
import time
from datetime import timedelta
from more_itertools import unique_everseen
start = time.time()
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to get your position.</p>
<button onclick="getLocation()">Try It</button>
<div id="mapholder"></div>
@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 / godaddydns.sh
Created July 12, 2017 11:11
Shell Script To Automatically Create A DNS A Record in Godaddy.
#!/bin/bash
DOMAIN=jgamblin.com
RECORD_NAME=newproject
GODADDY_API_KEY=(Get from devloper.godaddy.com)
GODADDY_API_SECRET=(Get from devloper.godaddy.com)
# Get IP Address
IP=`dig +short myip.opendns.com @resolver1.opendns.com`
# Create DNS A Record