Skip to content

Instantly share code, notes, and snippets.

View austinsonger's full-sized avatar
🙃
Localhost

Austin Songer, CISSP austinsonger

🙃
Localhost
View GitHub Profile
@austinsonger
austinsonger / removeall.json
Created October 4, 2019 22:52
Remove all objects in a Azure Resource Group
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": { },
"variables": { },
"resources": [ ],
"outputs": { }
}
@austinsonger
austinsonger / Removeall.ps
Created October 4, 2019 22:53
Azure CLI - Deploy Removeall.json
az group deployment create --mode complete --template-file ./removeall.json --resource-group test
@austinsonger
austinsonger / wazuhmadeeasy.sh
Last active January 13, 2020 16:08
Installation of Wazuh on Single Server
#!/bin/bash
#
# OS: Debian-based Systems
###########################
echo "--------------------------------------------------------------------------"
echo "$(date)"
echo "Starting Wazuh Made Easy"
echo "Wazuh for Debian-based Systems"
echo "Wazuh Manager - Wazuh API - Elasticsearch - Kibana"
@austinsonger
austinsonger / Install Wazuh - Centos.sh
Last active March 26, 2020 21:19
Install Wazuh - Centos
#!/bin/sh
yum update -y
yum upgrade -y
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u172-b11/a58eab1ec242421181065cdc37240b08/jdk-8u172-linux-x64.rpm"
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u172-b11/a58eab1ec242421181065cdc37240b08/jre-8u172-linux-x64.rpm"
https://download.oracle.com/otn/java/jdk/8u202-b08/1961070e4c9b4e26a04e7f5a083f551e/jdk-8u202-linux-x64.rpm
https://download.oracle.com/otn/java/jdk/8u202-b08/1961070e4c9b4e26a04e7f5a083f551e/jre-8u202-linux-x64.rpm
rpm -ivh jdk-8u172-linux-x64.rpm
rpm -ivh jre-8u172-linux-x64.rpm
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
@austinsonger
austinsonger / README.md
Last active April 6, 2023 08:45
ELK Made Easy

Elasticsearch, Logstash, Kibana Installation Made Easy

This includes more than just Elasticsearch, Logstash, and Kibana. It also includes the following:

  • Metricbeat
  • Packetbeat
  • Auditbeat

TO-DO

  • Finish rpm_elk to match debian_elk
@austinsonger
austinsonger / lcume.sh
Created December 23, 2019 17:21
Linux Clean Up Made Easy
#!/bin/bash
#
#Author: Austin Songer
########################
sudo apt update -y
sudo apt list --upgradable -a
sudo apt upgrade -y
sudo dpkg --configure -a
sudo apt install -f
@austinsonger
austinsonger / rdpubuntu.sh
Created December 31, 2019 21:12
RDP on Ubuntu
#!/bin/bash
sudo apt update -y && sudo apt upgrade -y
sudo apt install xfce4 -y
sudo apt install xrdp -y
sudo adduser xrdp ssl-cert
@austinsonger
austinsonger / instabuster.sh
Last active December 31, 2019 21:39
Install Instagram Bruteforce Tool
## Install pip3
#curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
#python get-pip.py
apt install python3-pip -y
## Install Instagram Buster
git clone https://github.com/austinsonger/Instagram.git
cd /root/Instagram
pip3 install -r requirements.txt
@austinsonger
austinsonger / installupworklinux.sh
Created December 31, 2019 22:07
Install Upwork Timetracking on Linux Debian
sudo wget https://updates-desktopapp.upwork.com/binaries/v5_3_3_848_ciy2bosj7ts6feza/upwork_5.3.3.848_amd64.deb
sudo dpkg -i upwork_5.3.3.848_amd64.deb
sudo apt-get -f install
@austinsonger
austinsonger / ttyStudio.sh
Last active December 31, 2019 22:32
Terminal Record with ttyStudio
sudo apt install -y gcc-c++ make
sudo curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash -
sudo apt install -y nodejs
sudo apt install -y npm
sudo npm install ttystudio
# ttystudio linoxide.gif
# Just run this above command, it will open up a fresh window to start up with recording. Once you're done press "CTRL+Q" to end recording.