Skip to content

Instantly share code, notes, and snippets.

View zakird's full-sized avatar

Zakir Durumeric zakird

View GitHub Profile
rhcloud.com
freepornfull.com
justmysize.com
kompoz.me
allwomenstalk.com
lindamedic.com
maximonline.ru
planetromeo.com
www.net.cn
javjunkies.com
### Keybase proof
I hereby claim:
* I am zakird on github.
* I am zakir (https://keybase.io/zakir) on keybase.
* I have a public key whose fingerprint is D70D 134F A713 F45F F784 5711 98A3 5EEE 5966 EBBE
To claim this, I am signing this object:
{"name":"google.com","alexa_rank":1,"status":"SUCCESS","data":{"answers":[{"ttl":86395,"type":"CAA","tag":"issue","value":"symantec.com","flag":0}],"additionals":[{"ttl":341299,"type":"A","name":"ns1.google.com","answer":"216.239.32.10"},{"ttl":341299,"type":"A","name":"ns2.google.com","answer":"216.239.34.10"},{"ttl":341299,"type":"A","name":"ns3.google.com","answer":"216.239.36.10"},{"ttl":341299,"type":"A","name":"ns4.google.com","answer":"216.239.38.10"}],"authorities":[{"ttl":167769,"type":"NS","name":"google.com","answer":"ns1.google.com."},{"ttl":167769,"type":"NS","name":"google.com","answer":"ns2.google.com."},{"ttl":167769,"type":"NS","name":"google.com","answer":"ns4.google.com."},{"ttl":167769,"type":"NS","name":"google.com","answer":"ns3.google.com."}],"protocol":"udp"}}
{"name":"googleusercontent.com","alexa_rank":90,"status":"SUCCESS","data":{"answers":[{"ttl":86400,"type":"CAA","tag":"issue","value":"symantec.com","flag":0}],"additionals":[{"ttl":167770,"type":"A","name":"ns1.google.com","answ
---
receipt: Oz-Ware Purchase Invoice
date: 2012-08-06
customer:
first_name: Dorothy
family_name: Gale
items:
- part_no: A4786
descrip: Water Bucket (Filled)
diff --git a/ztag/annotations/export.py b/ztag/annotations/export.py
index b4472ff..930c2b2 100644
--- a/ztag/annotations/export.py
+++ b/ztag/annotations/export.py
@@ -1,4 +1,4 @@
-from ztag.annotation import *
+from ztag.annotation import *
class RSAExportTag(Annotation):
import ztag.test
class AgranatEmWeb(Annotation):
protocol = protocols.HTTP
subprotocol = protocols.HTTP.GET
port = None
def _process(self, d):
s = d["headers"]["server"]
@zakird
zakird / judycount.c
Created November 28, 2014 21:01
Judy Array Counting
#include <assert.h>
#include <stdint.h>
#include <arpa/inet.h>
#include <Judy.h>
void lml_set(Pvoid_t *a, uint64_t k1, uint64_t k2, uint64_t v)
{
Word_t *v_;
Pvoid_t b = *a;
JLI(v_, b, k1);
@zakird
zakird / gist:c90abcb3a6e5adb19456
Created October 13, 2014 03:17
SSLv3 Support
1% IPv4 All Certificates
Highest Support:
SSLv3: 9,817 (2.7%)
TLS1.0: 215,743 (60.4%)
TLS1.1: 2,227 (0.6%)
TLS1.2: 129,364 (36.2%)
Any SSLv3 Support:
SSLv3 Support: 342,659 (95.9%)
No SSLv3 Support: 14,492 (4.1%)
@zakird
zakird / lookup.py
Created September 23, 2014 17:01
ast lookup of
import os.path
import os
import subprocess
import sys
import logging
import multiprocessing
from multiprocessing import Pool
import time
import socket
@zakird
zakird / get-root-cas.ps1
Created August 23, 2014 02:05
powershell script that exports trusted root certificate authorities on Windows machine
$type = [System.Security.Cryptography.X509Certificates.X509ContentType]::Cert
get-childitem -path cert:\LocalMachine\AuthRoot | ForEach-Object {
$hash = $_.GetCertHashString()
[System.IO.File]::WriteAllBytes("$hash.der", $_.export($type) )
}