File: find_proxies.cfg

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (21 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Config file for find_proxies.pm
#
# $output_file (required)
#    A valid path to write an output file
#    containing the collected summary data.
#
# @proxy_keywords (required)
#    An array containing keywords to search
#    for proxy usage in the hostname and URI.
#
# $prune_limit (not required)
#    Tagged hostnames with fewer than this
#    number of hits will be discarded. Can
#    be set to any positive integer.

$output_file = "find_proxies.txt";
@proxy_keywords = ( "proxy", "nph-" );
$prune_limit = 10;

1;