diff options
author | resdb <resdb@d3v11-VM.(none)> | 2011-10-22 14:43:31 -0500 |
---|---|---|
committer | resdb <resdb@d3v11-VM.(none)> | 2011-10-22 14:43:31 -0500 |
commit | fd78bbc2ba54cad2ae26019669c74a2c05464c9f (patch) | |
tree | f5ac78dd6ffb772e1355118a36cb6d40856d16d8 /contrib/splicex/EXAMPLES | |
parent | d65d5158288dd72b993fd2d44239c3f3d0247976 (diff) | |
download | resdb-fd78bbc2ba54cad2ae26019669c74a2c05464c9f.tar.gz resdb-fd78bbc2ba54cad2ae26019669c74a2c05464c9f.zip |
removed splice3 and added splicex
Diffstat (limited to 'contrib/splicex/EXAMPLES')
-rw-r--r-- | contrib/splicex/EXAMPLES | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/splicex/EXAMPLES b/contrib/splicex/EXAMPLES new file mode 100644 index 0000000..c6378f0 --- /dev/null +++ b/contrib/splicex/EXAMPLES @@ -0,0 +1,34 @@ +# This is rather basic so best to start here. + +splicex -command='unrar -pPASSWORD t file.rar' --test='All OK' -R + + +# you can then add a wordlist of your own :-) +# using the appropriate options + +--dictionary='wordlist.txt' + +# create a dictionary + +--create + + +# you can use some nice bash flexibility with a command like this. +# the option --flags should make sense on their own. if not +# --rtfm works ;-). splicex is reasonably documented. + +splicex --command='echo PASSWORD | aircrack-ng -b 00:11:22:33:44:55 -w - *.cap' --wep-5 --wep-13 --no-char --dictionary='MyWords.txt' --test='KEY FOUND' + +#some funny things you can do with splicex ;-) +splicex --command='figlet PASSWORD' -L + +##use splicex as a simple daemon +##!/bin/bash +# +#MyFunction() { +# while true; do +# splicex --command='ping -c1 www.example.com ; sleep 1 # PASSWORD' --test='some output' --exh-n +# done + # etc, etc + + |