Skip to content

Instantly share code, notes, and snippets.

View Jsitech's full-sized avatar

Jason Soto Jsitech

View GitHub Profile
@Jsitech
Jsitech / etc_sysctl.conf
Created July 13, 2017 13:10 — forked from clemensg/etc_sysctl.conf
My FreeBSD /etc/sysctl.conf
# /etc/sysctl.conf
# Clemens Gruber, 2014
#
# Uncomment this to prevent users from seeing information about processes that
# are being run under another UID.
security.bsd.see_other_uids=0
## I/O
@Jsitech
Jsitech / Raspbian-AP-Setup.sh
Last active July 11, 2018 16:15
Simple Script to Set up an Access Point on the latest version of Raspbian Stretch
#!/bin/bash
# Raspbian-AP-Setup | Simple Script to Set up an Access Point on the latest version of Raspbian Stretch
# jasonsoto.com
# jsitech-sec.com
##############################################################################################################
if [ "$USER" != "root" ]; then
@Jsitech
Jsitech / nmap-tcp-full.sh
Created October 29, 2018 20:01 — forked from coffeegist/nmap-tcp-full.sh
OSCP nmap scripts
if [ "$#" -ne 3 ]; then
echo "Usage: nmap-tcp-full.sh <TCP-QUICK-RESULTS.XML> <TARGET> <OUTPUT-FILENAME>"
exit 1
fi
nmap -nvv -Pn -sSV -T1 -p$(cat $1 | grep portid | grep protocol=\"tcp\" | cut -d'"' -f4 | paste -sd "," -) --version-intensity 9 -A -oA $3 $2