/usr/bin/radark is in argus-client 1:3.0.8.2-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | #!/usr/bin/perl
# Argus Client Software. Tools to read, analyze and manage Argus data.
# Copyright (c) 2000-2016 QoSient, LLC
# All Rights Reserved
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# radark.pl - Report on dark address space accesses.
# This script takes as input an argus data stream (either file
# or live stream) and generates a scanner report.
# The strategy is to detect single host dark address accesses
# report on the internal hosts that are discovered and respond.
#
# The technique uses racluster to identify a current dark address
# space, using "no response" indications and specific ICMP
# unreachable events, and then use the list of dark address
# 'accessors' to generate a scanners list.
# Who really cares about scanners, really, but we are interested
# in what they discover, so we try to realize if there were any
# internal responders to the scans, and more importantly, did
# an internal machine provide any user data to the scanner.
#
# The process involves clustering all the data to eliminate
# spurious traffic that the probe may have been unable to
# classify and correct for any direction issues.
#
# Then the traffic is processed through a series of filters
# designed to identify dark address space traffic. From this
# traffic, the set of scanners is formulated, and processed
# to generate a list of searchers, the number of hosts discovered,
# and what hosts responded to the the scan with data.
#
#
# $Id: //depot/argus/clients/examples/radark/radark.pl#6 $
# $DateTime: 2016/06/01 15:17:28 $
# $Change: 3148 $
#
#
use POSIX;
use strict;
use Digest::MD5 qw(md5 md5_hex md5_base64);
my %attr = (PrintError=>0, RaiseError=>0);
my $scanthresh = 0;
my $localaddr = "";
my $multisig = "";
my $verbose = 0;
my $force = 0;
my $percent = 0;
my $filter = 0;
my $hashindex = "";
my @arglist = ();
my $args = "";
ARG: while (my $arg = shift(@ARGV)) {
chomp $arg;
for ($arg) {
/^-L/ && do { $localaddr = shift (@ARGV); $hashindex .= $arg; next ARG; };
/^-m/ && do { $multisig = shift (@ARGV); $hashindex .= $arg; next ARG; };
/^-N/ && do { $scanthresh = shift (@ARGV); next ARG; };
/^-v/ && do { $verbose++; next ARG; };
/^-f/ && do { $force++; $hashindex .= $arg; next ARG; };
/^-p/ && do { $percent++; next ARG; };
/^-$/ && do { $filter++; };
/^--$/ && do { $filter++; };
}
$hashindex .= $arg;
$arglist[@arglist + 0] = $arg;
}
if ($localaddr eq "") {
usage();
}
if ($filter) { $arglist[@arglist + 0] = "and net $localaddr"; }
else { $arglist[@arglist + 0] = " -- net $localaddr"; }
my $hash = md5_hex($hashindex);
my $RADATA = "radark.$hash";
RaScanProcessArgusData ();
RaScanGenerateScannerList ();
RaScanGenerateScannerReport ();
RaScanCleanup ();
exit;
sub RaScanProcessArgusData {
stat ("$RADATA");
if ( ! -d _ ) {
`mkdir -p $RADATA`;
}
stat ("$RADATA/racluster.out");
if ( ! -f _ || $force) {
if ($verbose) {print "conditioning data\n"};
if ($verbose) {print "cmd: racluster -w - @arglist | ra -E $RADATA/racluster.out -w $RADATA/raunreach.out - unreach\n"};
`racluster -nnw - @arglist | ra -nnE $RADATA/racluster.out -w $RADATA/raunreach.out - unreach`;
} else {
if ($verbose) {print "using existing $RADATA/racluster.out data\n";}
}
}
my %wildcardports = ();
my $lastaddr = "";
my $lastproto = "";
my $lastport = "";
my $searcher = "";
our (%addrs, %daddrs, %sdata, %adata, %probes, $thisaddr);
my ($data, $startime, $srcid, $dur, $saddr, $daddr, $trans, $proto, $dport);
my ($hosts, $srvhosts, $filter, $timerange, $resp);
sub RaScanGenerateScannerList {
#
# Lets manage the radarkaddress.out file. These are the internal hosts
# we get from looking at unreachables. We'll create the darkaddress.out
# file, and if there is one above us, we'll update that as well.
#
stat ("$RADATA/darkaddress.out");
if ( ! -f _ || $force) {
if ($verbose) {print "generating unreachable address list.\n"};
if ($verbose) {print "cmd: racluster -nnM norep -m saddr daddr -r $RADATA/rareach.out -w - -- \\\n (not icmp) and (not src net $localaddr and dst net $localaddr) \\\n | racluster -nnm saddr -w $RADATA/darkaddress.out\n"};
`racluster -nnM norep -m saddr daddr -r $RADATA/raunreach.out -w - -- \\\(not icmp\\\) and \\\(not src net $localaddr and dst net $localaddr\\\) | racluster -nnm saddr -w $RADATA/darkaddress.out`;
} else {
if ($verbose) {print "using existing $RADATA/lightnet.txt data\n"};
}
# Now lets tally the potential scan data to find remote hosts that touch more than one
# dark net address:port pair, i.e. icmp unreachable or no response to stimulation on
# a specific scan strategy. First lets build the list of active addresses, this will
# allow us to realize the darknet addresses, which will be our trigger for a scan. By
# adding ports to this list as well we'll get the whole thing.
#
stat ("$RADATA/lightnet.out");
if ( ! -f _ || $force) {
if ($verbose) {print "generating active network data.\n"};
if ($verbose) {print "cmd: racluster -nnM norep rmon -m smac saddr daddr -r $RADATA/racluster.out -w - - appbytes gt 0 \\\n | racluster -nnm smac saddr -w $RADATA/lightnet.out - src net $localaddr and not dst net $localaddr and src pkts gt 0\n"};
`racluster -nnM norep rmon -m smac saddr daddr -r $RADATA/racluster.out -w - - appbytes gt 0 | racluster -nnm smac saddr -w $RADATA/lightnet.out - src net $localaddr and not dst net $localaddr and src pkts gt 0`;
} else {
if ($verbose) {print "using existing $RADATA/lightnet.txt data\n"};
}
stat ("$RADATA/lightnet.txt");
if ( ! -f _ || $force) {
if ($verbose) {print "generating active network entities.\n"};
if ($verbose) {print "cmd: ra -nns saddr -r $RADATA/lightnet.out > $RADATA/lightnet.txt\n"};
`ra -nns saddr -r $RADATA/lightnet.out > $RADATA/lightnet.txt`;
} else {
if ($verbose) {print "using existing $RADATA/lightnet.txt data\n"};
}
#
# Now lets generate a scanners list. These are the hosts that touch something that
# is not active. This will give us the candiate scanner list with the number of
# host:proto:port that it touches. We'll want those that hit more than one.
# So, algorithm is, grab any traffic where the destination addres is local, but
# not active.
#
stat ("$RADATA/darkscanners.out");
if ( ! -f _ || $force) {
if ($verbose) { print ("creating darkscanners list\n"); }
if ($verbose) { print ("cmd: rafilteraddr -nnm daddr -vf $RADATA/lightnet.txt -R $RADATA/racluster.out -w - - not src net $localaddr and dst net $localaddr | \\\n racluster -nnm smac saddr -w $RADATA/darkscanners.out;\n")};
`rafilteraddr -nnm daddr -vf $RADATA/lightnet.txt -R $RADATA/raunreach.out $RADATA/racluster.out -w - - not src net $localaddr and dst net $localaddr | racluster -nnm smac saddr -w $RADATA/darkscanners.out`;
stat ("$RADATA/darkscanners.out");
if ( -f _ ) {
if ($verbose) { print ("cmd: ra -nnL-1 -r $RADATA/darkscanners.out -s saddr > $RADATA/darkscanners.txt\n")};
`ra -nnL-1 -r $RADATA/darkscanners.out -s saddr > $RADATA/darkscanners.txt`;
}
} else {
if ($verbose) { print "using existing $RADATA/darkscanners.out data\n"; }
}
stat ("$RADATA/scanreport.out");
if ( ! -f _ || $force) {
stat ("$RADATA/darkscanners.txt");
if ( -f _ ) {
if ($verbose) { print ("creating scan report file\n"); }
`rafilteraddr -nnm saddr -f $RADATA/darkscanners.txt -r $RADATA/racluster.out -w - | racluster -nnM norep -m smac dmac saddr daddr -w - | racluster -nnm smac saddr -w - | rasort -nnm trans -w $RADATA/scanreport.out`;
}
} else {
if ($verbose) { print "using existing $RADATA/scanreport.out data\n"; }
}
# last generate the time range for this report
stat ("$RADATA/timerange.out");
if ( ! -f _ || $force) {
if ($verbose) {print "generating time range\n"};
`ratimerange -nnr $RADATA/racluster.out > $RADATA/timerange.out`;
}
open(SESAME, "$RADATA/timerange.out");
while ($data = <SESAME>) {
chomp $data;
$timerange = $data;
}
close(SESAME);
}
sub RaScanGenerateScannerReport {
if ($verbose) { print "generating report\n"; }
# Now build the scanner list for the report.
stat ("$RADATA/scanreport.out");
if ( -f _ || $force) {
my @args = "ra -nnL-1 -r $RADATA/scanreport.out -s saddr dur trans -c , ";
my $iter = 0;
my $cnt = 0;
open(SESAME, "@args |");
while ($data = <SESAME>) {
($saddr, $dur, $trans) = split (/,/, $data);
if ($trans > $scanthresh) {
$addrs{$saddr} = "$trans,$dur";
$cnt++;
}
}
close(SESAME);
}
print "Scanner Report $timerange\n";
if (($searcher = scalar(keys(%addrs))) > 0 ) {
for $thisaddr ( sort ordinally keys(%addrs) ) {
($trans, $dur, $daddr, $resp) = split (/,/, $addrs{$thisaddr});
printf " %15.15s scanned %8d hosts in %16.16s secs discovered %6d hosts with %6d responders\n", $thisaddr, $trans, $dur, $daddr, $resp;
}
} else {
printf " No Scanners Found\n";
}
}
sub RaScanCleanup {
if ($verbose) { print "cleaning up\n"; }
}
sub ordinally {
$addrs{$b} <=> $addrs{$a};
}
sub subliminally {
my @a_fields = split /,/, @{$daddrs{$thisaddr}{$a}}[0];
my @b_fields = split /,/, @{$daddrs{$thisaddr}{$b}}[0];
$b_fields[2] <=> $a_fields[2];
}
sub numerically {
$wildcardports{$lastaddr}{$lastproto}{$a} <=> $wildcardports{$lastaddr}{$lastproto}{$b}
||
$a <=> $b
}
sub usage {
printf "radark -L localaddr(cidr) -R data [-N threshold] [-m signum] [-vfp]\n";
exit;
}
|