From: Will Budic Date: Mon, 6 Jan 2020 01:57:54 +0000 (+1100) Subject: Access flood and debug settings implementation. X-Git-Url: https://lifelog.hopto.org/gitweb/?a=commitdiff_plain;h=d6ee0e440e22e63d1c3b6028c63dbad7b26ce91b;p=LifeLog.git Access flood and debug settings implementation. --- diff --git a/Current Development Check List.md b/Current Development Check List.md index 7aefc2f..43ca16d 100644 --- a/Current Development Check List.md +++ b/Current Development Check List.md @@ -9,6 +9,8 @@ This version is not compatible in data structure to prior versions. Data migrati ### v.1.7 Encountered +* Mutli new alias access flood attack security trigger implementation. +* Debug system settings implementaiton. * ✔ Delete page updated to show better display of entries. * Provide sub alias login that sets data visible to only a set of categories. * View specific based login on a different password. diff --git a/dbLifeLog/main.cnf b/dbLifeLog/main.cnf index 8b869d7..568cdba 100644 --- a/dbLifeLog/main.cnf +++ b/dbLifeLog/main.cnf @@ -19,6 +19,7 @@ Credential format:< , dont enable here using AUT 24|$FRAME_SIZE = 0`Youtube frame size settings, 0 - Large, 1 - Medium, 2- Small. 26|$RTF_SIZE = 2`RTF Document height, 0 - Large, 1 - Medium, 2- Small. 28|$THEME = Standard`Theme to applay, Standard, Sun, Moon, Earth. +30|$DEBUG = 0`Development page additional debug output, off (default) or on. < 01|Unspecified `For quick uncategorised entries. 03|File System `Operating file system/Application short log. diff --git a/htdocs/cgi-bin/login_ctr.cgi b/htdocs/cgi-bin/login_ctr.cgi index 0de10bf..4d55fdc 100755 --- a/htdocs/cgi-bin/login_ctr.cgi +++ b/htdocs/cgi-bin/login_ctr.cgi @@ -17,28 +17,14 @@ use Text::CSV; #DEFAULT SETTINGS HERE! -our $REC_LIMIT = 25; -our $TIME_ZONE = 'Australia/Sydney'; -our $LANGUAGE = 'English'; -our $PRC_WIDTH = '70'; -our $LOG_PATH = '../../dbLifeLog/'; -our $SESSN_EXPR = '+30m'; -our $DATE_UNI = '0'; -our $RELEASE_VER = '1.7'; -our $AUTHORITY = ''; -our $IMG_W_H = '210x120'; -our $AUTO_WRD_LMT= 200; -our $AUTO_LOGIN = 0; -our $FRAME_SIZE = 0; -my $THEME = 'Standard'; -my $TH_CSS = 'main.css'; -my $BGCOL = '#c8fff8'; -#END OF SETTINGS +use lib "system/modules"; +require Settings; my $cgi = CGI->new; -my $session = new CGI::Session("driver:File",$cgi, {Directory=>$LOG_PATH}); - $session->expire($SESSN_EXPR); +my $session = new CGI::Session("driver:File",$cgi, {Directory=>&Settings::logPath}); + $session->expire(&Settings::sessionExprs); +my $sssCreatedDB = $session->param("cdb"); my $sid=$session->id(); my $cookie = $cgi->cookie(CGISESSID => $sid); @@ -47,27 +33,26 @@ my $alias = $cgi->param('alias'); my $passw = $cgi->param('passw'); my $frm; + #This is the OS developer release key, replace on istallation. As it is not secure. my $cipher_key = '95d7a85ba891da'; if($cgi->param('logout')){&logout} &checkAutologinSet; -if(&processSubmit==0){ - &getTheme; - - print $cgi->header(-expires=>"0s", -charset=>"UTF-8", -cookie=>$cookie); - print $cgi->start_html( +if(&processSubmit==0){ + print $cgi->header(-expires=>"0s", -charset=>"UTF-8", -cookie=>$cookie); + print $cgi->start_html( -title => "Personal Log Login", - -BGCOLOR => "$BGCOL", + -BGCOLOR => &Settings::bgcol, -script => { -type => 'text/javascript', -src => 'wsrc/main.js' }, - -style => { -type => 'text/css', -src => "wsrc/$TH_CSS" }, + -style => { -type => 'text/css', -src => 'wsrc/'.&Settings::css }, ); -my $ip =`hostname -I`; - $ip =~ s/\s/
/g; +my @ht = split(m/\s/,`hostname -I`); +my $hst = `hostname` . "($ht[0])"; $frm = qq( -
+
@@ -82,7 +67,7 @@ $frm = qq( Alias will create a new database if it doesn't exist. Note down your password. - +
LOGIN
You are on Server -> $ip
Your Host -> $hst
); print qq(

@@ -134,7 +119,7 @@ sub checkAutologinSet { try{ #We don't need to slurp as it is expected setting in header. my @cre; - open(my $fh, '<', $LOG_PATH.'main.cnf' ) or die "Can't open main.cnf: $!"; + open(my $fh, '<', &Settings::logPath.'main.cnf' ) or die "Can't open main.cnf: $!"; while (my $line = <$fh>) { chomp $line; if(rindex ($line, "<1){ - my $database = $LOG_PATH.'data_'.$cre[0].'_log.db'; + my $database = &Settings::logPath.'data_'.$cre[0].'_log.db'; my $dsn= "DBI:SQLite:dbname=$database"; my $db = DBI->connect($dsn, $cre[0], $cre[1], { RaiseError => 1 }) or die "

Error->"& $DBI::errstri &"

"; @@ -173,8 +158,8 @@ try{ sub checkCreateTables { try{ my $today = DateTime->now; - $today->set_time_zone( $TIME_ZONE ); - my $database = $LOG_PATH.'data_'.$alias.'_log.db'; + $today->set_time_zone( &Settings::timezone ); + my $database = &Settings::logPath.'data_'.$alias.'_log.db'; my $dsn= "DBI:SQLite:dbname=$database"; my $db = DBI->connect($dsn, $alias, $passw, { RaiseError => 1 }) or die "

Error->"& $DBI::errstri &"

"; @@ -197,11 +182,21 @@ try{ ); CREATE INDEX idx_log_dates ON LOG (DATE); ); - $rv = $db->do($stmt); - if($rv < 0){print "

Error->"& $DBI::errstri &"

";} + + if($sssCreatedDB){ + print $cgi->header; + print $cgi->start_html; + print "
A new alias login detect!
+ Server security measure has been triggered -> Sorry further new alias login/creation not allowed!


Contact your network admin.
".$_; + print $cgi->end_html; + exit; + } + + $db->do($stmt); $st = $db->prepare('INSERT INTO LOG(ID_CAT,DATE,LOG) VALUES (?,?,?)'); $st->execute( 3, $today, "DB Created!"); + $session->param("cdb", "1"); } # From v.1.6 view use server side views, for pages and correct record by ID and PID lookups. @@ -314,14 +309,6 @@ try{ } else{ - #PRAGMA table_info(CONFIG); <-To check current structure - #populateConfig($db); - $st = $db->prepare("SELECT VALUE FROM CONFIG WHERE NAME == 'THEME';"); - $st->execute(); - my $val = $st->fetchrow_array(); - if($val){ - $THEME = $val; - } #Has configuration been wiped out? $st = $db->prepare('SELECT count(ID) FROM CONFIG;'); @@ -329,7 +316,9 @@ try{ $changed = 1 if($st->fetchrow_array()==0); } - # + #We got an db now, lets get settings from there. + Settings::getConfiguration($db); + # &populate($db) if $changed; $db->disconnect(); # @@ -340,10 +329,10 @@ try{ } catch{ - print $cgi->header; - print "SERVER ERROR:".$_; + print $cgi->header; + print "SERVER ERROR:".$_; print $cgi->end_html; - exit; + exit; } } @@ -359,7 +348,7 @@ sub populate { my @lines; my $table_type = 0; - open(my $fh, "<:perlio", $LOG_PATH.'main.cnf' ) or die "Can't open main.cnf: $!"; + open(my $fh, "<:perlio", &Settings::logPath.'main.cnf' ) or die "Can't open main.cnf: $!"; read $fh, my $content, -s $fh; @lines = split '\n', $content; close $fh; @@ -437,7 +426,7 @@ $err .= "Invalid, spec'ed {uid}|{category}`{description}-> $line\n"; } } - die "Configuration script $LOG_PATH/main.cnf [$fh] contains errors." if $err; + die "Configuration script ".&Settings::logPath."/main.cnf [$fh] contains errors." if $err; $db->commit(); } catch{ print $cgi->header; @@ -459,14 +448,14 @@ return "SELECT name FROM sqlite_master WHERE type='view' AND name='$name';" sub removeOldSessions { - opendir(DIR, $LOG_PATH); + opendir(DIR, &Settings::logPath); my @files = grep(/cgisess_*/,readdir(DIR)); closedir(DIR); my $now = time - (24 * 60 * 60); foreach my $file (@files) { - my $mod = (stat("$LOG_PATH/$file"))[9]; + my $mod = (stat(&Settings::logPath,$file))[9]; if($mod<$now){ - unlink "$LOG_PATH/$file"; + unlink &Settings::logPath.$file; } } } @@ -495,23 +484,4 @@ sub logout{ exit; } -sub getTheme { - - - if ( $THEME eq 'Sun' ) { - $BGCOL = '#D4AF37'; - $TH_CSS = "main_sun.css"; - }elsif ($THEME eq 'Moon'){ - $TH_CSS = "main_moon.css"; - $BGCOL = '#000000'; - - }elsif ($THEME eq 'Earth'){ - $TH_CSS = "main_earth.css"; - $BGCOL = 'green'; - } - -} - - - ### CGI END diff --git a/htdocs/thttpd.pid b/htdocs/thttpd.pid index 7646649..0e6234e 100644 --- a/htdocs/thttpd.pid +++ b/htdocs/thttpd.pid @@ -1 +1 @@ -27361 +20556 diff --git a/log/thttpd.log b/log/thttpd.log index e025a6b..2983e13 100644 --- a/log/thttpd.log +++ b/log/thttpd.log @@ -15343,3 +15343,140 @@ 127.0.0.1 - - [04/Jan/2020:10:54:04 +1100] "GET /cgi-bin/wsrc/images/ui-icons_2694e8_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" 127.0.0.1 - - [04/Jan/2020:10:54:05 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" 127.0.0.1 - - [04/Jan/2020:10:54:10 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:11:58:19 +1100] "GET /cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657 HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:19 +1100] "GET /cgi-bin/wsrc/main.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:19 +1100] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:20 +1100] "GET /favicon.ico HTTP/1.1" 404 0 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:23 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:23 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/main_sun.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui.theme.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/katex.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/monokai-sublime.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/quill.snow.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery-ui-sliderAccess.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jquery.poshytip.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/highlight.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/katex.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/jscolor.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/quill/quill.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 200 4549 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png HTTP/1.1" 200 332 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 200 164 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/images/ui-icons_3d80b3_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:24 +1100] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple_arrows.gif HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:26 +1100] "GET /cgi-bin/wsrc/images/ui-bg_glass_100_e4f1fb_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:26 +1100] "GET /cgi-bin/wsrc/images/ui-icons_2694e8_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:27 +1100] "GET /cgi-bin/wsrc/images/ui-bg_glass_50_3baae3_1x400.png HTTP/1.1" 200 163 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:27 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:30 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:11:58:35 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:20:13 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:20:20 +1100] "GET /cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657 HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:21:45 +1100] "GET /cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657 HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:21:45 +1100] "GET /cgi-bin/wsrc/main.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:21:45 +1100] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:22:47 +1100] "GET /cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657 HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:22:47 +1100] "GET /cgi-bin/wsrc/main.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:22:47 +1100] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:37 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:37 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:37 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:37 +1100] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 200 4549 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:37 +1100] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:23:43 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:38:12 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:12 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=3e44274ab499cc55617bcc60ec9e0657" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:13 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:13 +1100] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:17 +1100] "GET /cgi-bin/wsrc/images/ui-bg_glass_50_3baae3_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:17 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:18 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:24 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:38:28 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:28 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:29 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:32 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:34 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:40 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:38:40 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:40 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:41 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:44 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:45 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:51 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:38:53 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:53 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:54 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:38:59 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:43:58 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:44:47 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:44:52 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:46:08 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:47:01 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:47:38 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:47:50 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:28 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:29 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:29 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:34 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:50:35 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:37 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:43 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:50:44 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:44 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:44 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:48 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:50 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:56 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:50:58 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:58 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:50:58 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:02 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:03 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:09 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:09 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:51:09 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:10 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:51:15 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:53:46 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:53:51 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:54:57 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:03 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:55:16 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:16 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:17 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:17 +1100] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 200 4549 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:17 +1100] "GET /cgi-bin/wsrc/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png HTTP/1.1" 200 332 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:22 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:55:23 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:46 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:46 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:47 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:52 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:55:55 +1100] "GET /cgi-bin/main.cgi?date=2020-01-06+12%3A55%3A47&ec=1&log=check&am=&amf=0&submit_is_edit=0&submit_is_view=0&rs_all=0&rs_cur=0&rs_prev=1&rs_page=&CGISESSID=704a835a69070ee40db6b1b6fa990c01 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:55 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi?date=2020-01-06+12%3A55%3A47&ec=1&log=check&am=&amf=0&submit_is_edit=0&submit_is_view=0&rs_all=0&rs_cur=0&rs_prev=1&rs_page=&CGISESSID=704a835a69070ee40db6b1b6fa" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:56 +1100] "GET /cgi-bin/wsrc/images/ui-icons_2694e8_256x240.png HTTP/1.1" 200 4549 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:55:58 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [06/Jan/2020:12:56:04 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:32 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:32 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:33 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:34 +1100] "GET /cgi-bin/login_ctr.cgi?logout=bye HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:36 +1100] "GET /cgi-bin/login_ctr.cgi?autologoff=1 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?logout=bye" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:40 +1100] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:40 +1100] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?autologoff=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:41 +1100] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0" +127.0.0.1 - - [06/Jan/2020:12:56:46 +1100] "UNKNOWN UNKNOWN" 400 0 "" ""