comparison contrib/splice3/EXAMPLES @ 642:3e16546fc507 draft

Merge commit '9d96abc29951a43d8319743f485b48846318496e'
author Nick <nick@somerandomnick.ano>
date Tue, 04 Oct 2011 22:39:25 +0000
parents ed8cff39b9a7
children
comparison
equal deleted inserted replaced
622:fd1945470e54 642:3e16546fc507
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