![]() |
Ad-Blocker Operation Using dnsmasq and custom httpd410server |
Yoyo's list of ad servers formatted for dnsmasq is basically a long list of TLDs and URLs, each followed by the IP address 127.0.0.1 so that browser requests for ads go to 127.0.0.1. My script that downloads the ad server lists changes the DNS resolution addresses from 127.0.0.1 to a local server 10.42.2.1 that runs a small http and https server daemon I wrote that always returns HTTP 410 (Gone). HTTP 410 has the intended meaning of the client never ever asking for the blocked resource again, though implementation on client web browsers and mobile apps is dubious.
I wrote this little web server daemon called httpd410server because I wanted to see ad-servers being blocked actively in real-time and the web sites or mobile apps requesting them. This little web server is coded to always return HTTP 410 (GONE) whenever any HTTP or HTTPS request comes in, and also logs to syslog the HTTP GET request it responds to. Therefore, I have a way to keep track of all ad server blocking activity in the house.
A free download link to the stuff I describe here is at the bottom of this post.
This daemon is in the class of DNS Sinkholes and not really required for ad blocking; ad blocking works fine with redirection to a IP address with no DNS sink running on the HTTP server port of that IP, resulting in "connection refused" from the operating system. I just did not like redirection to a non-existent service port - it is cool to have something to at least listen on the port, log the ad requests and return a meaningful (intentionally meaningless!) response.
As depicted in the diagram at the top, here is what happens using this setup:
- Someone in the house launches a web-browser and types in a URL, or launches a mobile app
- The web browser or the mobile app loads the main web page and requests resolution of TLDs and URLs for advertisements from ad servers on that page
- dnsmasq intercepts all DNS requests, including the ones for ad servers
- dnsmasq checks the list of ad servers for the TLD or URL being requested. If it finds a corresponding matching entry in the ad-server blocklist, it resolves the TLD or URL to a local IP address (10.42.2.1). Otherwise, the normal Internet IP address for the web resource is returned.
- The user's browser or app then connects to the IP address returned by dnsmasq to load the contents from that server. For ad server requests, the web browser or mobile app connects to 10.42.2.1 as that was the IP resolved to by dnsmasq.
- 10.42.2.1 gets a connection from the web browser or mobile app, logs it into syslog (/var/log/messages) and returns a HTTP 410 (GONE) error response to the requesting web browser or mobile app.
- The net effect is the advertisement is not displayed, and we have a log of the web site requesting ads, for purely academic observation and possible analysis. (Answers to questions like this become easy: What advertising networks do the top news services use? How many requests for ads is a web page making?)
The C++ source for the little web server is given below. It compiles straight away with gcc on Linux. It a minimal multi-threaded web server always returning only one thing - HTTP 410. The -lpthread command line parameter for compilation is required to link with the Linux POSIX threads library.
The source code can also serve as a demonstration or tutorial for beginner programmers delving into the world of Linux C or C++ multi-threaded socket server programming serving multiple ports. Some of the features of my small program that may be of particular interest to novie network programmers are:
- socket(), bind(), listen() and then select() and accept() in a loop to listen to more than one port and serve clients. The server listens on both HTTP (80) and HTTPS (443) ports.
- multi-threaded TCP socket server using Linux Posix Threads: pthread_create() etc.
- use of PTHREAD_CREATE_DETACHED in pthread_attr_setdetachstate() so that the service threads are marked as detached and when they terminate, resources are automatically released back to the system without the need for another thread to join with the terminated thread which is the default behavior.
- critical section synchronization using mutex mechanism: pthread_mutex_init(), pthread_mutex_lock and pthread_mutex_unlock(). These are used to keep track of the number of simultaneous clients being served to keep DOS (denial of service) attacks under check using an upper limit of maximum clients supported at the same time
- using the syslog (syslogd daemon provided) facility for logging: openlog(), setlogmask(), syslog() etc.
- dropping of root privileges after binding the sockets to file descriptors, using setgid() and setuid(). this server listens to protected ports below 1024, and is thus required to startup to the bind phase with root privileges. After binding, it sets its gid and uid to a non-privileged account - a standard security practice for all servers
- usage of SO_REUSEADDR to set socket option in setsockopt() to avoid TIME_WAIT induced "address already in use" errors when calling bind() on rapid server daemon restart
- usage of SO_RCVTIMEO socket option for receiving data on a socket with timeout - the program uses this to retry to recv() before giving up
- usage of the venerable unix select() call including usage of the helpful macros FD_ZERO, FD_SET, FD_ISSET etc.
- correct way of shutting down sockets and associated file descriptors - shutdown() with SHUT_RDWR) before close()
- general error handling - check all return status and do something intelligent, even if it means exiting the server daemon process in situations no obvious way out can be thought of
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* +++ | |
Supratim Sanyal's Brain Damaged web server | |
- ALWAYS RETURNS HTTP 410 (GONE) TO THE CLIENT - | |
- USE FOR DNS REDIRECTED MALWARE AD BLOCKER BLACKLIST IMPLEMENTATIONS | |
- Listens on ports http port 80 and https port 443 | |
- | |
- To build: gcc -o httpd410server -lpthread httpd410server.c | |
- | |
- See http://supratim-sanyal.blogspot.com/2016/07/httpd410server-tiny-free-web-server-to.html for details | |
- I can be reached at http://mcaf.ee/sdlg9f | |
- Posted under GPL 3.0 License - use and modify freely but retain this header | |
--- */ | |
#include <assert.h> | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <pthread.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <syslog.h> | |
#include <unistd.h> | |
#include <arpa/inet.h> | |
#include <netinet/tcp.h> | |
#include <sys/select.h> | |
#include <sys/socket.h> | |
#include <sys/time.h> | |
static const int MAXCLIENTS=512; | |
static const int RECV_TIMEOUT=5; // seconds to wait for client to send something after connecting | |
static const int MAX_RECV_RETRIES=3; // let recv timeout this many times before closing connection (broweser did not | |
// send data after opening port for this MAX_RECV_RETRIES*RECV_TIMEOUT seconds, kick it) | |
static const int UID=99; // this uid is set for this program after bind() for security - 99 is nobody | |
static const int GID=99; // this gid is set for this program after bind() for security - 99 is nobody | |
static const int PORT_HTTP=80; | |
static const int PORT_HTTPS=443; | |
static const char *const httpresp="HTTP/1.0 410 Brain Damaged Server\nServer: Supratim Sanyal's Brain Damaged Server/0.01-dev\n\n"; | |
static const int ZERO=0; | |
static const int ONE=1; | |
struct timeval recv_to_tv; | |
int numclients=0; | |
//mutex and thread variables and function | |
pthread_mutex_t clientcount_mutex; | |
pthread_attr_t thread_attr; | |
pthread_t thread_id; | |
void *connection_handler(void *p_socket_desc); | |
int main(int argc , char *argv[]) | |
{ | |
int sd_http, sd_https, maxfd, sd_to_accept, flags, retval, i; | |
struct sockaddr_in server_http, server_https; | |
fd_set read_fds; | |
// We enforce a timeout for clients to send something after connecting | |
// Used in setting socket option by connection handler thread | |
recv_to_tv.tv_sec = RECV_TIMEOUT; | |
recv_to_tv.tv_usec = 0; | |
setlogmask (LOG_UPTO (LOG_INFO)); | |
openlog (argv[0], LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1); | |
syslog(LOG_NOTICE,"%s starting up",argv[0]); | |
printf("%s: see system log for messages\n",argv[0]); | |
if (pthread_mutex_init(&clientcount_mutex, NULL) != 0) | |
{ | |
syslog(LOG_NOTICE,"failed to init mutex: %s",strerror(errno)); | |
exit(1); | |
} | |
// Our service threads will be detached threads | |
// If we don't do this, threads will default to PTHREAD_CREATE_JOINABLE which | |
// will keep using up memory because the thread resources are not released at | |
// thread exit since they are expecting to be joined by the main thread to | |
// retrieve return status etc. | |
if(pthread_attr_init(&thread_attr) != 0) | |
{ | |
syslog(LOG_NOTICE,"failed to init thread_attr: %s",strerror(errno)); | |
closelog(); | |
exit(1); | |
} | |
if(pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED)!= 0) | |
{ | |
syslog(LOG_NOTICE,"failed to set detached thread attr: %s",strerror(errno)); | |
closelog(); | |
exit(1); | |
} | |
//Create sockets | |
sd_http = socket(AF_INET, SOCK_STREAM, 0); | |
if ( -1 == sd_http) | |
{ | |
syslog(LOG_NOTICE,"Could not create http socket: %s", strerror(errno)); | |
exit(1); | |
} | |
if (setsockopt(sd_http, SOL_SOCKET, SO_REUSEADDR, &ONE, sizeof(int)) < 0) | |
{ | |
syslog(LOG_NOTICE,"Could not set SO_REUSEADDR on http socket: %s", strerror(errno)); | |
} | |
flags = fcntl(sd_http, F_GETFL, 0); | |
if (flags>=0)fcntl(sd_http, F_SETFL, (flags|O_NONBLOCK)); // Set non-blocking Socket | |
sd_https = socket(AF_INET, SOCK_STREAM, 0); | |
if ( -1 == sd_https) | |
{ | |
syslog(LOG_NOTICE,"Could not create https socket: %s", strerror(errno)); | |
exit(1); | |
} | |
if (setsockopt(sd_https, SOL_SOCKET, SO_REUSEADDR, &ONE, sizeof(int)) < 0) | |
{ | |
syslog(LOG_NOTICE,"Could not set SO_REUSEADDR on https socket: %s", strerror(errno)); | |
} | |
flags = fcntl(sd_https, F_GETFL, 0); | |
if (flags>=0)fcntl(sd_https, F_SETFL, (flags|O_NONBLOCK)); // Set non-blocking Socket | |
//Prepare the sockaddr_in structures | |
server_http.sin_family = AF_INET; | |
server_http.sin_addr.s_addr = INADDR_ANY; | |
server_http.sin_port = htons( PORT_HTTP ); | |
server_https.sin_family = AF_INET; | |
server_https.sin_addr.s_addr = INADDR_ANY; | |
server_https.sin_port = htons( PORT_HTTPS ); | |
//Bind | |
if( bind(sd_http,(struct sockaddr *)&server_http , sizeof(server_http)) < 0) | |
{ | |
syslog(LOG_NOTICE,"Could not bind http socket: %s", strerror(errno)); | |
exit(1); | |
} | |
if( bind(sd_https,(struct sockaddr *)&server_https , sizeof(server_https)) < 0) | |
{ | |
syslog(LOG_NOTICE,"Could not bind https socket: %s", strerror(errno)); | |
exit(1); | |
} | |
// Drop root privileges, switch uid and gid to non-privileged account | |
if(0!=setgid(GID)) // set gid first because it cannot be done after setuid | |
{ | |
syslog(LOG_NOTICE,"Could not setgid to [%d], proceeding regardless: %d[%s]", GID, errno, strerror(errno)); | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"setgid to [%d] ok", GID); | |
} | |
if(0!=setuid(UID)) | |
{ | |
syslog(LOG_NOTICE,"Could not setuid to [%d], proceeding regardless: %d[%s]", UID, errno, strerror(errno)); | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"setuid to [%d] ok", UID); | |
} | |
//Listen - needed to mark the socket as passive, that is, that will be used to accept incoming | |
//connection requests using accept later | |
if(listen(sd_http, 5)<0) // Maximum limit for 2nd parameter (backlog) is in /proc/sys/net/ipv4/tcp_max_syn_backlog | |
{ | |
syslog(LOG_NOTICE,"Could not listen on http socket: %s", strerror(errno)); | |
shutdown (sd_http, SHUT_RDWR); | |
close(sd_http); | |
shutdown (sd_https, SHUT_RDWR); | |
close(sd_https); | |
exit(1); | |
} | |
if(listen(sd_https, 5)<0) // Maximum limit for 2nd parameter (backlog) is in /proc/sys/net/ipv4/tcp_max_syn_backlog | |
{ | |
syslog(LOG_NOTICE,"Could not listen on https socket: %s", strerror(errno)); | |
shutdown (sd_http, SHUT_RDWR); | |
close(sd_http); | |
shutdown (sd_https, SHUT_RDWR); | |
close(sd_https); | |
exit(1); | |
} | |
FD_ZERO(&read_fds); | |
FD_SET(sd_http, &read_fds); | |
FD_SET(sd_https, &read_fds); | |
syslog(LOG_NOTICE,"HTTP listen FD: %d", sd_http); | |
syslog(LOG_NOTICE,"HTTPS listen FD: %d", sd_https); | |
maxfd=sd_https; // highest FD so far for incoming data to listen to | |
for(;;) | |
{ | |
retval=select((1+maxfd), &read_fds, NULL, NULL, NULL); | |
if(retval<0) // select failed | |
{ | |
syslog(LOG_NOTICE,"select failure: %s", strerror(errno)); | |
shutdown (sd_http, SHUT_RDWR); | |
close(sd_http); | |
shutdown (sd_https, SHUT_RDWR); | |
close(sd_https); | |
exit(1); | |
} | |
if(retval>0) | |
{ | |
for(i=0; i<(1+maxfd);i++) | |
{ | |
if(FD_ISSET(i, &read_fds)) | |
{ | |
if(sd_http==i) | |
{ | |
sd_to_accept=i; | |
syslog(LOG_NOTICE,"HTTP connection on FD %d",sd_to_accept); | |
} | |
else if(sd_https==i) | |
{ | |
sd_to_accept=i; | |
syslog(LOG_NOTICE,"HTTPS connection on FD %d",sd_to_accept); | |
} | |
else | |
{ | |
sd_to_accept=(-1); | |
} | |
if( (-1)!=sd_to_accept) // incoming data in socket of interest; process it | |
{ | |
// hand the connection over to a thread to serve and close | |
pthread_mutex_lock(&clientcount_mutex); // Lock active till accept() in created child thread is executed | |
// ensuring the right socket descriptor is used by accept() | |
if( pthread_create( &thread_id , &thread_attr, connection_handler , (void*)&sd_to_accept) < 0) | |
{ | |
pthread_mutex_unlock(&clientcount_mutex); | |
syslog(LOG_NOTICE,"Could not create thread: %s", strerror(errno)); | |
shutdown (sd_http, SHUT_RDWR); | |
close(sd_http); | |
shutdown (sd_https, SHUT_RDWR); | |
close(sd_https); | |
exit(1); | |
} | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"Ignoring unexpected non-HTTP/HTTPS data on FD %d",i); | |
} | |
} //if(FD_ISSET(i, &read_fds)) | |
} //for(i=0; i<(1+sd_https);i++) | |
} // if(retval>0) | |
} //for(;;) | |
exit(0); // unreachable | |
} // main() | |
// +++ | |
// Thread to process each connection | |
// --- | |
void *connection_handler(void *const p_sd) // parameter has server socket descriptor with data on it to accept and process | |
{ | |
struct sockaddr_in client; | |
int server_sock, client_sock; | |
int i=0,read_size=0, thisclient=0, myerrno=0, recv_tries=0; | |
char client_message[2048]; | |
int sizeofclient = sizeof(struct sockaddr_in); | |
server_sock = *(int*)p_sd; | |
numclients++; | |
thisclient=numclients; | |
syslog(LOG_NOTICE,"connection_handler[%d]: starting", thisclient); | |
//Accept and process the connection | |
client_sock = accept(server_sock, (struct sockaddr *)&client, (socklen_t*)&sizeofclient); | |
pthread_mutex_unlock(&clientcount_mutex); // Lock was placed in main() before creating this thread for accept to | |
// work with right Server FD | |
if (client_sock < 0) | |
{ | |
myerrno=errno; | |
if (EAGAIN==myerrno||EWOULDBLOCK==myerrno) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: Nothing to accept() server FD %d: %d(%s)", thisclient, server_sock, myerrno, strerror(myerrno)); | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: Could not accept() server FD %d: %d(%s)", thisclient, server_sock, myerrno, strerror(myerrno)); | |
} | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: accept ok server FD %d on client FD %d", thisclient, server_sock, client_sock); | |
if(thisclient>MAXCLIENTS) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: client FD %d | Server full, MAXCLIENTS reached",thisclient, client_sock); | |
} | |
else | |
{ | |
// set read timeout on client connection | |
if(setsockopt(client_sock, SOL_SOCKET, SO_RCVTIMEO, (char *)&recv_to_tv,sizeof(struct timeval))<0) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: Could not setsockopt() FD %d: %d(%s)", thisclient, client_sock, errno, strerror(errno)); | |
} | |
recv_tries=0; | |
do | |
{ | |
memset(client_message,0,sizeof(client_message)); | |
read_size = recv(client_sock, client_message , sizeof(client_message)-1, 0); | |
myerrno=errno; | |
if(read_size < 0) | |
{ | |
if (EAGAIN != myerrno) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: Could not recv() FD %d: %d(%s)",thisclient,client_sock,myerrno,strerror(myerrno)); | |
read_size=0; | |
break; | |
} | |
else | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: recv() FD %d: no data yet",thisclient,client_sock); | |
recv_tries++; | |
if(recv_tries>=MAX_RECV_RETRIES) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: recv() FD %d: max recv retries reached, no cookie for you",thisclient,client_sock); | |
read_size=0; | |
} | |
} | |
} | |
} while(read_size<0); | |
if(read_size == 0) // nothing received or unexpected client disconnet - do nothing | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: FD %d recvd nothing",thisclient,client_sock); | |
} | |
else // something received; respond to client | |
{ | |
for(i=0;i<strlen(client_message);i++) if( ('\n'==client_message[i])||('\r'==client_message[i]) ) client_message[i]=' '; | |
syslog(LOG_NOTICE,"connection_handler[%d]: FD %d: recvd [%s]",thisclient,client_sock,client_message); | |
setsockopt(client_sock, IPPROTO_TCP, TCP_NODELAY, (char *) &ONE, sizeof(int)); // setting TCP_NODELAY on send | |
// flushed socket out | |
if(send(client_sock,httpresp,strlen(httpresp),0)<0) | |
{ | |
syslog(LOG_NOTICE,"connection_handler[%d]: failed to send() to FD %d: %d(%s)",thisclient,client_sock,errno,strerror(errno)); | |
} | |
setsockopt(client_sock, IPPROTO_TCP, TCP_NODELAY, (char *) &ZERO, sizeof(int)); // disable TCP_NODELAY | |
} | |
} // else block of if(thisclient>MAXCLIENTS) | |
syslog(LOG_NOTICE,"connection_handler[%d]: Bye bye FD %d", thisclient,client_sock); | |
shutdown (client_sock, SHUT_RDWR); | |
close(client_sock); | |
} // else block of if (client_sock < 0) after accept() | |
pthread_mutex_lock(&clientcount_mutex); | |
syslog(LOG_NOTICE,"connection_handler[%d]: done", thisclient); | |
numclients--; | |
pthread_mutex_unlock(&clientcount_mutex); | |
pthread_exit(NULL); | |
} // connection_handler() | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sep 16 04:25:40 anubis-clearos /usr/local/bin/httpd410server[25758]: /usr/local/bin/httpd410server starting up | |
Sep 16 04:25:40 anubis-clearos /usr/local/bin/httpd410server[25758]: setgid to [99] ok | |
Sep 16 04:25:40 anubis-clearos /usr/local/bin/httpd410server[25758]: setuid to [99] ok | |
Sep 16 04:25:40 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP listen FD: 4 | |
Sep 16 04:25:40 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTPS listen FD: 5 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=7&ns_st_sp=1&ns_st_sq=1&ns_st_cn=3&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999940060&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=6&ns_st_sp=1&ns_st_cn=2&ns_st_ev=end&ns_st_po=253499&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=124487&ns_st_pa=182920&ns_st_ci=politics%2F2016%2F09%2F10%2Ftrump-most-outrageous-birther-claims-orig.cnn&ns_ts=1473999940059&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/14/newsweek-trump-national-security-threat-new-day.cnn&rnd=8243518923975535 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 7: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=844363304087.441? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:25:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:25:46 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=10008&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10008&ns_st_pa=192928&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999950068&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6 recvd nothing | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:25:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=20010&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20010&ns_st_pa=202930&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999960070&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:26:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=30011&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30011&ns_st_pa=212931&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999970071&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:26:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=40013&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40013&ns_st_pa=222933&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999980073&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:26:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=50014&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50014&ns_st_pa=232934&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1473999990074&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:26:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=60014&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60014&ns_st_pa=242934&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1474000000074&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:26:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=hb&ns_st_po=120014&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=120014&ns_st_pa=302934&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1474000060074&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=2&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:27:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=8&ns_st_sp=1&ns_st_cn=3&ns_st_ev=pause&ns_st_po=137117&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=137116&ns_st_pa=320036&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1474000077176&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/14/newsweek-trump-national-security-threat-new-day.cnn&rnd=8023051591538595 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:27:58 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=9&ns_st_sp=1&ns_st_cn=3&ns_st_ev=end&ns_st_po=278287&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=137116&ns_st_pa=320036&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-new-day.cnn&ns_ts=1474000081231&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=10&ns_st_sp=1&ns_st_sq=1&ns_st_cn=4&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000081233&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/14/newsweek-trump-national-security-threat-russia-newday.cnn&rnd=9885487725747730 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=81304591258.09785? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:28:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 6: no data yet | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=10003&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10003&ns_st_pa=330039&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000091236&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 6: no data yet | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 6 recvd nothing | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 6 | |
Sep 16 04:28:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=20006&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20007&ns_st_pa=340042&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000101239&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=30008&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30008&ns_st_pa=350044&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000111241&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=40009&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40009&ns_st_pa=360045&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000121242&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:42 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=50010&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50010&ns_st_pa=370046&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000131243&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:28:52 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=hb&ns_st_po=60011&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60011&ns_st_pa=380047&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000141244&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=3&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:02 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=11&ns_st_sp=1&ns_st_cn=4&ns_st_ev=pause&ns_st_po=87366&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=87364&ns_st_pa=407400&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000168597&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=4&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/14/newsweek-trump-national-security-threat-russia-newday.cnn&rnd=9593559845401430 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:30 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=12&ns_st_sp=1&ns_st_cn=4&ns_st_ev=end&ns_st_po=179165&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=87364&ns_st_pa=407400&ns_st_ci=politics%2F2016%2F09%2F14%2Fnewsweek-trump-national-security-threat-russia-newday.cnn&ns_ts=1474000173030&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=4&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=13&ns_st_sp=1&ns_st_sq=1&ns_st_cn=5&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000173031&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/13/donald-trump-kellyanne-conway-tax-returns-newday.cnn&rnd=4776986762340563 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=537044098463.2885? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:29:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:39 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=14&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=10003&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10003&ns_st_pa=417403&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000183034&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=4&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=14&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=20003&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20003&ns_st_pa=427403&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000193034&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=4&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:29:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=7117692081556.188? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=14&ns_st_sp=1&ns_st_cn=5&ns_st_ev=pause&ns_st_po=26862&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=26861&ns_st_pa=434261&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000199892&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=15&ns_st_sp=1&ns_st_sq=2&ns_st_cn=5&ns_st_ev=play&ns_st_po=26862&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000199893&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: FD 7: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/13/donald-trump-kellyanne-conway-tax-returns-newday.cnn&rnd=2708564043988171 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: Bye bye FD 7 | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: starting | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: done | |
Sep 16 04:30:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: done | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=30002&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30001&ns_st_pa=437401&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000203033&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:30:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:06 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:30:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:30:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6 recvd nothing | |
Sep 16 04:30:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:30:12 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=40005&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40004&ns_st_pa=447404&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000213036&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:30:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=50006&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50005&ns_st_pa=457405&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000223037&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:30:24 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=60007&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60006&ns_st_pa=467406&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000233038&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:30:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=hb&ns_st_po=120008&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=120007&ns_st_pa=527407&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000293039&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=5&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:31:34 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=16&ns_st_sp=1&ns_st_cn=5&ns_st_ev=pause&ns_st_po=132608&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=132607&ns_st_pa=540007&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000305639&ns_st_bt=0&ns_st_bp=0&ns_st_pc=2&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/13/donald-trump-kellyanne-conway-tax-returns-newday.cnn&rnd=4546903779592428 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:31:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=18&ns_st_sp=1&ns_st_sq=1&ns_st_cn=6&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000310333&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=17&ns_st_sp=1&ns_st_cn=5&ns_st_ev=end&ns_st_po=243047&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=132607&ns_st_pa=540007&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-kellyanne-conway-tax-returns-newday.cnn&ns_ts=1474000310332&ns_st_bt=0&ns_st_bp=0&ns_st_pc=2&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/12/donald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&rnd=7065302393444230 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=9686726315090.428? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:31:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:31:56 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=10001&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10001&ns_st_pa=550008&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000320334&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:32:01 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:32:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:32:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=20001&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20001&ns_st_pa=560008&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000330334&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:11 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=30004&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30004&ns_st_pa=570011&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000340337&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:21 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=40004&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40004&ns_st_pa=580011&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000350337&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:32:31 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=50004&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50005&ns_st_pa=590012&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000360337&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:32:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=60005&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60005&ns_st_pa=600012&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000370338&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:32:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=hb&ns_st_po=120006&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=120006&ns_st_pa=660013&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000430339&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=6&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:33:51 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=19&ns_st_sp=1&ns_st_cn=6&ns_st_ev=pause&ns_st_po=150778&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=150777&ns_st_pa=690784&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000461110&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/12/donald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&rnd=505732115875796 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:22 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=20&ns_st_sp=1&ns_st_cn=6&ns_st_ev=end&ns_st_po=306161&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=150777&ns_st_pa=690784&ns_st_ci=politics%2F2016%2F09%2F12%2Fdonald-trump-candidacy-new-hotel-business-problems-mattingly-dnt-erin.cnn&ns_ts=1474000465716&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=21&ns_st_sp=1&ns_st_sq=1&ns_st_cn=7&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000465717&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/13/donald-trump-small-business-creditors-schneider-dnt-ac360.cnn&rnd=3401405233897512 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=4433942857088.002? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:34:32 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=10001&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10001&ns_st_pa=700785&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000475718&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:34:37 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:34:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6 recvd nothing | |
Sep 16 04:34:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:34:41 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=20002&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20002&ns_st_pa=710786&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000485719&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:47 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=30003&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30003&ns_st_pa=720787&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000495720&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:34:57 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=40004&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40004&ns_st_pa=730788&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000505721&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:35:07 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=50003&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50003&ns_st_pa=740787&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000515720&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:35:17 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=60005&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60005&ns_st_pa=750789&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000525722&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:35:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=120007&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=120007&ns_st_pa=810791&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000585724&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:36:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=180007&ns_st_cl=0&ns_st_hc=8&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=180007&ns_st_pa=870791&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000645724&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:37:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: starting | |
Sep 16 04:37:44 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[4]: done | |
Sep 16 04:37:49 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:37:49 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:37:49 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:37:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:37:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:37:54 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:37:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:37:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:37:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:38:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:38:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:38:04 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:38:09 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:38:09 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:38:09 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: recv() FD 6: max recv retries reached, no cookie for you | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: recv() FD 7: max recv retries reached, no cookie for you | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 7 recvd nothing | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: recv() FD 8: max recv retries reached, no cookie for you | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 8 recvd nothing | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:38:14 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=240008&ns_st_cl=0&ns_st_hc=9&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=240008&ns_st_pa=930792&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000705725&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:38:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=hb&ns_st_po=300008&ns_st_cl=0&ns_st_hc=10&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=300008&ns_st_pa=990792&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000765725&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=7&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:39:27 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=22&ns_st_sp=1&ns_st_cn=7&ns_st_ev=pause&ns_st_po=332695&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=332694&ns_st_pa=1023478&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000798411&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=8&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/13/donald-trump-small-business-creditors-schneider-dnt-ac360.cnn&rnd=3352415903081753 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:39:59 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=23&ns_st_sp=1&ns_st_cn=7&ns_st_ev=end&ns_st_po=670860&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=332694&ns_st_pa=1023478&ns_st_ci=politics%2F2016%2F09%2F13%2Fdonald-trump-small-business-creditors-schneider-dnt-ac360.cnn&ns_ts=1474000803882&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=8&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=24&ns_st_sp=1&ns_st_sq=1&ns_st_cn=8&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000803884&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[1]: done | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/08/05/donald-trump-ivanka-female-cabinet-member.cnn&rnd=5153926696567497 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[2]: done | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: HTTP connection on FD 4 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=3062748418334.9507? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: Bye bye FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: starting | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:40:05 anubis-clearos /usr/local/bin/httpd410server[25758]: connection_handler[3]: done | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: /usr/local/bin/httpd410server starting up | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: setgid to [99] ok | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: setuid to [99] ok | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP listen FD: 4 | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTPS listen FD: 5 | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:40:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=25&ns_st_sp=1&ns_st_cn=8&ns_st_ev=hb&ns_st_po=20000&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20000&ns_st_pa=1043478&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000823884&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=8&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:40:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=25&ns_st_sp=1&ns_st_cn=8&ns_st_ev=hb&ns_st_po=30002&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30002&ns_st_pa=1053480&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000833886&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=8&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=25&ns_st_sp=1&ns_st_cn=8&ns_st_ev=hb&ns_st_po=40002&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40002&ns_st_pa=1063480&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000843886&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=8&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=25&ns_st_sp=1&ns_st_cn=8&ns_st_ev=pause&ns_st_po=45635&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=45632&ns_st_pa=1069110&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000849516&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/08/05/donald-trump-ivanka-female-cabinet-member.cnn&rnd=6863356641959446 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:50 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=9057492242816.977? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=27&ns_st_sp=1&ns_st_sq=1&ns_st_cn=9&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000853798&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=26&ns_st_sp=1&ns_st_cn=8&ns_st_ev=end&ns_st_po=95551&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=45632&ns_st_pa=1069110&ns_st_ci=politics%2F2016%2F08%2F05%2Fdonald-trump-ivanka-female-cabinet-member.cnn&ns_ts=1474000853797&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 7: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-world/2016/09/09/trump-fact-check-tom-foreman.cnn&rnd=5028134724255067 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 7 | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:40:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:41:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=10003&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10003&ns_st_pa=1079113&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000863801&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:05 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:41:10 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:41:10 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:41:10 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=20004&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=20004&ns_st_pa=1089114&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000873802&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:15 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=30005&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30005&ns_st_pa=1099115&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000883803&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:41:25 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=40006&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=40006&ns_st_pa=1109116&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000893804&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=50008&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=50008&ns_st_pa=1119118&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000903806&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:45 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:51 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=60008&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=60008&ns_st_pa=1129118&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000913806&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:41:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:41:56 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:41:56 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:41:56 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:42:01 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:42:01 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:42:01 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: max recv retries reached, no cookie for you | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: max recv retries reached, no cookie for you | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7 recvd nothing | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: max recv retries reached, no cookie for you | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8 recvd nothing | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:42:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=hb&ns_st_po=120009&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=120009&ns_st_pa=1189119&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474000973807&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=9&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:42:55 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=28&ns_st_sp=1&ns_st_cn=9&ns_st_ev=pause&ns_st_po=159994&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=159993&ns_st_pa=1229103&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474001013791&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-world/2016/09/09/trump-fact-check-tom-foreman.cnn&rnd=3421514910626979 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:43:35 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=7912946608576.088? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=29&ns_st_sp=1&ns_st_cn=9&ns_st_ev=end&ns_st_po=324451&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=159993&ns_st_pa=1229103&ns_st_ci=world%2F2016%2F09%2F09%2Ftrump-fact-check-tom-foreman.cnn&ns_ts=1474001018254&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=30&ns_st_sp=1&ns_st_sq=1&ns_st_cn=10&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001018255&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 7: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/07/donald-trump-tax-returns-mattingly-dnt-tsr.cnn&rnd=3416287097488717 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:39 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: accept ok server FD 4 on client FD 10 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: accept ok server FD 4 on client FD 11 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: done | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: accept ok server FD 4 on client FD 12 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: accept ok server FD 4 on client FD 13 | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[9]: starting | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[9]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:43:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[9]: done | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: FD 11: recvd [GET /ados.js HTTP/1.1 Host: static.adzerk.net Connection: keep-alive Pragma: no-cache Cache-Control: no-cache User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: */* DNT: 1 Referer: http://stackoverflow.com/questions/23577888/can-i-guarantee-that-recv-will-not-block-after-select-reports-that-the-socke Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: Bye bye FD 11 | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: done | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: FD 12: recvd [GET /quant.js HTTP/1.1 Host: edge.quantserve.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: */* DNT: 1 Referer: http://stackoverflow.com/questions/23577888/can-i-guarantee-that-recv-will-not-block-after-select-reports-that-the-socke Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: Bye bye FD 12 | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: done | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8: recvd [GET /beacon.js HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: */* DNT: 1 Referer: http://stackoverflow.com/questions/23577888/can-i-guarantee-that-recv-will-not-block-after-select-reports-that-the-socke Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:43:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:43:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:43:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:43:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:43:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: recv() FD 13: no data yet | |
Sep 16 04:43:49 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=10005&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10005&ns_st_pa=1239108&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001028260&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:43:49 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:43:49 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:49 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:43:52 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:43:52 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:43:52 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: recv() FD 13: no data yet | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 6 recvd nothing | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: FD 13 recvd nothing | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: Bye bye FD 13 | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[8]: done | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: FD 10 recvd nothing | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Bye bye FD 10 | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9 recvd nothing | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:43:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=21005&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=21005&ns_st_pa=1250108&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001039260&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:44:00 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=32004&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=32004&ns_st_pa=1261107&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001050259&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=42004&ns_st_cl=0&ns_st_hc=4&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=42004&ns_st_pa=1271107&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001060259&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:21 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=52004&ns_st_cl=0&ns_st_hc=5&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=52004&ns_st_pa=1281107&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001070259&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:44:31 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:44:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:44:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:44:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:44:41 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:44:41 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:44:41 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=63004&ns_st_cl=0&ns_st_hc=6&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=63004&ns_st_pa=1292107&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001081259&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:44:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: max recv retries reached, no cookie for you | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7 recvd nothing | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: max recv retries reached, no cookie for you | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8 recvd nothing | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: max recv retries reached, no cookie for you | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:44:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=124006&ns_st_cl=0&ns_st_hc=7&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=124006&ns_st_pa=1353109&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001142261&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:45:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: accept ok server FD 4 on client FD 10 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: accept ok server FD 4 on client FD 11 | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: starting | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:46:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[7]: done | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:46:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: recv() FD 11: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:46:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: recv() FD 11: no data yet | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: FD 10 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Bye bye FD 10 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: FD 11 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: Bye bye FD 11 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: done | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9 recvd nothing | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:46:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:36 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 8 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 9 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: starting | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: accept ok server FD 4 on client FD 10 | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: starting | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:46:37 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[6]: done | |
Sep 16 04:46:41 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:46:41 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 7: no data yet | |
Sep 16 04:46:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:46:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:46:42 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:46:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=hb&ns_st_po=185005&ns_st_cl=0&ns_st_hc=8&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=185005&ns_st_pa=1414108&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001203260&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=10&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:46:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:46:44 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:46:46 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:46:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: recv() FD 8: no data yet | |
Sep 16 04:46:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: recv() FD 9: no data yet | |
Sep 16 04:46:47 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: recv() FD 10: no data yet | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 8 recvd nothing | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 8 | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 9 recvd nothing | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 9 | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: FD 10 recvd nothing | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: Bye bye FD 10 | |
Sep 16 04:46:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[5]: done | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:47:08 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:47:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:47:18 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:47:23 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:47:23 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: max recv retries reached, no cookie for you | |
Sep 16 04:47:23 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:47:23 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:47:23 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=31&ns_st_sp=1&ns_st_cn=10&ns_st_ev=pause&ns_st_po=233345&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=233344&ns_st_pa=1462447&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001251599&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=11&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 6: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav2-politics/2016/09/07/donald-trump-tax-returns-mattingly-dnt-tsr.cnn&rnd=4039789035248113 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:47:33 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=1075651635988.9124? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=32&ns_st_sp=1&ns_st_cn=10&ns_st_ev=end&ns_st_po=477027&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=233344&ns_st_pa=1462447&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-tax-returns-mattingly-dnt-tsr.cnn&ns_ts=1474001261937&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=11&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=33&ns_st_sp=1&ns_st_sq=1&ns_st_cn=11&ns_st_ev=play&ns_st_po=0&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001261938&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/07/donald-trump-political-donations-profile-griffin-erin-dnt.cnn&rnd=5259025670169342 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:47:43 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:47:48 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: recv() FD 6: no data yet | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6 recvd nothing | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=34&ns_st_sp=1&ns_st_cn=11&ns_st_ev=hb&ns_st_po=10322&ns_st_cl=0&ns_st_hc=1&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=10322&ns_st_pa=1472769&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001272260&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=11&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:47:53 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=34&ns_st_sp=1&ns_st_cn=11&ns_st_ev=hb&ns_st_po=21321&ns_st_cl=0&ns_st_hc=2&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=21321&ns_st_pa=1483768&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001283259&ns_st_bt=0&ns_st_bp=0&ns_st_pc=0&ns_st_pp=11&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:48:04 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: FD 6: recvd [GET /activityi;src=4735610;type=videos1;cat=highp0;ord=1;num=4979374160376.054? HTTP/1.1 Host: 4735610.fls.doubleclick.net Connection: keep-alive Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 X-Chrome-UMA-Enabled: 1 X-Client-Data: CKC1yQEIhbbJAQiktskBCPyYygE= Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: Bye bye FD 6 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 6 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[1]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=35&ns_st_sp=1&ns_st_sq=2&ns_st_cn=11&ns_st_ev=play&ns_st_po=22858&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001284796&ns_st_bt=0&ns_st_bp=0&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=34&ns_st_sp=1&ns_st_cn=11&ns_st_ev=pause&ns_st_po=22858&ns_st_cl=0&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=22857&ns_st_pa=1485304&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001284795&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=12&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Bye bye FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: FD 7: recvd [GET /cgi-bin/m?ci=us-100120&c6=vc,b01&cc=1&tl=dav0-politics/2016/09/07/donald-trump-political-donations-profile-griffin-erin-dnt.cnn&rnd=6887063735887233 HTTP/1.1 Host: secure-us.imrworldwide.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Bye bye FD 7 | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: starting | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:48:06 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[4]: done | |
Sep 16 04:48:11 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: HTTP connection on FD 4 | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: starting | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: accept ok server FD 4 on client FD 7 | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 7: recvd [GET /p?c1=2&c2=6035748&ns_type=hidden&ns_st_sv=4.1412.05&ns_st_it=r&ns_st_id=1473999748122_1&ns_st_ec=36&ns_st_sp=1&ns_st_cn=11&ns_st_ev=hb&ns_st_po=30322&ns_st_cl=0&ns_st_hc=3&ns_st_mp=streamsense&ns_st_mv=4.1412.05&ns_st_pn=1&ns_st_tp=0&ns_st_pt=30321&ns_st_pa=1492768&ns_st_ci=politics%2F2016%2F09%2F07%2Fdonald-trump-political-donations-profile-griffin-erin-dnt.cnn&ns_ts=1474001292260&ns_st_bt=0&ns_st_bp=0&ns_st_pc=1&ns_st_pp=12&ns_st_br=0&ns_st_ub=0&ns_st_ct=vc&c3=*null&c4=CNN&c6=*null&c7=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-unfulfilled-promises%2Findex.html&c8=Donald%20Trump%27s%20unfulfilled%20promises%20-%20CNNPolitics.com&c9=http%3A%2F%2Fwww.cnn.com%2F2016%2F09%2F15%2Fpolitics%2Fdonald-trump-obama-birther-united-states%2Findex.html HTTP/1.1 Host: b.scorecardresearch.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.27 Safari/537.36 Accept: image/webp,image/*,*/*;q=0.8 DNT: 1 Referer: http://www.cnn.com/2016/09/15/politics/donald-trump-unfulfilled-promises/index.html Accept-Encoding: gzip, deflate, sdch Accept-Language: en-US,en;q=0.8,bn;q=0.6 AlexaToolbar-ALX_NS_PH: AlexaToolbar/alx-4.0 ] | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 7 | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: starting | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: Nothing to accept() server FD 4: 11(Resource temporarily unavailable) | |
Sep 16 04:48:13 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[3]: done | |
Sep 16 04:48:16 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: recv() FD 6: no data yet | |
Sep 16 04:48:17 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: FD 6 recvd nothing | |
Sep 16 04:48:17 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: Bye bye FD 6 | |
Sep 16 04:48:17 anubis-clearos /usr/local/bin/httpd410server[26723]: connection_handler[2]: done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# httpd410server Start/Stop the httpd410server daemon. | |
# | |
# chkconfig: 2345 90 60 | |
# description: httpd410server is a minimal http server to ALWAYS return HTTP 410 (Gone) | |
# to client URI requests. It can thus be used as a fallback server for | |
# DNS redirected blacklist implementations using dnsmasq, dansguardian etc. | |
# and malware / attack domain lists like from emerging threats, | |
# yoyo etc. | |
# Supratim Sanyal - supratim at riseup dot net | |
# Copy this to /etc/init.d, chmod +x and chkconfig --add. | |
# | |
# Source function library. | |
. /etc/init.d/functions | |
PIDFILE=/var/run/httpd410server.pid | |
start() { | |
echo -n "Starting httpd410server" | |
if [ -f $PIDFILE ]; then | |
PID=`cat $PIDFILE` | |
echo already running: $PID | |
exit 2; | |
else | |
daemon --user=root --pidfile=$PIDFILE exec /usr/local/bin/httpd410server>/dev/null 2>&1 & | |
RETVAL=$? | |
echo | |
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/httpd410server | |
return $RETVAL | |
fi | |
} | |
stop() { | |
echo -n "Shutting down httpd410server" | |
echo | |
killproc httpd410server | |
echo | |
rm -f /var/lock/subsys/httpd410server | |
return 0 | |
} | |
case "$1" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
status) | |
status httpd410server | |
;; | |
restart) | |
stop | |
start | |
;; | |
*) | |
echo "Usage: {start|stop|status|restart}" | |
exit 1 | |
;; | |
esac | |
exit $? |