Search

Monday, July 25, 2016

httpd410server DNS SINKHOLE: A TINY FREE WEB SERVER TO ALWAYS RETURN HTTP ERROR LOCALLY FOR DNS BLACKLIST REDIRECTION AND LOGGING

Ad-Blocker Operation Using dnsmasq and custom httpd410server
On any Linux system it is very simple to create a DNS redirection-based blacklist filter for ad blocking or malicious website blocking. I use dnsmasq with yoyo ad server blacklists for an effective ad-free home internet environment. Other solutions I have played with include dansguardian based IP filtering and the AdTrap hardware solution itself. Currently my dnsmasq based solution (described here) works well and I am pretty happy with it.

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

/* +++
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()
Here is a screen full of examples of httpd410server working:

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
view raw messages hosted with ❤ by GitHub
Finally I needed a standard init script to make a service out of the daemon, and that completed the setup. Here is the classic init.d script to start and stop httpd410server. This should be copied into /etc/init.d, after which it can be added to chkconfig using "chkconfig --add httpd410server",

#!/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 $?
view raw httpd410server hosted with ❤ by GitHub
You can download a tarball containing the daemon, source and init script from my google drive.

Sunday, July 24, 2016

ADD A FREE AD MALWARE RANSOMWARE BLOCKER WITH DNSMASQ TO CLEAROS COMMUNITY EDITION / CENTOS LINUX INTERNET SECURITY SERVER

Here is a quick and easy way to block internet ads in your home. This also blocks various tracking services that collect information about your browsing (claiming to be to fine-tune ads for you) and makes internet browsing cleaner and faster. Everything I talk about in this post can be downloaded from a link at the bottom.

I use a ClearOS Community Edition server as the innermost of my three-layer onion internet security gateway (as in layers of an onion, nothing to do with the TOR project in this post, although I will describe my TOR gateway in another post later). Among the many excellent features of ClearOS, the fact that it is built on CentOS makes it instantly familiar to those of us at ease with CentOS who want to customize everything.

Writing the Ad Server Blacklist script for Ad Blocker using dansmasq on ClearOS running on CentOS 


ClearOS comes with dnsmasq to serve DHCP and DNS requests. It provides IP addresses to DHCP hosts and forwards DNS requests to a higher-level peer DNS server. In my setup, I have three local area networks served by ClearOS: a dedicated 10.100.0.0 LAN for my hobby projects in the basement, a 10.200.0.0 "rest of the house" LAN and a host-only 10.42.0.0 LAN to provide internet to the DELL PowerEdge blade server itself that hosts all the virtual machines that make up the internet security onion gateway, and other VMs running on it.

As a side note, I named my internet safety gateway system "DORMARTH" after the great hound (also called "Dormarch") from Welsh mythology whose assistance to warriors chasing down the enemy and facilitating the passage of the dead to the other side is legendary. Most of my server hostnames have "dormarth" somewhere as a result.

Coming back to dnsmasq, before adding the ad-blocking feature, I checked on what was installed with CentOS and found the following primary configuration file.

bogus-priv
cache-size=5000
conf-dir=/etc/dnsmasq.d
dhcp-authoritative
dhcp-lease-max=1000
domain-needed
domain=sanyalnet.lan
expand-hosts
no-negcache
port=53
resolv-file=/etc/resolv-peerdns.conf
strict-order
user=nobody
view raw dnsmasq.conf hosted with ❤ by GitHub


The line "conf-dir=/etc/dnsmasq.d" was immediately interesting, telling me there is a whole directory that I can drop configuration files in for dnsmasq to pick up, without having to change anything in the main configuration file /etc/dnsmasq.conf at all.

Looking at the contents of /etc/dnsmasq.d, I found a single file /etc/dnsmasq.d/dhcp.conf which tells dnsmasq what interface to serve DHCP requests on, what IP address ranges to use for DHCP clients, how long DHCP sessions are valid before requiring renewal, etc.

dhcp-option=eth0,1,255.255.255.0
dhcp-option=eth0,28,10.100.0.255
dhcp-option=eth0,3,10.100.0.1
dhcp-option=eth0,6,10.100.0.1
dhcp-option=eth1,1,255.255.255.0
dhcp-option=eth1,28,10.200.0.255
dhcp-option=eth1,3,10.200.0.1
dhcp-option=eth1,6,10.200.0.1
dhcp-option=eth2,1,255.255.255.0
dhcp-option=eth2,28,10.42.2.255
dhcp-option=eth2,3,10.42.2.1
dhcp-option=eth2,6,10.42.2.1
dhcp-range=eth0,10.100.0.100,10.100.0.199,12h
dhcp-range=eth1,10.200.0.100,10.200.0.199,12h
dhcp-range=eth2,10.42.2.100,10.42.2.199,12h
read-ethers
view raw dhcp.conf hosted with ❤ by GitHub
The only other file I checked on was the resolver configuration file /etc/resolv-peerdns.conf referenced by /etc/dnsmasq.conf. This has one line, basically defining the peer DNS host to forward requests to. In my case, the ClearOS server forwards DNS requests to the 2nd of my three-layer onion security gateway (a Sophos UTM server):

[root@anubis-clearos ~]# cat /etc/resolv-peerdns.conf
nameserver 10.42.1.1

Now, we have enough information to add ad blocking to the dnsmasq configuration so that it stops known advertising websites from delivering ads to its DHCP and static clients.

I decided to use the great lists of advertising servers and URLs maintained by Yoyo Internet Services. The types of lists we can download from Yoyo can be chosen using selection drop-down lists and checkboxes at their "Ad blocking with ad server hostname and IP addresses" web page.

Among the numerous types of ad server list file formats, the two that I am interested in are the lists designed for dnsmasq using "address=" lines, and dnsmasq using "server=" lines. Selecting the corresponding items from the drop-down lists, choosing "no links back to this page" and checking the "view list as plain text" gives us the following two lists that we can simply dump into directory /etc/dnsmasq.d via a cron job and restart dnsmasq.


I wrote a basic shell script to download these ad server lists and drop them into /etc/dnsmasq.d, and saved it into /root/adblocker/adblocker-dnsmasq.sh. Here is adblocker-dnsmasq.sh

#!/bin/bash
# --
# adblocker-dnsmasq.sh
# Rev 6
#
# Complete guide to creating your own ad-blocking, malware blocking and ransomware-blocking internet gateway:
# http://supratim-sanyal.blogspot.com/2016/07/add-simple-ad-blocker-with-dnsmasq-to.html
#
# Assuming dnsmasq is configured so that it reads configuration files from /etc/dnsmasq.d, this
# script grabs ad, malware and ransomware server lists from yoyo and other places, saving "address=/xxxxxx.com/10.42.2.1" and
# "server=/xxxxxx.com/" format files in dnsmasq configuration directory so that requests to the listed ad servers
# are redirected to a local LAN address or fail. It restarts dnsmasq afterwards.
#
# OUTPUT FILES:
# 1) /etc/dnsmasq.d/adblocklist.conf with lines like "address=/xxxxxx.com/10.42.2.1"
# 2) /etc/dnsmasq.d/adblockserverlist.conf with lines like "server=/xxxxxx.com/"
# 3) /etc/dnsmasq.d/adblocklist-from-vps.conf - grabbed from my VPS at http://sanyalnet-cloud-vps.freeddns.org/adblocklist.conf
#
# This should be put in a weekly cron job, perhaps using a file in /etc/cron.d/update-adblocker-dnsmasq like this:
# #/etc/cron.d/update-adblocker-dnsmasq
# SHELL=/bin/bash
# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
# MAILTO=""
# HOME=/
# # Every 7 days (each Wednesday midnight) update dnsmasq ad server block lists
# 0 0 * * 3 * root /root/adblocker/adblocker-dnsmasq.sh>/var/log/adblocker-dnsmasq.log 2>&1
#
# Initial implementation tested on a massively modified CentOS-based ClearOS Community release 6.6.0 (Final)
# server with Dnsmasq version 2.72.
# Linux anubis-clearos.sanyalnet.lan 2.6.32-573.1.1.v6.x86_64 #1 SMP Fri Aug 21 13:24:06 MDT 2015 x86_64 x86_64 x86_64 GNU/Linux
#
# License: GNU AGPLv3 http://tuklusan.decsystem.org/agpl-3.0.txt
#
# Supratim Sanyal, Germantown, MD
# http://supratim-sanyal.blogspot.com/
# e-mail form: http://mcaf.ee/sdlg9f
# --
# The following is the IP address that ad server domains will be forced to resolve to
# This IP runs a little http server that returns HTTP 502 and logs the ad request (so that I can see all ad requests being
# blocked in real time). See http://supratim-sanyal.blogspot.com/2016/07/httpd410server-tiny-free-web-server-to.html
#------------------------
IP='10.42.2.1'
#------------------------
# --------------------
# get list from yoyo.org, and
# create /etc/dnsmasq.d/adblocklist.conf with lines like "address=/xxxxxx.com/10.42.2.1"
# --------------------
# get https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=0&mimetype=plaintext into /etc/dnsmasq.d/adblocklist.conf
/bin/mv /etc/dnsmasq.d/adblocklist.conf /tmp/adblocklist.conf.bak
/usr/bin/wget --no-check-certificate -q -O /etc/dnsmasq.d/adblocklist.conf "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=0&mimetype=plaintext"
if [ "$?" -ne "0" ]; then
/bin/logger -p cron.err "ad blocklist updater: wget adblocklist failed"
echo "ad blocklist updater: wget adblocklist failed"
/bin/mv /tmp/adblocklist.conf.bak /etc/dnsmasq.d/adblocklist.conf
else
# The following line repoints 127.0.0.1 in the blocklist to a little http server running on my network that
# returns HTTP 502 and logs the ad request (so that I can see all ad requests being blocked at real time)
/bin/sed -i "s/127.0.0.1/$IP/g" /etc/dnsmasq.d/adblocklist.conf
fi
# --------------------
# get lists from many sources, and
# create /etc/dnsmasq.d/adblockserverlist.conf with lines like "server=/xxxxxx.com/"
# --------------------
# this part is adapted from the adblocker for dd-wrt from http://jazz.tvtom.pl/download/dd-wrt/adblock
# the idea is even if we fail to get a list from yoyo this will still provide a list
HOSTSTEMP='/tmp/adserver-hosts.tmp'
HOSTSDENY='/etc/dnsmasq.d/adblockserverlist.conf'
BLACKLISTS='https://raw.githubusercontent.com/Dawsey21/Lists/master/main-blacklist.txt
http://adaway.org/hosts.txt
http://adblock.gjtech.net/?format=unix-hosts
http://hosts-file.net/ad_servers.txt
http://jazz.tvtom.pl/download/hosts
http://mirror.cedia.org.ec/malwaredomains/justdomains
http://palevotracker.abuse.ch/blocklists.php?download=domainblocklist
http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts;showintro=0;mimetype=plaintext
http://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt
http://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt
http://someonewhocares.org/hosts/hosts
http://sysctl.org/cameleon/hosts
http://winhelp2002.mvps.org/hosts.txt
http://www.dshield.org/feeds/suspiciousdomains_Low.txt
http://www.malekal.com/HOSTS_filtre/HOSTS.txt
http://www.malwaredomainlist.com/hostslist/hosts.txt
http://malwaredomains.lehigh.edu/files/justdomains
http://zeustracker.abuse.ch/blocklist.php?download=hostfile'
# + ---
# WHITELIST - DO NOT BLOCK THESE DOMAINS
# + ---
WHITELIST='localhost
apple.com
twitter.com
localhost.localdomain'
: > $HOSTSTEMP
for url in $BLACKLISTS ; do
/usr/bin/wget --no-check-certificate -O- $url | /bin/cut -d '#' -f 1 | /bin/grep -E -o '([a-zA-Z0-9](-?[a-zA-Z0-9])*\.){1,}[a-zA-Z]{2,}' | /bin/sed 's/.*/127.0.0.1 \0/g' >> $HOSTSTEMP
done
#echo 'Sorting'
/bin/sort $HOSTSTEMP | /usr/bin/uniq > $HOSTSDENY
for site in $WHITELIST ; do
/bin/sed -i "/^127\.0\.0\.1 $site/d" $HOSTSDENY
done
/bin/sed -i "s/^127\.0\.0\.1 /server=\//g" $HOSTSDENY
/bin/sed -i "s/\$/\//g" $HOSTSDENY
# ------------
# Grab the advertisement domain block list I maintain independently on my VPS
# ------------
curl -o /etc/dnsmasq.d/adblocklist-from-vps.conf http://sanyalnet-cloud-vps.freeddns.org/adblocklist.conf
/bin/sed -i "s/0.0.0.0/$IP/g" /etc/dnsmasq.d/adblocklist-from-vps.conf
# restart dnsmaq
/sbin/service dnsmasq restart
# report what we have done
date
echo
echo
echo ---
echo /etc/dnsmasq.d/adblocklist.conf:
echo ---
cat /etc/dnsmasq.d/adblocklist.conf
echo ---
echo
echo
echo ---
echo /etc/dnsmasq.d/adblockserverlist.conf:
echo ---
cat /etc/dnsmasq.d/adblockserverlist.conf
echo ---
echo
echo
echo ---
echo /etc/dnsmasq.d/adblocklist-from-vps.conf
echo ---
cat /etc/dnsmasq.d/adblocklist-from-vps.conf
echo ---
echo
/sbin/service dnsmasq status
# --
# if lighttpd document root is present, copy the blocklist there (for web access by others)
# --
if [ -d "/var/www/lighttpd/" ]; then
cp -f /etc/dnsmasq.d/adblocklist.conf /var/www/lighttpd/
chown lighttpd:lighttpd /var/www/lighttpd/adblocklist.conf
chmod a+r /var/www/lighttpd/adblocklist.conf
fi
echo
echo That is all folks.

