File: test-aircrack-ng-0010.sh

package info (click to toggle)
aircrack-ng 1%3A1.7-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 20,012 kB
  • sloc: ansic: 66,944; cs: 5,392; sh: 3,693; python: 2,647; pascal: 1,074; makefile: 257; cpp: 43
file content (16 lines) | stat: -rwxr-xr-x 315 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -ef
#./aircrack-ng -X  -K ./test.ivs

if test ! -z "${CI}"; then exit 77; fi

"${abs_builddir}/../aircrack-ng${EXEEXT}" \
    ${AIRCRACK_NG_ARGS} \
    -X -K \
    "${abs_srcdir}/test.ivs" \
    -l /dev/null | \
        ${GREP} "KEY FOUND" | ${GREP} "AE:5B:7F:3A:03:D0:AF:9B:F6:8D:A5:E2:C7"

exit 0