- Argument: IT burns money...
- Response: Yes, IT burns money and those fumes protect the integrity of information assets and allow for business to continue around the clock.
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
| # -*- encoding: utf-8 -*- | |
| # requires a recent enough python with idna support in socket | |
| # pyopenssl, cryptography and idna | |
| from OpenSSL import SSL | |
| from cryptography import x509 | |
| from cryptography.x509.oid import NameOID | |
| import idna | |
| from socket import socket |
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 | |
| # | |
| # Written By Zach Jetson | |
| # Licence: MIT | |
| # | |
| # Use OpenSSL to inspect the decoded SSL cert | |
| if [ -z "$1" ]; then | |
| printf "[!] Error: missing domain in argument\n\n" | |
| printf "usage: ssl_remotecert domain\n\n" | |
| printf "\tdomain\tThe domain to query for SSL certs\n\n" |
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 | |
| # Perform a deeper whois to get the actual registrant data | |
| if [ -z "$1" ]; then | |
| printf "[!] Error: missing domain in argument\n\n" | |
| printf "usage: whois2 domain\n\n" | |
| printf " domain\tThe domain to look up\n\n" | |
| exit 1 | |
| fi |
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 | |
| if [ -z $(which jq) ]; then | |
| curl -Lks "https://www.howsmyssl.com/a/check" | |
| else | |
| curl -Lks "https://www.howsmyssl.com/a/check" | jq '.' 2>/dev/null | |
| fi |
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 | |
| echo "This is only for MACOS" | |
| echo "Creating 1GB RAM disk volume> RAMDisk" | |
| diskutil erasevolume HFS+ 'RAMDisk' `hdiutil attach -nomount ram://2048000` |
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
| #!/usr/bin/python | |
| import xml.etree.ElementTree as ET | |
| import subprocess | |
| import time | |
| import os | |
| #http://xael.org/pages/python-nmap-en.html | |
| import nmap | |
| def parseMasscanReport(path): | |
| hostsPorts = {} |
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
| Follow this guide: | |
| http://technologist.pro/virtualization/boot-from-external-physical-hard-drive-in-vmware-fusion | |
| Add these lines to your .vmx files instead: | |
| ide1:0.present = "TRUE" | |
| ide1:0.fileName = "usb-ext-hdd.vmdk" |
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
| y=๏ฝฐ( ๏พะด๏พ)๏ฝฅโต. | |
| (๏พะ๏พ)yโโ~~ | |
| (\/) (ยฐ,,ยฐ) (\/) | |
| (`๏ฝฅฯ๏ฝฅยด) | |
| แถ แตแดฅแตแถ |
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
| package main | |
| // sourced from https://filippo.io/Ticketbleed | |
| import ( | |
| "crypto/tls" | |
| "fmt" | |
| "log" | |
| "strings" | |
| "os" |