Mercurial > hg > anonet-resdb
comparison contrib/splicex/EXAMPLES @ 678:93a5484092a2 draft
removed splice3 and added splicex
author | resdb <resdb@d3v11-VM.(none)> |
---|---|
date | Sat, 22 Oct 2011 14:43:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
676:4faf15f647da | 678:93a5484092a2 |
---|---|
1 # This is rather basic so best to start here. | |
2 | |
3 splicex -command='unrar -pPASSWORD t file.rar' --test='All OK' -R | |
4 | |
5 | |
6 # you can then add a wordlist of your own :-) | |
7 # using the appropriate options | |
8 | |
9 --dictionary='wordlist.txt' | |
10 | |
11 # create a dictionary | |
12 | |
13 --create | |
14 | |
15 | |
16 # you can use some nice bash flexibility with a command like this. | |
17 # the option --flags should make sense on their own. if not | |
18 # --rtfm works ;-). splicex is reasonably documented. | |
19 | |
20 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' | |
21 | |
22 #some funny things you can do with splicex ;-) | |
23 splicex --command='figlet PASSWORD' -L | |
24 | |
25 ##use splicex as a simple daemon | |
26 ##!/bin/bash | |
27 # | |
28 #MyFunction() { | |
29 # while true; do | |
30 # splicex --command='ping -c1 www.example.com ; sleep 1 # PASSWORD' --test='some output' --exh-n | |
31 # done | |
32 # etc, etc | |
33 | |
34 |