Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use DBI;
    ...
            }
        }
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    use DBI;
    ...
       $output = $output . $s_ip . $s_users . $s_ports . $s_attempts . $s_
    +who_is . $output_end;
       print $output;
    }
    
  3. or download this
    CREATE TABLE sqlite_stat1(tbl,idx,stat);
    CREATE TABLE "attempts" (
        "eid" INTEGER PRIMARY KEY AUTOINCREMENT,
    ...
    ip i on i.eid = a.ip_id join
    users u on u.eid = a.user_id
    order by a.timestamp;