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/env python3 | |
from enum import Enum | |
import getopt | |
import http.cookiejar | |
import json | |
import logging | |
import os | |
import queue | |
import shlex | |
import shutil |
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
# | |
# How to do domain fronting in Python with Requests. | |
# | |
# Send a request to an arbitrary IP address and force the | |
# SNI field and Host HTTP header to a certain value. | |
# | |
import http.client | |
import requests | |
import urllib3 |
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
// 1 - Go in the group members page and load 200/300 members | |
// 2 - Paste this in the console and wait | |
// 3 - Reload the page and do it again | |
var FBGMR = (function() { | |
var FBGroupMembersRemover = {}, | |
_id; |
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
""" | |
Generate a DNSSEC DS record based on the incoming DNSKEY record | |
The DNSKEY can be found using for example 'dig': | |
$ dig DNSKEY secure.widodh.nl | |
The output can then be parsed with the following code to generate a DS record | |
for in the parent DNS zone |