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
Homebrew build logs for unbound on macOS 10.11.6 | |
Build date: 2018-02-21 18:00:46 |
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
magnet:?xt=urn:btih:9136BFDE8CD66E6924CDC2D48873D536E7B435DF&dn=34c3-8710-deu-eng-Relativitaetstheorie_fuer_blutige_Anfaenger_hd.mp4&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&ws=http%3a%2f%2fmirror.eu.oneandone.net%2fprojects%2fmedia.ccc.de%2fcongress%2f34c3%2fh264-hd%2f34c3-8710-deu-eng-Relativitaetstheorie_fuer_blutige_Anfaenger_hd.mp4&ws=http%3a%2f%2fftp.kullen.rwth-aachen.de%2fcongress%2f2017%2fh264-hd%2f34c3-8710-deu-eng-Relativitaetstheorie_fuer_blutige_Anfaenger_hd.mp4 | |
magnet:?xt=urn:btih:D228EA8572621139BBEDC54C961008E4DC0DA78B&dn=34c3-8724-eng-fra-deu-Defeating_Not_Petyas_Cryptography_hd.mp4&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&ws=http%3a%2f%2fmirror.eu.oneandone.net%2fprojects%2fmedia.ccc.de%2fcongress%2f34c3%2fh264-hd%2f34c3-8724-eng-fra-deu-Defeating_Not_Petyas_Cryptography_hd.mp4&ws=http%3a%2f%2fftp.kullen.rwth |
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
Nmap scan report for d162-156-x-x.bchsia.telus.net (162.156.x.x) | |
Host is up (0.0079s latency). | |
Scanned at 2017-11-27 23:11:01 UTC for 5s | |
Not shown: 65519 closed ports | |
PORT STATE SERVICE | |
19/tcp filtered chargen | |
21/tcp filtered ftp | |
25/tcp filtered smtp | |
53/tcp filtered domain | |
80/tcp filtered http |
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
root@angrybear:~/IntelME# python intel_sa00086.py | |
INTEL-SA-00086 Detection Tool | |
Copyright(C) 2017, Intel Corporation, All rights reserved | |
Application Version: 1.0.0.128 | |
Scan date: 2017-11-21 19:27:20 GMT | |
*** Host Computer Information *** | |
Name: angrybear | |
Manufacturer: Supermicro |
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/expect | |
set PASSWORD "changeme" # Change this | |
set HOST "switch-1910" # host in .ssh/config | |
spawn ssh $HOST | |
expect "password: " | |
send "$PASSWORD\r" | |
expect "Copyright (c) 2010-2017 Hewlett Packard Enterprise Development LP" # Could use a more generic detection for the prompt. | |
send "_cmdline-mode on\r" | |
expect "All commands can be displayed and executed." | |
send "Y\r" |
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
Homebrew build logs for binwalk on macOS 10.11.6 | |
Build date: 2017-10-18 12:32:27 |
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
In no particular order | |
- Calgary, AB | |
- Edmonton, AB | |
- Melbourne, AU (MAKE THIS HAPPEN OR ELSE I WILL AFTER GETTING MY EYES FIXED) | |
- Paris, iie-de-France, France | |
- Boulder, CO | |
- Amsterdam, NL | |
- Germany (CCC conference and other things) |
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 argparse | |
from base64 import b64decode | |
parser = argparse.ArgumentParser(description="Create a Public-Key-Pins header from a file containing a list of pin-sha256 hashes.") | |
parser.add_argument('--file', dest='filepath', action='store', required=True, metavar="FILE", help="Input file") | |
parser.add_argument('--max-age', dest='maxage', action='store', type=int, required=True, metavar="INT", help="Max age (in seconds)") | |
parser.add_argument('--report-only', dest='reportonly', action='store_true', help="Whether to add Report-Only suffix to header") | |
parser.add_argument('--include-sub-domains', dest='includesubdomains', action='store_true', help="Include sub domains with this header") | |
parser.add_argument('--report-uri', dest='reporturi', action='store', help="Report URI/URL for reporting HPKP violations.") |
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 | |
# coding: utf-8 | |
import sys | |
import os | |
import argparse, json, base64, struct | |
import urllib2 | |
from datetime import datetime | |
import re |
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
asdfasdf |