1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/bin/bash
# variables -- definitions used by gen-control.sh
#
# This file is part of the forensics-extra and is based on file with the same
# name from forensics-all package.
#
# Copyright 2018-2022 Joao Eriberto Mota Filho <eriberto@debian.org>
#
# You can use this program under the BSD-3-Clause conditions.
#################
### Variables ###
#################
# Standards Version
STD_VER=4.7.2
# Debhelper level
DH_LEVEL=13
# Here is the list of packages in main/Sid.
LIST='/var/lib/apt/lists/*debian.org_debian_dists_sid_main_binary-*_Packages'
# Wordlist to be used by search-for-new.sh. You can use five numbered lines.
# Use spaces to separate the words. You can use regex.
WORDS1="brute.?force crack dictionary embedded forensic password passphrase"
WORDS2="pentest steg /usr/share/dict compression pcap tcpdump scan"
WORDS3="carver carving memory.*anal rescue"
WORDS4=""
WORDS5=""
# Exclusions for search-for-new.sh
EXCLUSIONS='^.+-common -|^.+-data -|^.+-dbg -|^.+-dkms -|^.+-doc -|^erlang-|^golang-|^lib|^php|^python|^ruby|^texlive-'
|