Skip to main content

Thread: I assume I was hacked last night so how do I find out and fix it?


for odd reason none of folders want load @ all.

such blog, forum, nothing.

apache2.conf file

code:
# based upon ncsa server configuration files rob mccool.  #  # main apache server configuration file.  contains  # configuration directives give server instructions.  # see http://httpd.apache.org/docs/2.2/ detailed information  # directives.  #  # not read instructions in here without understanding  # do.  they're here hints or reminders.  if unsure  # consult online docs. have been warned.    #  # configuration directives grouped 3 basic sections:  #  1. directives control operation of apache server process  #     whole (the 'global environment').  #  2. directives define parameters of 'main' or 'default' server,  #     responds requests aren't handled virtual host.  #     these directives provide default values settings  #     of virtual hosts.  #  3. settings virtual hosts, allow web requests sent  #     different ip addresses or hostnames , have them handled  #     same apache server process.  #  # configuration , logfile names: if filenames specify many  # of server's control files begin "/" (or "drive:/" win32),  # server use explicit path.  if filenames *not* begin  # "/", value of serverroot prepended -- "/var/log/apache2/foo.log"  # serverroot set "" interpreted  # server "//var/log/apache2/foo.log".  #    ### section 1: global environment  #  # directives in section affect overall operation of apache,  # such number of concurrent requests can handle or  # can find configuration files.  #    #  # serverroot: top of directory tree under server's  # configuration, error, , log files kept.  #  # note!  if intend place on nfs (or otherwise network)  # mounted filesystem please read lockfile documentation (available  # @ <url:http://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile>);  # save lot of trouble.  #  # not add slash @ end of directory path.  #  serverroot "/etc/apache2"    #  # accept serialization lock file must stored on local disk.  #  #<ifmodule !mpm_winnt.c>  #<ifmodule !mpm_netware.c>  lockfile /var/lock/apache2/accept.lock  #</ifmodule>  #</ifmodule>    #  # pidfile: file in server should record process  # identification number when starts.  # needs set in /etc/apache2/envvars  #  pidfile ${apache_pid_file}    #  # timeout: number of seconds before receives , sends time out.  #  timeout 300    #  # keepalive: whether or not allow persistent connections (more  # 1 request per connection). set "off" deactivate.  #  keepalive on    #  # maxkeepaliverequests: maximum number of requests allow  # during persistent connection. set 0 allow unlimited amount.  # recommend leave number high, maximum performance.  #  maxkeepaliverequests 100    #  # keepalivetimeout: number of seconds wait next request  # same client on same connection.  #  keepalivetimeout 15    ##  ## server-pool size regulation (mpm specific)  ##     # prefork mpm  # startservers: number of server processes start  # minspareservers: minimum number of server processes kept spare  # maxspareservers: maximum number of server processes kept spare  # maxclients: maximum number of server processes allowed start  # maxrequestsperchild: maximum number of requests server process serves  <ifmodule mpm_prefork_module>      startservers          5      minspareservers       5      maxspareservers      10      maxclients          150      maxrequestsperchild   0  </ifmodule>    # worker mpm  # startservers: initial number of server processes start  # maxclients: maximum number of simultaneous client connections  # minsparethreads: minimum number of worker threads kept spare  # maxsparethreads: maximum number of worker threads kept spare  # threadsperchild: constant number of worker threads in each server process  # maxrequestsperchild: maximum number of requests server process serves  <ifmodule mpm_worker_module>      startservers          2      minsparethreads      25      maxsparethreads      75       threadlimit          64      threadsperchild      25      maxclients          150      maxrequestsperchild   0  </ifmodule>    # event mpm  # startservers: initial number of server processes start  # maxclients: maximum number of simultaneous client connections  # minsparethreads: minimum number of worker threads kept spare  # maxsparethreads: maximum number of worker threads kept spare  # threadsperchild: constant number of worker threads in each server process  # maxrequestsperchild: maximum number of requests server process serves  <ifmodule mpm_event_module>      startservers          2      maxclients          150      minsparethreads      25      maxsparethreads      75       threadlimit          64      threadsperchild      25      maxrequestsperchild   0  </ifmodule>    # these need set in /etc/apache2/envvars  user ${apache_run_user}  group ${apache_run_group}    #  # accessfilename: name of file in each directory  # additional configuration directives.  see allowoverride  # directive.  #    accessfilename .htaccess    #  # following lines prevent .htaccess , .htpasswd files being   # viewed web clients.   #  <files ~ "^\.ht">      order allow,deny      deny      satisfy  </files>    #  # defaulttype default mime type server use document  # if cannot otherwise determine one, such filename extensions.  # if server contains text or html documents, "text/plain"  # value.  if of content binary, such applications  # or images, may want use "application/octet-stream" instead  # keep browsers trying display binary files though  # text.  #  defaulttype text/plain      #  # hostnamelookups: log names of clients or ip addresses  # e.g., www.apache.org (on) or 204.62.129.132 (off).  # default off because it'd overall better net if people  # had knowingly turn feature on, since enabling means  # each client request result in @ least 1 lookup request  # nameserver.  #  hostnamelookups off    # errorlog: location of error log file.  # if not specify errorlog directive within <virtualhost>  # container, error messages relating virtual host  # logged here.  if *do* define error logfile <virtualhost>  # container, host's errors logged there , not here.  #  errorlog /var/log/apache2/error.log    #  # loglevel: control number of messages logged error_log.  # possible values include: debug, info, notice, warn, error, crit,  # alert, emerg.  #  loglevel warn    # include module configuration:  include /etc/apache2/mods-enabled/*.load  include /etc/apache2/mods-enabled/*.conf    # include user configurations:  include /etc/apache2/httpd.conf    # include ports listing  include /etc/apache2/ports.conf    #  # following directives define format nicknames use  # customlog directive (see below).  # if behind reverse proxy, might want change %h %{x-forwarded-for}i  #  logformat "%v:%p %h %l %u %t \"%r\" %>s %o \"%{referer}i\" \"%{user-agent}i\"" vhost_combined  logformat "%h %l %u %t \"%r\" %>s %o \"%{referer}i\" \"%{user-agent}i\"" combined  logformat "%h %l %u %t \"%r\" %>s %o" common  logformat "%{referer}i -> %u" referer  logformat "%{user-agent}i" agent    #  # define access log virtualhosts don't define own logfile  customlog /var/log/apache2/other_vhosts_access.log vhost_combined      # include of directories ignores editors' , dpkg's backup files,  # see readme.debian details.    # include generic snippets of statements  include /etc/apache2/conf.d/    # include virtual host configurations:  include /etc/apache2/sites-enabled/
apache error log