The original adserver list file adblocklist.conf downloaded by wget contains the IP address of 127.0.0.1 that all the domains and URLs resolve to. However, I run a little custom HTTP server that responds with a HTTP code of 410 (GONE) to all requests while logging the request. The purpose of this minimal server (I have described it in detail with the source code here) is to log all advertising server requests that dnsmasq blocks based on the block-list. To do that, the 127.0.0.1 addresses in the block-list need to be changed to the IP 10.42.2.1 of the server running the small HTTP 502 responder. This is accomplished by the line "sed -i 's/127.0.0.1/10.42.2.1/g' /etc/dnsmasq.d/adblocklist.conf" in the above script. I will write separately about the little server, but there is an example of what it produces later in this post.





Another subtlety of the above script is that wget preserves the time of the original file it gets from the remote site. The folks at yoyo update the lists last on July 21, and today is July 25. When I ran the script today, both adblocklist.conf and adblockserverlist.conf were fetched successfully by wget with July 21 dates on the files, but the sed command ran on adblocklist.conf, thus changing the file time of adblocklist.conf to the current. adblockserverlist.conf is not manipulated at all and the original file date is preserved.

The final piece is adding the adblocker-dnsmasq.sh script to cron so that the lists get updated automagically. I chose a weekly update schedule because advertising servers do not pop up or disappear very frequently. For the cron job, I created the file update-adblocker-dnsmasq in /etc/cron.d/ containing a directive to crond to run the ad server list updater on a schedule:

