summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakids
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-02-15 17:45:03 +0000
committerOlivier Blin <oblin@mandriva.org>2005-02-15 17:45:03 +0000
commit7d441200d60ee35444b1de886829fdc4851f3a7c (patch)
tree310d3dd053087e7c60ddaa8f87395b0e20794df9 /perl-install/standalone/drakids
parent8fcf34c2418c0946215f67500793af17f4d886cb (diff)
downloaddrakx-backup-do-not-use-7d441200d60ee35444b1de886829fdc4851f3a7c.tar
drakx-backup-do-not-use-7d441200d60ee35444b1de886829fdc4851f3a7c.tar.gz
drakx-backup-do-not-use-7d441200d60ee35444b1de886829fdc4851f3a7c.tar.bz2
drakx-backup-do-not-use-7d441200d60ee35444b1de886829fdc4851f3a7c.tar.xz
drakx-backup-do-not-use-7d441200d60ee35444b1de886829fdc4851f3a7c.zip
initial import
Diffstat (limited to 'perl-install/standalone/drakids')
-rw-r--r--perl-install/standalone/drakids76
1 files changed, 76 insertions, 0 deletions
diff --git a/perl-install/standalone/drakids b/perl-install/standalone/drakids
new file mode 100644
index 000000000..03819d619
--- /dev/null
+++ b/perl-install/standalone/drakids
@@ -0,0 +1,76 @@
+#!/usr/bin/perl
+
+use strict;
+use lib qw(/usr/lib/libDrakX);
+use common;
+
+use Socket;
+use mygtk2 qw(gtknew);
+use POSIX qw(strftime);
+use network::activefw;
+
+use Gtk2::SimpleList;
+
+use ugtk2 qw(:create :helpers :wrappers);
+
+my $activefw = activefw->new(sub {
+ my ($con, $msg) = @_;
+ handle_blacklist($msg->get_args_list) if
+ $msg->get_interface eq "com.mandrakesoft.activefirewall" &&
+ $msg->get_path eq "/com/mandrakesoft/activefirewall" &&
+ $msg->get_member eq "Blacklist";
+});
+
+my $blacklist = Gtk2::SimpleList->new(addr => 'hidden',
+ N("Date") => 'text',
+ N("Attacker") => 'text',
+ N("Attack type") => 'text',
+ N("Service") => 'text',
+ N("Network interface") => 'text',
+ N("Protocol") => 'text',
+ );
+$blacklist->get_selection->set_mode ('multiple');
+
+my $w = ugtk2->new(N("Active Firewall : Blacklist"));
+gtkpack($w->{window},
+ gtknew('VBox', spacing => 5, children => [
+ 1, gtknew('ScrolledWindow', width => 600, height => 400, child => $blacklist),
+ 0, gtknew('HBox', children_tight => [
+ gtknew('Button', text => N("Remove from blacklist"),
+ clicked => \&unblacklist)
+ ]),
+ ]));
+init_blacklist();
+$w->show;
+Gtk2->main;
+
+ugtk2::exit(0);
+
+
+sub init_blacklist {
+ my @packets = $activefw->get_blacklist;
+ while (my @blacklist = splice(@packets, 0, 8)) {
+ handle_blacklist(@blacklist);
+ }
+}
+
+sub handle_blacklist {
+ my ($timestamp, $indev, $prefix, $sensor, $protocol, $addr, $port, $icmp_type) = @_;
+ push @{$blacklist->{data}}, [
+ $addr,
+ activefw::format_date($timestamp),
+ activefw::resolve_address(activefw::get_ip_address($addr)),
+ $prefix eq 'SCAN' ? N("Port scanning") :
+ $prefix eq 'SERV' ? N("Service attack") :
+ $prefix eq 'PASS' ? N("Password cracking") :
+ '',
+ activefw::get_service($port) || '',
+ $indev,
+ $protocol || '',
+ ];
+}
+
+sub unblacklist {
+ my @addr = uniq(map { $blacklist->{data}->[$_]->[0] } $blacklist->get_selected_indices);
+ $activefw->unblacklist($_) foreach @addr;
+}