This file contains 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
#!/bin/bash | |
# splitlen-extra by _NSAKEY | |
# Based on the concept of splitlen from hashcat-utils which can be found here: | |
# https://hashcat.net/wiki/doku.php?id=hashcat_utils | |
# As of version 1.0, splitlen allow up to 64 char passes, and this script | |
# takes orders of magnitude longer to run. Consider this script obsolete. | |
# Usage: ./splitlen.sh wordlist.dict dictionary-folder | |
# $1 is the name of your dictionary and $2 is the name of the folder for the |
This file contains 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
#!/bin/sh | |
# The product of brainstorming in the Cryptoparty room at PhreakNIC 18. | |
# The original script by emptyset can be found here: | |
# https://gist.github.com/emptyset/551f82819c339fc6f0db | |
# Lightly modified by _NSAKEY. | |
# This script was tested on Debian Wheezy and FreeBSD 10.1-RELEASE with bash, csh, and sh. | |
# Example: ./subtilt.sh Teenage_Mutant_Ninja_Turtles.srt Friday.srt | |
# The above will give you an srt file with Friday's dialogue set to display at the set times from the TMNT srt file. |