code:
[sun sep 05 06:49:58 2010] [notice] apache/2.2.14 (ubuntu) php/5.3.2-1ubuntu4.2 suhosin-patch configured -- resuming normal operations  [sun sep 05 06:50:05 2010] [error] [client 90.225.8.253] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 06:50:05 2010] [error] [client 90.225.8.253] file not exist: /htdocs  [sun sep 05 06:50:08 2010] [error] [client 90.225.8.253] file not exist: /htdocs  [sun sep 05 06:50:11 2010] [error] [client 90.225.8.253] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 06:50:11 2010] [error] [client 90.225.8.253] file not exist: /htdocs  [sun sep 05 06:50:14 2010] [error] [client 90.225.8.253] file not exist: /htdocs  [sun sep 05 06:55:26 2010] [error] [client 67.182.203.139] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 06:55:26 2010] [error] [client 67.182.203.139] file not exist: /htdocs  [sun sep 05 06:55:38 2010] [error] [client 67.182.203.139] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 06:55:38 2010] [error] [client 67.182.203.139] file not exist: /htdocs  [sun sep 05 07:06:48 2010] [error] [client 124.191.120.197] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 07:07:14 2010] [error] [client 68.195.74.219] file not exist: /htdocs  [sun sep 05 07:07:15 2010] [error] [client 68.195.74.219] file not exist: /htdocs, referer: http://waloshin.com/faanpage  [sun sep 05 07:07:22 2010] [error] [client 68.195.74.219] file not exist: /htdocs  [sun sep 05 07:07:26 2010] [error] [client 68.195.74.219] file not exist: /htdocs  [sun sep 05 07:07:29 2010] [error] [client 173.60.227.113] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 07:07:33 2010] [error] [client 68.195.74.219] file not exist: /htdocs  [sun sep 05 07:07:33 2010] [error] [client 68.195.74.219] file not exist: /htdocs, referer: http://www.waloshin.com/  [sun sep 05 07:07:46 2010] [error] [client 68.195.74.219] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1008181  [sun sep 05 07:24:11 2010] [error] [client 96.22.58.137] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 07:24:50 2010] [error] [client 66.249.65.54] file not exist: /htdocs  [sun sep 05 07:24:50 2010] [error] [client 66.249.65.54] file not exist: /htdocs  [sun sep 05 07:25:23 2010] [error] [client 74.125.75.4] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 07:32:50 2010] [error] [client 72.197.183.137] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 07:33:05 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:05 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:05 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:05 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:10 2010] [error] [client 207.189.121.45] file not exist: /htdocs  [sun sep 05 07:33:11 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:13 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:14 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:14 2010] [error] [client 173.53.184.60] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 07:33:14 2010] [error] [client 207.189.121.45] file not exist: /htdocs  [sun sep 05 07:33:14 2010] [error] [client 207.189.121.46] file not exist: /htdocs  [sun sep 05 07:33:14 2010] [error] [client 207.189.121.46] file not exist: /htdocs  [sun sep 05 07:36:09 2010] [error] [client 86.154.232.12] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 07:36:46 2010] [error] [client 86.154.232.12] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 07:36:46 2010] [error] [client 86.154.232.12] file not exist: /htdocs  [sun sep 05 07:36:49 2010] [error] [client 86.154.232.12] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 07:36:49 2010] [error] [client 86.154.232.12] file not exist: /htdocs  [sun sep 05 07:41:21 2010] [error] [client 96.33.132.27] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 07:44:35 2010] [error] [client 77.88.27.27] file not exist: /htdocs  [sun sep 05 07:48:32 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 07:48:33 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 07:48:34 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 07:49:55 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 07:52:55 2010] [error] [client 12.54.66.50] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 07:52:55 2010] [error] [client 12.54.66.50] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 07:58:10 2010] [error] [client 189.221.244.153] file not exist: /htdocs, referer: http://www.google.com.mx/search?hl=es&source=hp&q=baking+life+tutorial&aq=f&aqi=&aql=&oq=&gs_rfai=  [sun sep 05 07:59:04 2010] [error] [client 67.9.194.73] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 08:00:02 2010] [error] [client 93.174.95.161] file not exist: /htdocs, referer: http://waloshin.com/forum/index.php?action%3drecent  [sun sep 05 08:00:03 2010] [error] [client 93.174.95.161] file not exist: /htdocs, referer: http://waloshin.com/  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:06:12 2010] [error] [client 173.66.206.215] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 08:09:24 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10988727&highlight=  [sun sep 05 08:09:25 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:09:33 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://www.google.no/search?q=walo+shin+fan+page&channel=linkdoctor  [sun sep 05 08:09:33 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:09:38 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://www.google.no/search?q=walo+shin+fan+page&channel=linkdoctor  [sun sep 05 08:09:39 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:09:48 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10988727&highlight=  [sun sep 05 08:09:48 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:09:55 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10988727&highlight=  [sun sep 05 08:09:55 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:10:22 2010] [error] [client 90.149.27.3] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10988727&highlight=  [sun sep 05 08:10:22 2010] [error] [client 90.149.27.3] file not exist: /htdocs  [sun sep 05 08:11:16 2010] [error] [client 99.13.123.217] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:22:48 2010] [error] [client 99.189.186.19] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 08:22:48 2010] [error] [client 99.189.186.19] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 08:23:05 2010] [error] [client 68.7.144.50] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:23:09 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 08:29:45 2010] [error] [client 125.45.109.166] file not exist: /htdocs  [sun sep 05 08:34:44 2010] [error] [client 91.108.16.19] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:34:45 2010] [error] [client 91.108.16.19] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:41:32 2010] [error] [client 77.88.27.27] file not exist: /htdocs  [sun sep 05 08:53:22 2010] [error] [client 86.174.94.76] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:53:23 2010] [error] [client 86.174.94.76] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 08:59:45 2010] [error] [client 67.202.122.32] file not exist: /htdocs  [sun sep 05 09:10:04 2010] [error] [client 68.60.136.63] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:10:13 2010] [error] [client 68.60.136.63] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:10:14 2010] [error] [client 68.60.136.63] file not exist: /htdocs  [sun sep 05 09:10:16 2010] [error] [client 68.60.136.63] file not exist: /htdocs  [sun sep 05 09:10:21 2010] [error] [client 72.200.66.149] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1006786  [sun sep 05 09:12:02 2010] [error] [client 115.64.202.167] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:12:03 2010] [error] [client 115.64.202.167] file not exist: /htdocs  [sun sep 05 09:12:06 2010] [error] [client 115.64.202.167] file not exist: /htdocs  [sun sep 05 09:13:26 2010] [error] [client 90.184.92.45] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:13:27 2010] [error] [client 90.184.92.45] file not exist: /htdocs  [sun sep 05 09:13:31 2010] [error] [client 90.184.92.45] file not exist: /htdocs  [sun sep 05 09:14:04 2010] [error] [client 85.65.132.191] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?p=9803982  [sun sep 05 09:14:05 2010] [error] [client 85.65.132.191] file not exist: /htdocs  [sun sep 05 09:14:08 2010] [error] [client 85.65.132.191] file not exist: /htdocs  [sun sep 05 09:14:13 2010] [error] [client 85.65.132.191] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?p=9803982  [sun sep 05 09:14:13 2010] [error] [client 85.65.132.191] file not exist: /htdocs  [sun sep 05 09:14:16 2010] [error] [client 85.65.132.191] file not exist: /htdocs  [sun sep 05 09:15:36 2010] [error] [client 71.176.133.42] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 09:15:36 2010] [error] [client 71.176.133.42] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 09:17:08 2010] [error] [client 75.21.106.165] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 09:17:20 2010] [error] [client 58.218.204.110] file not exist: /htdocs  [sun sep 05 09:21:04 2010] [error] [client 66.249.65.35] file not exist: /htdocs  [sun sep 05 09:22:03 2010] [error] [client 84.26.223.203] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:22:04 2010] [error] [client 84.26.223.203] file not exist: /htdocs  [sun sep 05 09:22:04 2010] [error] [client 84.26.223.203] file not exist: /htdocs  [sun sep 05 09:22:11 2010] [error] [client 84.26.223.203] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:22:43 2010] [error] [client 67.160.138.213] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1008181  [sun sep 05 09:22:43 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:22:46 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:22:47 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:22:56 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:25:20 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:25:34 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:26:31 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:26:34 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:26:49 2010] [error] [client 76.182.21.254] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 09:28:22 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:28:54 2010] [error] [client 66.249.65.35] file not exist: /htdocs  [sun sep 05 09:31:43 2010] [error] [client 74.125.44.84] file not exist: /htdocs  [sun sep 05 09:36:21 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:36:22 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:36:24 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 09:36:58 2010] [error] [client 69.245.99.207] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:36:59 2010] [error] [client 69.245.99.207] file not exist: /htdocs  [sun sep 05 09:37:02 2010] [error] [client 69.245.99.207] file not exist: /htdocs  [sun sep 05 09:37:16 2010] [error] [client 69.245.99.207] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 09:37:17 2010] [error] [client 69.245.99.207] file not exist: /htdocs  [sun sep 05 09:37:20 2010] [error] [client 69.245.99.207] file not exist: /htdocs  [sun sep 05 09:37:24 2010] [error] [client 69.245.99.207] file not exist: /htdocs  [sun sep 05 09:38:29 2010] [error] [client 77.88.27.27] file not exist: /htdocs  [sun sep 05 09:39:28 2010] [error] [client 91.156.163.195] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 09:42:16 2010] [error] [client 81.135.16.172] file not exist: /htdocs, referer: http://www.google.co.uk/search?hl=en&client=firefox-a&hs=plx&rls=org.mozilla%3aen-gb%3aofficial&q=baking+life+xp&aq=8&aqi=g10&aql=&oq=baking+life+&gs_rfai=  [sun sep 05 09:47:39 2010] [error] [client 68.118.227.96] file not exist: /htdocs  [sun sep 05 09:47:39 2010] [error] [client 68.118.227.96] file not exist: /htdocs  [sun sep 05 09:47:45 2010] [error] [client 68.118.227.96] file not exist: /htdocs  [sun sep 05 09:47:46 2010] [error] [client 68.118.227.96] file not exist: /htdocs  [sun sep 05 10:04:18 2010] [error] [client 70.223.192.93] file not exist: /htdocs, referer: http://androidforums.com/lounge/167707-looking-guest-bloggers.html  [sun sep 05 10:04:18 2010] [error] [client 70.223.192.93] file not exist: /htdocs, referer: http://waloshin.com/forum/index.php/topic,10.0.html  [sun sep 05 10:04:20 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 10:04:40 2010] [error] [client 70.223.192.93] file not exist: /htdocs, referer: http://androidforums.com/lounge/167707-looking-guest-bloggers.html  [sun sep 05 10:04:41 2010] [error] [client 70.223.192.93] file not exist: /htdocs, referer: http://waloshin.com/blog/?p=1277  [sun sep 05 10:04:54 2010] [error] [client 70.223.192.93] file not exist: /htdocs  [sun sep 05 10:08:54 2010] [error] [client 152.91.9.153] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 10:08:55 2010] [error] [client 152.91.9.153] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 10:08:55 2010] [error] [client 152.91.9.153] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 10:08:55 2010] [error] [client 152.91.9.153] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?t=1003418  [sun sep 05 10:11:23 2010] [error] [client 70.31.11.172] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 10:11:23 2010] [error] [client 70.31.11.172] file not exist: /htdocs  [sun sep 05 10:11:26 2010] [error] [client 70.31.11.172] file not exist: /htdocs  [sun sep 05 10:11:27 2010] [error] [client 70.31.11.172] file not exist: /htdocs  [sun sep 05 10:14:11 2010] [error] [client 125.45.109.166] file not exist: /htdocs  [sun sep 05 10:15:01 2010] [error] [client 71.17.126.65] file not exist: /htdocs  [sun sep 05 10:15:07 2010] [error] [client 71.17.126.65] file not exist: /htdocs  [sun sep 05 10:15:11 2010] [error] [client 71.17.126.65] file not exist: /htdocs  [sun sep 05 10:19:09 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 10:19:38 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 10:19:41 2010] [error] [client 67.160.138.213] file not exist: /htdocs  [sun sep 05 10:20:27 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:27 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:27 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:28 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:29 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:29 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:29 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:29 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:30 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:31 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:32 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:33 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:34 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:35 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:36 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:37 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:38 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:39 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:40 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:41 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:42 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:20:43 2010] [error] [client 173.201.36.135] file not exist: /htdocs  [sun sep 05 10:35:26 2010] [error] [client 77.88.27.27] file not exist: /htdocs  [sun sep 05 10:41:03 2010] [error] [client 94.192.171.11] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 10:41:03 2010] [error] [client 94.192.171.11] file not exist: /htdocs, referer: http://androidforums.com/lounge/152367-post-pics-your-whips-2.html  [sun sep 05 10:46:42 2010] [error] [client 111.84.156.178] file not exist: /htdocs, referer: http://www.google.co.th/imglanding?q=baking%20life&imgurl=http://3.bp.blogspot.com/_vxexivlkgxs/tbeeleq_hyi/aaaaaaaabp0/26dwjwbjovk/s1600/baking%2blife%2bcheats.bmp&imgrefurl=http://blogvideohosting.blogspot.com/2010/06/baking-life-cheats-super-money.html&usg=__uo1bhoursjyxqjuyzvsdodgieq0=&h=490&w=759&sz=83&hl=th&zoom=1&um=1&itbs=1&tbnid=o-efys9asr-7xm:&tbnh=92&tbnw=142&prev=/images%3fq%3dbaking%2blife%26um%3d1%26hl%3dth%26sa%3dn%26tbs%3disch:1&um=1&sa=n&tbs=isch:1&start=0  [sun sep 05 10:48:41 2010] [error] [client 82.69.58.220] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 10:48:41 2010] [error] [client 82.69.58.220] file not exist: /htdocs  [sun sep 05 10:48:56 2010] [error] [client 82.69.58.220] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 10:48:57 2010] [error] [client 82.69.58.220] file not exist: /htdocs  [sun sep 05 11:00:33 2010] [error] [client 207.244.223.77] file not exist: /htdocs  [sun sep 05 11:01:49 2010] [error] [client 173.29.123.43] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 11:03:06 2010] [error] [client 173.29.123.43] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 11:03:07 2010] [error] [client 173.29.123.43] file not exist: /htdocs  [sun sep 05 11:04:08 2010] [error] [client 195.241.220.183] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 11:04:09 2010] [error] [client 195.241.220.183] file not exist: /htdocs  [sun sep 05 11:04:12 2010] [error] [client 195.241.220.183] file not exist: /htdocs  [sun sep 05 11:04:18 2010] [error] [client 195.241.220.183] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 11:11:42 2010] [error] [client 196.25.255.194] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 11:12:39 2010] [error] [client 196.25.255.195] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 11:12:40 2010] [error] [client 198.54.202.194] file not exist: /htdocs  [sun sep 05 11:12:43 2010] [error] [client 198.54.202.194] file not exist: /htdocs  [sun sep 05 11:12:49 2010] [error] [client 198.54.202.194] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1568293  [sun sep 05 11:12:51 2010] [error] [client 198.54.202.218] file not exist: /htdocs  [sun sep 05 11:12:53 2010] [error] [client 198.54.202.218] file not exist: /htdocs  [sun sep 05 11:14:45 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 11:17:11 2010] [error] [client 66.249.65.51] file not exist: /htdocs  [sun sep 05 11:17:38 2010] [error] [client 94.170.134.113] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?t=1567594  [sun sep 05 11:17:38 2010] [error] [client 94.170.134.113] file not exist: /htdocs  [sun sep 05 11:17:41 2010] [error] [client 94.170.134.113] file not exist: /htdocs  [sun sep 05 11:19:11 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10997623  [sun sep 05 11:19:27 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://forums.macrumors.com/showthread.php?p=10997623  [sun sep 05 11:19:30 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?p=9808103  [sun sep 05 11:19:31 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:20:33 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:20:35 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://waloshin.com/  [sun sep 05 11:20:35 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:23 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:23 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:26 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://webcache.googleusercontent.com/search?q=cache:http://waloshin.com/blog/  [sun sep 05 11:21:27 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://webcache.googleusercontent.com/search?q=cache:http://waloshin.com/blog/  [sun sep 05 11:21:27 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://webcache.googleusercontent.com/search?q=cache:http://waloshin.com/blog/  [sun sep 05 11:21:27 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://webcache.googleusercontent.com/search?q=cache:http://waloshin.com/blog/  [sun sep 05 11:21:38 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:38 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:53 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:53 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:56 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:56 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:57 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:21:57 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:22:02 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:22:02 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:22:13 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://ubuntuforums.org/showthread.php?p=9808103  [sun sep 05 11:22:13 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:22:21 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:22:21 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:23:18 2010] [notice] caught sigterm, shutting down  [sun sep 05 11:24:48 2010] [notice] apache/2.2.14 (ubuntu) php/5.3.2-1ubuntu4.2 suhosin-patch configured -- resuming normal operations  [sun sep 05 11:25:15 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:18 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:18 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:20 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:20 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:22 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:22 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:23 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:23 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:24 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:24 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:33 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:33 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:39 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:41 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://waloshin.com/  [sun sep 05 11:25:41 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:42 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:25:45 2010] [error] [client 24.72.141.140] file not exist: /htdocs, referer: http://waloshin.com/  [sun sep 05 11:25:45 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:26:09 2010] [error] [client 77.88.27.27] file not exist: /htdocs  [sun sep 05 11:26:30 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:26:30 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:26:43 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:26:43 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:26:52 2010] [error] [client 94.228.34.231] file not exist: /htdocs  [sun sep 05 11:26:53 2010] [error] [client 94.228.34.231] file not exist: /htdocs  [sun sep 05 11:29:48 2010] [error] [client 24.72.141.140] file not exist: /htdocs  [sun sep 05 11:29:48 2010] [error] [client 24.72.141.140] file not exist: /htdocs

well, misconfigured. have not been hacked, since rather uncommon - happen, not often.

chances has been misconfigured time, power failure caused machine restart , won't work right.

have go in apache error log untill find *first* error message , fix that, restart apache. rinse , repeat. looking @ last error messages useless.


Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [ubuntu] I assume I was hacked last night so how do I find out and fix it?


Ubuntu

Comments

Popular posts from this blog

Hur installera Joomla på One.com - Joomla! Forum - community, help and support

removing index.php from URL address - Joomla! Forum - community, help and support

「イメージマップのアンカー名には、...」のエラーが出ないようにしたい