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 / Router Default Passwords.md
Created July 31, 2019 18:58
Router Default Passwords

Defaults Passwords

Vendor Username Password Comments
2Wire, Inc. http
360 Systems factory factory
@austinsonger
austinsonger / googledorks.md
Created July 31, 2021 00:13
List of Google Dorks
_news/news.php?id=
-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHp
!Host=*.* intext:enc_UserPassword=* ext:pcf
?action=
?cat=
?id=
?intitle:index.of? mp3 artist-name-here
?intitle:index.of? mp3 name
@austinsonger
austinsonger / Anti-AI_Writing_Guide.md
Created April 14, 2026 04:49
A guide for eliminating AI-generated text patterns and producing prose that reads as genuinely human-written.

Anti-AI Writing Guide

A guide for eliminating AI-generated text patterns and producing prose that reads as genuinely human-written.


Table of Contents

  1. Core Philosophy
  2. Banned Vocabulary
@austinsonger
austinsonger / AS-Ultimate-Feed.opml
Last active March 17, 2026 17:50
Austin Songer Ultimate RSS Feed (Cyber Security, Vulnerabilities, Threat Intel, and more)
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Austin Songer Ultimate Feed</title>
</head>
<body>
<outline text="InfoSec - Firewall + Network" title="InfoSec - Firewall + Network">
<outline type="rss" text="Keeping It Classless" title="Keeping It Classless" xmlUrl="http://feeds.feedburner.com/keepingitclassless" htmlUrl="http://keepingitclassless.net/"/>
<outline type="rss" text="EtherealMind - Human Infrastructure" title="EtherealMind - Human Infrastructure" xmlUrl="http://feeds.feedburner.com/etherealmind" htmlUrl="http://etherealmind.com"/>
[
{
"title": "Burning",
"poster_url": "",
"imdb_id": "tt7282468"
},
{
"title": "Oldboy",
"poster_url": "",
"imdb_id": "tt0364569"
@austinsonger
austinsonger / usr.md
Created June 9, 2021 13:22
MacOS: Usr Directory Structure
/usr/bin/
/usr/lib/
/usr/lib/dtrace/
/usr/lib/groff/
/usr/lib/log/
/usr/lib/pam/
/usr/lib/php/
/usr/lib/pkgconfig/
@austinsonger
austinsonger / Who-The-A-Method-for-Hiring.md
Created October 28, 2025 20:41 — forked from laugri/Who-The-A-Method-for-Hiring.md
Who: The a Method for Hiring - Geoff Smart and Randy Street - Summary

This is my summary of "The A method for recruiting" by Geoff Smart and Randy Street.

"I feel great ! I have a fantastic team working with me now. [...] It's all because I have a team of A players."

The "A" method for recruiting

  • Make a scorecard for the position
  • Source candidates
  • Select a candidate
  • Sell the job to them
#!/usr/bin/env bash
if [ "$EUID" -ne 0 ]; then
script_path=$([[ "$0" = /* ]] && echo "$0" || echo "$PWD/${0#./}")
sudo "$script_path" || (
echo 'Administrator privileges are required.'
exit 1
)
exit 0
fi
austinsonger@MacBookPro easy % ./target/debug/authorized --config config.toml poam stats
2025-10-06T18:21:33.299299Z INFO authorized_cli: Initialized authorized-cli v0.1.0
2025-10-06T18:21:33.300963Z INFO authorized_cli::config: Loading configuration from: config.toml
2025-10-06T18:21:33.303040Z INFO authorized_cli::config: Configuration loaded successfully
POA&M Statistics:
Total Items: 3
By Status:
Open: 2
In Progress: 1
@austinsonger
austinsonger / phase.sh
Last active October 5, 2025 00:21
phase
#!/bin/bash
# Modified: 2025-10-05
# Phase Console Installation Script for Rocky Linux and CentOS
# Installs and configures Phase Console server with Tor hidden service
set -euo pipefail
# Configuration variables
PHASE_CONSOLE_DIR="/opt/phase-console"
PHASE_USER="phaseuser"