I hereby claim:
- I am snovvcrash on github.
- I am snovvcrash (https://keybase.io/snovvcrash) on keybase.
- I have a public key whose fingerprint is 6371 60AE BFF0 4AF7 6BF6 8909 004B F717 C8E2 D0B8
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# Usage: GetZip.py 0.0.0.0 1337 [--xor 255] --md5 --parse | |
# Requirements: pip3 install tqdm pypykatz | |
import os | |
import socket | |
import zipfile | |
import hashlib | |
from argparse import ArgumentParser |
Function Set-GPOStatus | |
{ | |
<# | |
.Synopsis | |
Set the status of a Group Policy Object | |
.Description | |
Sets the status of one or more Group Policy objects. | |
.Example | |
PS C:\> Get-Gpo MyGPO | Set-GPOStatus -Status AllSettingsEnabled | |
.Example |
#!/usr/bin/env python3 | |
# Usage: python3 oaburl.py MEGACORP/j.doe:'Passw0rd!'@mx.example.com -e existent.email@example.com | |
from xml.dom import minidom | |
from argparse import ArgumentParser | |
from getpass import getpass | |
import requests |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
''' | |
One-liner demos: | |
curl -s https://gist.githubusercontent.com/snovvcrash/86bcbf65cbc89bf496fd19afcf19f6f5/raw/0fa599810a8c308d0f2feb1f0b62e0837bed39ea/s0c14lch3ck.py | python3 - <USERNAME> <YOUR_EMAIL> | |
wget -qO- https://gist.githubusercontent.com/snovvcrash/86bcbf65cbc89bf496fd19afcf19f6f5/raw/0fa599810a8c308d0f2feb1f0b62e0837bed39ea/s0c14lch3ck.py | python3 - <USERNAME> <YOUR_EMAIL> | |
''' | |
__author__ = 'Sam Freeside (@snovvcrash)' |
# -*- coding: utf-8 -*- | |
''' | |
How to use binascii | |
1. ASCII text string to hex string | |
hex_string = binascii.hexlify(<ASCII_TEXT>.encode('utf-8')) | |
Hex string to ASCII text string |
/** | |
* %file rbtmap.cxx | |
* %author Sam Freeside (@snovvcrash) | |
* %email snovvcrash@protonmail[.]ch | |
* %date 2017-03-25 | |
* | |
* %brief Red-black tree based map (test). | |
*/ | |
#include <iostream> |
I hereby claim:
To claim this, I am signing this object:
# | |
# bch157.py | |
# | |
# Encoder/Decoder for Non-Systematic (15,7,5) Binary BCH Code | |
# by snovvcrash | |
# 05.2017 | |
# | |
from random import seed, randint | |
from sys import exit |
/** | |
* secretary_problem_bruteforce.cpp | |
* | |
* Bruteforcing Secretary Problem | |
* by snovvcrash | |
* 04.2017 | |
*/ | |
/* | |
* Calculating running time for n applicants (on current machine) |