This file is indexed.

/usr/share/doc/libpoe-filter-ircd-perl/examples/irc.pl is in libpoe-filter-ircd-perl 2.44-1.

This file is owned by root:root, with mode 0o644.

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
# irc.pl
# A simple IRC robot.
# Usage: perl irc.pl

use strict;

# We will use a raw socket to connect to the IRC server.
use IO::Socket;
use POE::Filter::IRCD;

my $filter = POE::Filter::IRCD->new();

my %dispatch = ( 'ping' => \&irc_ping, '001' => \&irc_001, 'public' => \&irc_public );

# The server to connect to and our details.
my $server = "irc.perl.org";
my $nick = "simplebot$$";
my $login = "simple_bot";

# The channel which the bot will join.
my $channel = "#IRC.pm";

# Connect to the IRC server.
my $sock = new IO::Socket::INET(PeerAddr => $server,
                                PeerPort => 6667,
                                Proto => 'tcp') or
                                    die "Can't connect\n";

# Log on to the server.
print $sock "NICK $nick\r\n";
print $sock "USER $login 8 * :Perl IRC Hacks Robot\r\n";

# Keep reading lines from the server.
while (my $input = <$sock>) {
    $input =~ s/\r\n//g;
    foreach my $hashref ( @{ $filter->get( [ $input ] ) } ) {
	SWITCH: {
	  my $type = lc $hashref->{command};
	  $type = 'public' if $type eq 'privmsg' and $hashref->{params}->[0] =~ /^#/;
	  my @args;
	  push @args, $hashref->{prefix} if $hashref->{prefix};
	  push @args, @{ $hashref->{params} };
	  if ( defined $dispatch{$type} ) {
	    $dispatch{$type}->(@args);
	    last SWITCH;
	  }
	  print STDOUT join( ' ', "irc_$type:", @args ), "\n";
        }
    }
}

sub irc_ping {
  my $server = shift;
  print $sock "PONG :$server\r\n";
  return 1;
}

sub irc_001 {
  print STDOUT "Connected to $_[0]\n";
  print $sock "JOIN $channel\r\n";
  return 1;
}

sub irc_public {
  my ($who,$where,$what) = @_;
  print "$who -> $where -> $what\n";
  return 1;
}