Skip to content

Instantly share code, notes, and snippets.

View JCotton1123's full-sized avatar

Jesse Cotton JCotton1123

View GitHub Profile
@JCotton1123
JCotton1123 / export.sh
Last active March 15, 2023 21:36
AWS Export IP Addresses
# Export IP addresses to support vulnerability scanning
# Public IPs
touch /tmp/public-ips.txt
aws ec2 describe-instances \
--query "Reservations[*].Instances[*].PublicIpAddress" \
--output=text \
>>/tmp/public-ips.txt
@JCotton1123
JCotton1123 / stocktwits-message-scraper.js
Created August 16, 2020 20:59
Stocktwits Message Scraper using Headless Browser
const puppeteer = require('puppeteer');
const debug = process.env.DEBUG == 'true';
const url = 'https://stocktwits.com/mrinvestorpro';
const main = async () => {
const browser = await puppeteer.launch({ headless: !debug });
try {
console.log('Launching page');
@JCotton1123
JCotton1123 / export-puppet-classification-data.rb
Created June 14, 2020 19:08
Puppet Enterprise Node Group (Classification) data export
#!/usr/bin/env ruby
# Export node group data from Puppet Enterprise
# Setup:
# export PATH=$PATH:/opt/puppetlabs/puppet/bin
# gem install --user-install puppetclassify
# puppet-access login --lifetime 8h
require 'csv'
@JCotton1123
JCotton1123 / foreman-uninstall.sh
Last active June 10, 2020 04:49
Uninstall Foreman RHEL
#!/bin/sh
service xinetd stop
service foreman-proxy stop
service httpd stop
killall -9 sidekiq
service puppet stop
service puppetserver stop
service postgresql stop
service rh-redis5-redis stop
@JCotton1123
JCotton1123 / main.go
Created March 4, 2020 18:07
CloudTrail Log Decompression Lambda
package main
import (
"github.com/aws/aws-lambda-go/events"
"github.com/aws/aws-lambda-go/lambda"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
"github.com/pkg/errors"
@JCotton1123
JCotton1123 / server.sh
Created February 28, 2020 16:30
Netcat HTTP Server
cat >index.http <<EOF
HTTP/1.1 200 OK
Content-Type: text/html; charset=UTF-8
Server: netcat!
<!doctype html>
<html><body><h1>A webpage served by netcat</h1></body></html>
EOF
while true; do cat index.http | nc -l 8000; done
@JCotton1123
JCotton1123 / s3-restore.sh
Created April 30, 2019 01:54
Restore files from latest version in s3
#!/bin/bash
if [ -z "$1" ]; then
echo "An input file is required"
echo "usage: $0 <input-file>"
exit 1
fi
files=$(cat $1)
for f in $files; do
@JCotton1123
JCotton1123 / fluentd-setup.sh
Created April 1, 2019 23:17
Fluentd setup for Ubuntu
# Install dependencies
apt-get update; apt-get install -y build-essential ruby2.5-dev
gem install bundler --version 1.16.1
# Install fluentd
mkdir /opt/fluentd
pushd .; cd /opt/fluentd
cat <<EOD > Gemfile
source "https://rubygems.org"
@JCotton1123
JCotton1123 / Jenkinsfile
Last active February 22, 2024 09:11
Sample Jenkinsfile for Python project
pipeline {
options {
buildDiscarder(logRotator(numToKeepStr: '10')) // Retain history on the last 10 builds
ansiColor('xterm') // Enable colors in terminal
timestamps() // Append timestamps to each line
timeout(time: 20, unit: 'MINUTES') // Set a timeout on the total execution time of the job
}
agent {
// Run this job within a Docker container built using Dockerfile.build
// contained within your projects repository. This image should include
@JCotton1123
JCotton1123 / enumerate-aws-services.sh
Created March 1, 2019 05:34
Primitive script for enumerating AWS services in use
#!/bin/bash
services=""
page_token=""
while true; do
results=$(aws resourcegroupstaggingapi get-resources --tags-per-page 500 --pagination-token="$page_token")
more_services=$(echo "$results" | egrep -o 'arn:aws:([a-z]+):' | cut -d: -f 3 | sort | uniq)
services=$(echo -e "$services\n$more_services" | sort | uniq)