This file contains 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
#!/usr/bin/env python | |
""" | |
This script is a prototype of a ssl monitoring system. | |
It checks for the expiration date and alerts whether cert is | |
1. Expired | |
2. About to expire in 2 weeks | |
3. Valid, with the expiration date | |
Script uses asyncio to speed up checking hostnames simultaneously. | |
""" |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
This is a prototype for automating prod error tickets from GCP to Jira. | |
""" | |
import os | |
import json | |
import argparse | |
import subprocess | |
import logging as pylog | |
import datetime as d |
This file contains 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
curl -Lo nuxmv.tar.gz https://nuxmv.fbk.eu/theme/download.php?file=nuXmv-2.0.0-linux64.tar.gz | |
gunzip nuxmv.tar.gz | |
tar -xvf nuxmv.tar | |
cat << EOF >> ~/.bashrc | |
export PATH="$PATH:$(pwd)/nuXmv-2.0.0-Linux/bin/" | |
alias nu="nuXmv" | |
EOF | |
source ~/.bashrc |
This file contains 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 ctypes | |
import os | |
from unicorn import * | |
from unicorn.x86_const import * | |
from capstone import * | |
import struct | |
main_start = 0x00400000 | |
start = 0x00401255 | |
end = 0x00401324 |
OlderNewer