#/etc/cron.d/update-adblocker-dnsmasq
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
MAILTO=""
HOME=/
# Every 7 days (each Wednesday midnight) update dnsmasq ad server block lists
0 0 * * 3 * root /root/adblocker/adblocker-dnsmasq.sh>/var/log/adblocker-dnsmasq.log 2>&1
To test, I ran the updater command line directly and verified that the ad server block lists were indeed making it to the correct directory /etc/dnsmasq.d:


[root@anubis-clearos adblocker]# ls -l /etc/dnsmasq.d
total 148
-rw-r--r-- 1 root root 84187 Jul 25 03:26 adblocklist.conf
-rw-r--r-- 1 root root 60357 Jul 21 09:38 adblockserverlist.conf
-rw-r--r-- 1 root root   523 Aug  2  2015 dhcp.conf
[root@anubis-clearos adblocker]#
[root@anubis-clearos adblocker]# date
Mon Jul 25 03:30:31 UTC 2016
[root@anubis-clearos adblocker]# ls -l /etc/dnsmasq.d
total 148
-rw-r--r-- 1 root root 84187 Jul 25 03:26 adblocklist.conf
-rw-r--r-- 1 root root 60357 Jul 21 09:38 adblockserverlist.conf
-rw-r--r-- 1 root root   523 Aug  2  2015 dhcp.conf
[root@anubis-clearos adblocker]# ls -l /var/log/adblocker-dnsmasq.log
-rw-r--r-- 1 root root 144817 Jul 25 03:26 /var/log/adblocker-dnsmasq.log
[root@anubis-clearos adblocker]# ls -l /tmp/adblock*
-rw-r--r-- 1 root root 84187 Jul 25 03:07 /tmp/adblocklist.conf.bak

-rw-r--r-- 1 root root 60357 Jul 25 03:14 /tmp/adblockserverlist.conf.bak



Also inspecting /var/log/messages for logs from dnsmasq reveals everything is working as expected, which is also confirmed by looking at the log file /var/log/adblocker-dnsmasq.log:


Shutting down dnsmasq:                                     [  OK  ]
Starting dnsmasq:                                          [  OK  ]
Mon Jul 25 03:26:15 UTC 2016

/etc/dnsmasq.d/adblocklist.conf
---
address=/.../10.42.2.1
address=/.../10.42.2.1
address=/.../10.42.2.1
...
...

address=/.../10.42.2.1

address=/.../10.42.2.1

---





/etc/dnsmasq.d/adblockserverlist.conf:

---

server=/.../

server=/.../

server=/.../


---
dnsmasq (pid  11431) is running...

That is all folks.

Now log into any computer or mobile device served by this ad-filtering installation of dnsmasq and browse some ad-heavy web-sites. The sites will load faster and cleaner without the advertising, not to mention your browsing security increases since there is far less amount of third-party websites tracking your behavior. Here is a sample of the ads blocked by dnsmasq as logged by my little 502 server to which the blocked domains and URLs are redirected:




Recommended Products from Amazon