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
#include <stdio.h> | |
#include <wchar.h> | |
#include <windows.h> | |
#include <tlhelp32.h> | |
#include <shlwapi.h> | |
#include <cstdarg> | |
//#include <Python.h> | |
typedef void PyObject; | |
//#include <pystate.h> |
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
{ | |
"masscan": { | |
"order": 0, | |
"template": "masscan-*", | |
"settings": { | |
"index": { | |
"number_of_shards": "3", | |
"number_of_replicas": "1" | |
} | |
}, |
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 struct, string | |
from Crypto.Cipher import Blowfish | |
def blow(key, plaintext): | |
if not isinstance(plaintext, str): | |
raise TypeError('Plaintext must be str') | |
else: | |
if len(plaintext) % 8 != 0: | |
plaintext += "\0" * (8-(len(plaintext)%8)) |
NewerOlder