This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "GCP_Detections", | |
"versions": { | |
"attack": "14", | |
"navigator": "4.9.1", | |
"layer": "4.5" | |
}, | |
"domain": "enterprise-attack", | |
"description": "", | |
"filters": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "GCP_Detections", | |
"versions": { | |
"attack": "14", | |
"navigator": "4.9.1", | |
"layer": "4.5" | |
}, | |
"domain": "enterprise-attack", | |
"description": "", | |
"filters": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update_shebangs: | |
grep -m1 -r -l '^#!.*python' venv/bin/ | while read -r filename; do \ | |
echo "$${filename}"; \ | |
head -n1 "$${filename}"; \ | |
sed -i -e '1 s|^#!.*python|#!/opt/rh/rh-python38/root/bin/python|' "$${filename}"; \ | |
head -n1 "$${filename}"; \ | |
done |
I hereby claim:
- I am dandye on github.
- I am dandye (https://keybase.io/dandye) on keybase.
- I have a public key ASA-gPRwMft8T6zm3iIHKh2VSVhf1naW-T-xvApafZesnQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -c 'import yaml,sys;yaml.safe_load(sys.stdin)' < .travis.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import boto3 | |
import csv | |
from botocore.exceptions import ClientError | |
ec2 = boto3.client('ec2') | |
def get_snapshots(): | |
return ec2.describe_snapshots(OwnerIds=['self'])['Snapshots'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function splitDate(date) { | |
var rdate = /(\d+).(\d+).(\d+)/ | |
return rdate.exec(date) | |
} | |
var [ , year, month, day] = splitDate('2015-11-06') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Mount a MacOS Directory via VirtualBox Shared Folder | |
# and open port 8000 for Django development server | |
# | |
# Args: | |
# ${1} mount name (optional; default: "edge_dev") | |
# | |
# Usage: | |
# sudo ./mount_edge.sh edge_dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[admin@edge ~]$ sudo yum install lxc lxc-templates | |
... | |
[admin@edge ~]$ rpm -qil lxc-templates | grep centos | |
/usr/share/lxc/config/centos.common.conf | |
/usr/share/lxc/config/centos.userns.conf | |
/usr/share/lxc/templates/lxc-centos | |
[admin@edge ~]$ sudo lxc-create -t centos -n c1 |
NewerOlder