/usr/share/irssi/scripts/cloneprot.pl is in irssi-scripts 20131030.
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | use strict;
use vars qw($VERSION %IRSSI);
use Irssi;
$VERSION = "1.11";
%IRSSI = (
authors => "Rick (strlen) Jansen",
contact => "strlen\@shellz.nl",
name => "cloneprot",
description => "Parses OperServ notices to make autokill aliases from clonewarnings",
license => "GPL/1",
url => "http://www.shellz.nl/",
changed => "Wed Mar 13 20:26:46 CET 2002",
);
my ($lastmask, $clones, $trig, $hostmask, $username, $hostname);
sub event_callback {
my ($server, $data, $sender, $address) = @_;
my $count = 0;
if ($sender eq $server->{address}) {
if ($data =~ /from OperServ: CLONES\((\d+)\): /) {
$clones = $1;
$trig = $clones + 2;
if ($data =~ /((\S+)\@(\S+))/) {
$hostmask = $1;
$username = $2;
$hostname = $3;
if ($hostmask eq $lastmask) {
$count++;
Irssi::print("[Warning #$count] $clones clones.");
Irssi::print("[[/tk (1h)] - [/ak 1|2 (6h)] - [/tr ($trig)] - [/cw 1|2 (/who)]]");
} else {
$server->command("/who $hostname");
Irssi::print("[Warning #1: $clones clones.");
Irssi::print("[1: $hostmask] - [2: $hostname]");
Irssi::print("[[/tk (1h)] - [/ak 1|2 (6h)] - [/tr ($trig)] - [/cw 1|2 (/who)]]");
$count=1;
}
Irssi::signal_stop();
}
}
}
}
sub cw_callback {
my ($mode,$server) = @_;
if ($mode == 1) {
$server->command("/who $hostmask");
} elsif ($mode == 2) {
$server->command("/who $hostname");
} else {
Irssi::print("Usage: /cw 1|2");
}
}
sub tk_callback {
my ($null,$server) = @_;
$server->command("/msg operserv tempakill $hostname Don't clone on SorceryNet.");
}
sub ak_callback {
my ($mode,$server) = @_;
if ($mode == 1) {
$server->command("/msg operserv autokill 6 $hostmask Don't clone on SorceryNet.");
} elsif ($mode == 2) {
$server->command("/msg operserv autokill 6 *!*\@$hostname Don't clone on SorceryNet.");
} else {
Irssi::print("Usage: /ak 1|2");
}
}
sub tr_callback {
my ($mode,$server) = @_;
if ($mode == 1) {
$server->command("/msg operserv trigger $username\@$hostname $trig");
} elsif ($mode == 2) {
$server->command("/msg operserv trigger $hostname $trig");
} else {
Irssi::print("Usage: /tr 1|2");
}
}
Irssi::command_bind("tk","tk_callback");
Irssi::command_bind("ak","ak_callback");
Irssi::command_bind("tr","tr_callback");
Irssi::command_bind("cw","cw_callback");
Irssi::signal_add("server event","event_callback");
|