Skip to content

Instantly share code, notes, and snippets.

View madhuakula's full-sized avatar
I may be slow to respond.

Madhu Akula madhuakula

I may be slow to respond.
View GitHub Profile
@madhuakula
madhuakula / all.txt
Created January 9, 2019 15:58 — forked from jhaddix/all.txt
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.
.
..
........
@
*
*.*
*.*.*
🐎
@madhuakula
madhuakula / elasticsearch.md
Created September 25, 2018 03:35 — forked from nicolashery/elasticsearch.md
Elasticsearch: updating the mappings and settings of an existing index

Elasticsearch: updating the mappings and settings of an existing index

Note: This was written using elasticsearch 0.9.

Elasticsearch will automatically create an index (with basic settings and mappings) for you if you post a first document:

$ curl -X POST 'http://localhost:9200/thegame/weapons/1' -d \
'{
  "_id": 1,

Security Tools for AWS

I often get asked which tools are good to use for securing your AWS infrastructure so I figured I'd write a short listof some useful Security Tools for the AWS Cloud Infrastructure.

This list is not intended be something completely exhaustive, more so provide a good launching pad for someone as they dig into AWS and want to make it secure from the start.

Open Source

Auth

@madhuakula
madhuakula / README.md
Created March 12, 2018 06:16 — forked from FrankSpierings/README.md
Linux Container Escapes and Hardening
@madhuakula
madhuakula / restricted-psp.yaml
Created November 27, 2017 15:46 — forked from tallclair/restricted-psp.yaml
Restricted PodSecurityPolicy
apiVersion: extensions/v1beta1
kind: PodSecurityPolicy
metadata:
name: restricted
annotations:
seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default'
apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default'
seccomp.security.alpha.kubernetes.io/defaultProfileName: 'docker/default'
apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default'
spec:
@madhuakula
madhuakula / jessfraz.md
Created November 20, 2017 16:19 — forked from acolyer/jessfraz.md
Containers, operating systems and other fun things from The Morning Paper
@madhuakula
madhuakula / jessfraz.md
Created November 20, 2017 16:19 — forked from acolyer/jessfraz.md
Containers, operating systems and other fun things from The Morning Paper
@madhuakula
madhuakula / git-annex-gcs.sh
Created September 26, 2017 11:27 — forked from jterrace/git-annex-gcs.sh
An example of how to use Google Cloud Storage with git-annex
# Initialize git and git-annex
$ mkdir annex-gcs-test
$ cd annex-gcs-test/
$ git init
Initialized empty Git repository in /Users/jterrace/annex-gcs-test/.git/
$ git annex init "my machine"
init my machine ok
(Recording state in git...)
# Set up AWS credentials
@madhuakula
madhuakula / main.go
Created September 2, 2017 04:27 — forked from julz/main.go
containersched minicontainer
package main
import (
"fmt"
"os"
"os/exec"
"syscall"
)
func main() {