I hereby claim:
- I am donnchac on github.
- I am donnchac (https://keybase.io/donnchac) on keybase.
- I have a public key ASD_GTJsWifE9w34yRQPX9dhr8rJJXVmHCVpGnn6A6XyJgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
""" | |
Cryptnote encryption algorithim | |
""" | |
import hashlib | |
import base64 | |
from binascii import unhexlify | |
from Crypto.Cipher import AES | |
""" |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
/* Hide the original text when a non-default language is selected */ | |
#french:target ~ [data-i18n-fr], | |
#french:target ~ * [data-i18n-fr], | |
#french:target ~ * * [data-i18n-fr], | |
#french:target ~ * * * [data-i18n-fr] { |
"ua": [ | |
{ | |
"doc_count": 2, | |
"key": "Facebook" | |
}, | |
{ | |
"doc_count": 1, | |
"key": "Other" | |
}, | |
{ |
Vidalia Tor Bundles have been discontinued | |
------------------------------------------ | |
The Vidalia Tor client and relay bundles are no longer supported. They client bundles have been replaced with the Tor Browser Bundle. | |
https://blog.torproject.org/blog/plain-vidalia-bundles-be-discontinued-dont-panic | |
If you would like to run a Tor relay please download the a recent copy of Tor from the main Tor Project download page. | |
https://www.torproject.org/download/download.html.en |
import re | |
import copy | |
import logging | |
import argparse | |
import email.parser | |
logger = logging.getLogger() | |
logger.setLevel(logging.DEBUG) | |
required_headers = ["dkim-signature", "content-type"] |
# sudo apt-get install libmail-dkim-perl | |
# perl validate-dkim.pl < 5205 | |
signature identity: @hillaryclinton.com | |
verify result: pass | |
pass |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import os | |
import hashlib | |
import argparse | |
import binascii | |
import struct | |
def encrypt_v1(imei, key): |
# bwscan --verbose scan --no-launch-tor -p 3000 --timeout 5 | |
2016-07-31 20:15:40+0200 [-] Log opened. | |
2016-07-31 20:15:40+0200 [-] Verbose log mode is on. | |
2016-07-31 20:15:40+0200 [-] Using /home/donnncha/.config/bwscanner as the data directory. | |
2016-07-31 20:15:40+0200 [-] Connecting to a running Tor instance | |
2016-07-31 20:15:40+0200 [-] Connected to a Tor instance. | |
2016-07-31 20:15:40+0200 [-] Performing a measurement scan with 3 relays. | |
2016-07-31 20:15:40+0200 [-] Downloading https://bwauth.torproject.org/bwauth.torproject.org/32M over $8C7106C880FE8AA1319DD71B59623FCB8914C9F1, $0DB5577A293D70F014663C68364F4D449C4D62DD | |
2016-07-31 20:15:40+0200 [-] Starting factory <txsocksx.client.SOCKS5ClientFactory instance at 0x7f9a74571cf8> | |
2016-07-31 20:15:40+0200 [-] Downloading https://bwauth.torproject.org/bwauth.torproject.org/16M over $CCA1BE38F343CF1E1B4BB1857A786957B056DC0F, $C92EAF09EB7B2B6D63DB776F7A7C025075765D29 |
# -*- coding: utf-8 -*- | |
""" | |
Monitors Tor control port for descriptor lookups and INTRODUCE1 | |
requests. | |
""" | |
import os | |
import time | |
import datetime | |
import argparse | |
import logging |