Skip to content

Instantly share code, notes, and snippets.

View co-devs's full-sized avatar
🏔️
things are happening

Mike Devens co-devs

🏔️
things are happening
View GitHub Profile
@9to5IT
9to5IT / Script_Template.ps1
Last active June 5, 2024 14:47
PowerShell: Script Template
#requires -version 2
<#
.SYNOPSIS
<Overview of script>
.DESCRIPTION
<Brief description of script>
.PARAMETER <Parameter_Name>
<Brief description of parameter input required. Repeat this attribute if required>
@neu5ron
neu5ron / dynamic-dns.txt
Last active September 10, 2022 10:08
This list has moved to the repo https://github.com/neu5ron/dynamic_dns_lists
3d-game.com #dtdns.com
4irc.com #dtdns.com
b0ne.com #dtdns.com
bbsindex.com #dtdns.com
chatnook.com #dtdns.com
darktech.org #dtdns.com
deaftone.com #dtdns.com
dtdns.net #dtdns.com
effers.com #dtdns.com
etowns.net #dtdns.com
@brahmlower
brahmlower / phpVirtualBox Debian 8 Install Script
Last active November 8, 2017 06:52
This is a script to install VirtualBox and phpVirtualBox on a headless Debian 8 machine.
#!/bin/bash
# Author: Brahm Lower
# Name: phpVirtualBox Debian 8 Install Script
# Source: https://gist.github.com/bplower/b7e193fc3861e964c367/
# Prerequisite Packages:
# bash, openssl, cat, grep, echo, wget, apt-key, apt-get, useradd, usermod, passwd, mv, cp, sed, systemctl
# Installed Packages:
# build-essential, dkms, unzip, apache2, php5, php5-mysql, libapache2-mod-php5, php-soap, virtualbox-5.0
# Description:
# This is a script to install VirtualBox and php VirtualBox on a headless Debian 8 machine.
dynu.com
dyn.com
no-ip.com
noip.com
changeip.com
afraid.org
duckdns.org
dnsdynamic.org
duiadns.net
myonlineportal.com
@max-mapper
max-mapper / config.boot
Last active January 31, 2023 09:35
edgerouter lite centurylink fiber pppoe configuration
firewall {
all-ping enable
broadcast-ping disable
ipv6-receive-redirects disable
ipv6-src-route disable
ip-src-route disable
log-martians enable
name WAN_IN {
default-action drop
description "WAN to internal"
@ToHindahl
ToHindahl / phpVirtualBox Debian 8 Install Script
Last active February 14, 2017 18:42 — forked from brahmlower/phpVirtualBox Debian 8 Install Script
This is a script to install VirtualBox and phpVirtualBox on a headless Debian 8 machine.
#!/bin/bash
# Author: Brahm Lower edited by Tobias Hindahl
# Name: phpVirtualBox Debian 8 Install Script
# Source: https://gist.github.com/bplower/b7e193fc3861e964c367/
# Prerequisite Packages:
# bash, openssl, cat, grep, echo, wget, apt-key, apt-get, useradd, usermod, passwd, mv, cp, sed, systemctl
# Installed Packages:
# build-essential, dkms, unzip, apache2, php5, php5-mysql, libapache2-mod-php5, php-soap, virtualbox-5.0
# Description:
# This is a script to install VirtualBox and php VirtualBox on a headless Debian 8 machine.

Auth

Name/Link Description/Purpose Tags
Uber's SSH CA A pam module that will authenticate a user based on them having an ssh certificate in their ssh-agent signed by a specified ssh CA. Linux
Netflix's BLESS An SSH Certificate Authority that runs as an AWS Lambda function and is used to sign SSH public keys. AWS,Linux
SSH Cert Authority An implementation of an SSH certificate authority/
Square's Sharkey Sharkey is a service for managing certificates for use by OpenSSH Linux
Google's IAP Cloud Identity-Aware Proxy (Cloud IAP) controls access to your cloud applications running on Google Cloud Platform. Cloud IAP works by verifying a user’s identity and determining if that user should be allowed to access the application. Google Cloud Platform
@jhaddix
jhaddix / all.txt
Last active May 28, 2024 07:01
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@mackwage
mackwage / windows_hardening.cmd
Last active June 8, 2024 16:54
Script to perform some hardening of Windows OS
:: Windows 10 Hardening Script
:: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering.
:: Obligatory 'views are my own'. :)
:: Thank you @jaredhaight for the Win Firewall config recommendations!
:: Thank you @ricardojba for the DLL Safe Order Search reg key!
:: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings!
:: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater
:
@MarkBaggett
MarkBaggett / pxpowershell.py
Created November 29, 2017 19:32
pxpowershell - A super simple interface to Powershell from Python
#!/usr/bin/env python
#Quick and Dirty Python Interface to Powershell from Python
#Requires pexpect module. Try "pip install pexpect"
import pexpect
from pexpect.popen_spawn import PopenSpawn
import re
import time
class pxpowershell(object):
def __init__(self, *args, **kwargs):