626
|
1 # This is rather basic so best to start here. |
|
2 |
|
3 splice3 -c"unrar -pPASSWORD t file.rar" -t"All OK" -ACLNRS |
|
4 |
|
5 # or |
|
6 |
|
7 splice3 -command='unrar -pPASSWORD t file.rar' -t'All OK' -R |
|
8 |
|
9 |
|
10 # you can then add a wordlist of your own :-) |
|
11 # using the appropriate options |
|
12 |
|
13 -d 'wordlist.txt' |
|
14 --dictionary='wordlist.txt' |
|
15 |
|
16 # create a dictionary |
|
17 |
|
18 --create |
|
19 |
|
20 |
|
21 # you can use some nice bash flexibility with a command like this. |
|
22 # the option --flags should make sense on their own. if not |
|
23 # --rtfm works ;-). splice3 is reasonably documented. |
|
24 |
|
25 splice3\ |
|
26 --command='echo PASSWORD | aircrack-ng -b 00:11:22:33:44:55 -w - *.cap'\ |
|
27 --wep-5 --wep-13 --no-char --dictionary='MyWords.txt'\ |
|
28 --test='KEY FOUND' |
|
29 |
|
30 |
|
31 #some funny things you can do with splice3 ;-) |
|
32 splice3 --command='figlet PASSWORD' -L |
|
33 |
|
34 ##use splice3 as a simple daemon |
|
35 ##!/bin/bash |
|
36 # |
|
37 #MyFunction() { |
|
38 # while true; do |
|
39 # splice3 --command='ping -c1 www.example.com ; sleep 1 # PASSWORD' --test='some output' --exh-n |
|
40 # done |
|
41 |
|
42 |
|
43 |