Server: Nginx with Phusion Passenger
Ruby Version: 2.1.3
User System: deploy
| wordlist created from original 41G stash via: | |
| grep -rohP '(?<=:).*$' | uniq > breachcompilation.txt | |
| Then, compressed with: | |
| 7z a breachcompilation.txt.7z breachcompilation.txt | |
| Size: |
| --- | |
| - name: create some vms | |
| hosts: localhost | |
| connection: local | |
| vars_prompt: | |
| - name: "vcenter_host" | |
| prompt: "Enter vcenter host" | |
| private: no | |
| default: "vcsa" | |
| - name: "vcenter_user" |
| #!/usr/bin/env python | |
| import os | |
| import math | |
| from numpy import interp | |
| from random import choice, sample | |
| from time import sleep | |
| from math import log1p | |
| # from colour import Color |
| #!/bin/bash | |
| # USAGE: Will create a .tar.gz with CSVs of all tables in schema. | |
| # Configure below and run as root (i.e. the user mysql runs as) | |
| # | |
| # The script will (or should) SELECT * INTO OUTFILE your tables | |
| # and save them into csv files under /tmp dir first, then name them | |
| # like the tables and move them thogether into a directory. Then | |
| # it will tar everything together and chown you the tarball. | |
| # Schema to export: |