スレ産の成果物を転がしておく場所です。
たぶんPerl5.8+必須。ソースはUTF-8で保存すること。ライセンスはパブリックドメイン相当でおk
#!/usr/bin/perl use strict; use warnings; use utf8; use LWP; use LWP::Debug qw(+); use HTTP::Date; use HTTP::Status; use Encode; our $VERSION = '0.01'; my $ua = LWP::UserAgent->new( agent => "Monazilla/1.00 hoshu-bot.pl/$VERSION", cookie_jar => {}, ); sub sjis { encode('cp932', $_[0]) } sub write_something { my ($host, $board_key, $thread_key) = @_; my $name = ''; my $mail = ''; my $message = 'ほしゅ'; REQ: my $res = $ua->post("http://$host/test/bbs.cgi", [ bbs => $board_key, key => $thread_key, FROM => sjis($name), mail => sjis($mail), MESSAGE => sjis($message), submit => sjis('書き込む'), time => 1, hana => 'mogera' ], Referer => "http://$host/$board_key/"); for (decode('cp932', $res->content)) { if (/書きこみました/ || /2ch_X:true/) { print {*STDERR} "OK! :-)\n"; } elsif (/2ch_X:false/) { print {*STDERR} "maybe OK?\n"; } elsif (/書き込み確認/ || /2ch_X:cookie/) { print {*STDERR} "Cookie needed; retry\n"; goto REQ; } else { print {*STDERR} "ERROR!\n"; exit 1; } } } if ($0 eq __FILE__) { my $thread_url = $ARGV[0]; my ($host, $board_key, $thread_key) = $thread_url =~ m{http://([\w.]+)/test/read\.cgi/(\w+)/(\d+)/}; die "Usage: $0 <thread_url>" unless 3 == grep {defined} ($host, $board_key, $thread_key); my $interval = 60 * 15; my $last_modified = 0; while (1) { my $res = $ua->head( "http://${host}/${board_key}/dat/${thread_key}.dat", 'If-Modified-Since' => time2str($last_modified)); if ($res->code == RC_NOT_MODIFIED) { write_something($host, $board_key, $thread_key); redo; } elsif ($res->code == RC_OK) { $last_modified = str2time($res->header('Last-Modified')); my $now = str2time($res->header('Date')); my $wait = $last_modified + $interval - $now; sleep($wait > 0 ? $wait : 1); } else { die 'error!'; } } }
ライセンスは不明。 http://www8.uploader.jp/dl/vipprog/vipprog_uljp00252.zip.html
#geshi(bash){{
#!/bin/sh
#ヤター シェルスクリプトでwrite2chできたよー\(^o^)/
#License: どーでもいーよー らいせんす version="0.10" usage=" Usage: write2ch.sh [-h] [--help] [-n name] [--name=NAME]
[-m MAIL] [--mail=MAIL] [--version] URL MESSAGE"
while test $# -gt 0; do
case "$1" in -h | --help | --h*) echo "$usage"; exit 0 ;; --name=* | --n*=* ) name=`echo \"${1}\" | sed -e 's/^[^=]*=//'` shift ;; -n | --name | --n*) shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } name="$1" shift ;; --mail=* | --m*=* ) mail=`echo \"$1\" | sed -e 's/^[^=]*=//'` shift ;; -m | --m*) shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } mail="$1" shift ;; -v | --version | --v*) show_version=1; shift ;; --) shift; break ;; -*) echo "$usage" 1>&2; exit 1 ;; *) if [ -z $url ]; then url="$1" elif [ -z $message ]; then message="$1" fi shift ;; esac
done
if test $show_version; then
echo "write2ch.sh version $version"; exit 0
fi
if [ -z "$url" -o -z "$message" ]; then
echo "$usage" 1>&2; exit 1
fi
name=`echo $name|nkf -s` mail=`echo $mail|nkf -s` message=`echo $message|nkf -s`
tmp=`echo $url | sed -e 's/\(http:\/\/[^\/]*\)\/test\/read\.cgi\/\([^\/]*\)\/\([^\/]*\).*/\1 \2 \3/'` host=`echo $tmp | cut -d " " -f 1` bbs=`echo $tmp | cut -d " " -f 2` key=`echo $tmp | cut -d " " -f 3` data="bbs=$bbs&key=$key&FROM=$name&mail=$mail&time=1&MESSAGE=$message" submit=`echo "書き込む" | nkf -s` cookie=`wget -q --save-headers --header="Cookie:NAME=\"$name\"; MAIL=\"$mail\";" --referer=$url --post-data="${data}&submit=$submit" -O - $host/test/bbs.cgi | grep Set-Cookie` cookie=`echo $cookie | sed -e "s/Set-Cookie://"` submit=`echo "上記全てを承諾して書き込む" | nkf -s` wget -q --header="Cookie:NAME='$name'; MAIL='$mail';$cookie" --referer=$host/test/bbs.cgi --post-data="${data}&submit=$submit&hana=mogera" -O - $host/test/bbs.cgi > /dev/null
}}
ライセンスはパブリックドメイン。
文字コードはUTF-8で保存すること。ライブラリと本体に分かれてますwww
以下ライブラリ
<?php // function http_request($url, $param = null, $mode = "GET", $refere = "", $iscookie = false) function http_request($url, $param = null, $mode = "GET", $prmhdrs = null, $iscookie = false) { global $usragent; global $cookies; $hdrstr = ""; $cookiestr = ""; if($iscookie == true) { if(isset($cookies) == false) { $cookies = array(); } } $pathinfo = parse_url($url); $host = $pathinfo["host"]; $path = $pathinfo["path"]; if(isset($pathinfo["query"])) { $query = "?"; $query .= $pathinfo["query"]; } else { $query = ""; } $path .= $query; $port = "80"; $fp = fsockopen ($host, 80, $errno, $errstr, 30); $buff = ""; if(!$fp) { return false; } // $Referer = ""; // if($refere != "") // { // $Referer = "Referer: {$refere}\r\n"; // } socket_set_timeout($fp, 2); if((isset($cookies[$host]) == true) && ($iscookie == true)) { if(is_array($cookies[$host]) == true) { reset($cookies[$host]); $cookiestr .= "Cookie: "; $delimiter = ""; while($val = each($cookies[$host])) { $cookiestr .= $delimiter; $cookiestr .= $val['key']; $cookiestr .= "="; $cookiestr .= $val['value']; $delimiter ="; "; } $cookiestr .= "\r\n"; } } if(isset($prmhdrs)) { if(is_array($prmhdrs)) { reset($prmhdrs); while($val = each($prmhdrs)) { $hdrstr .= $val['key']; $hdrstr .= ": "; $hdrstr .= $val['value']; $hdrstr .= "\r\n"; } } } if($mode == "GET") { $header = ""; $header.= "GET {$path} HTTP/1.1\r\n"; $header.= "Host: {$host}\r\n"; $header .= $cookiestr; // $header .= $Referer; $header .= $hdrstr; $header .= "User-Agent: {$usragent}\r\n"; $header .= "Connection: close\r\n"; $header.= "\r\n"; } else if($mode == "POST") { if(!is_array($param)) { return false; } $prmstr = ""; $prmdlim = ""; $header = ""; reset($param); while($val = each($param)) { $prmstr .= $prmdlim; $prmstr .= $val['key']; $prmstr .= "="; $prmstr .= rawurlencode($val['value']); $prmdlim = "&"; } $length = strlen($prmstr); $header .= "POST {$path} HTTP/1.1\r\n"; $header .= "Host: {$host}\r\n"; $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; $header .= "Content-Length: {$length}\r\n"; $header .= $cookiestr; // $header .= $Referer; $header .= $hdrstr; $header .= "User-Agent: {$usragent}\r\n"; $header .= "Connection: close\r\n"; $header .= "\r\n"; $header .= "{$prmstr}\r\n"; } else if($mode == "HEAD") { $header = ""; $header.= "HEAD {$path} HTTP/1.1\r\n"; $header.= "Host: {$host}\r\n"; $header .= $cookiestr; $header .= $hdrstr; $header .= "User-Agent: {$usragent}\r\n"; $header .= "Connection: close\r\n"; $header.= "\r\n"; } else { return false; } fwrite($fp, $header); while(!feof($fp)) { fputs ($fp, $header); $buff .= fgets($fp, 128); } parse_httpresponse($buff, $reshdr, $resbody); $reshdrs = explode("\r\n", $reshdr); $result = array(); foreach($reshdrs as $hdrval) { // if(preg_match('/^Set-Cookie: ([^=]+)=(.*)$/', $hdrval, $match)) if(preg_match('/^Set-Cookie: ([^=]+)=([^;]*)/', $hdrval, $match)) { if($iscookie == true) { if(isset($cookies[$host]) == false) { $cookies[$host] = array(); } $cookies[$host][$match[1]] = $match[2]; } } else if(preg_match('/^HTTP\/1\.[0-1x] (.*)$/', $hdrval, $match)) { $result["status"] = $match[1]; } else if(preg_match('/^([^:]+): (.*)$/', $hdrval, $match)) { if(isset($result["header"]) == false) { $result["header"] = array(); } $result["header"][$match[1]] = $match[2]; } } $result["body"] = $resbody; return $result; } function parse_httpresponse($responsetxt, &$header, &$body) { $hdrend = strpos($responsetxt, "\r\n\r\n"); if($hdrend === false) { return false; } $header = substr($responsetxt, 0, $hdrend); $bodystart = $hdrend + 4; $body = substr($responsetxt, $bodystart); return true; } ?>
本体。
#!/usr/bin/php <?php require_once('httplib.php'); if($argc < 1) { echo "{$argv[0]} <thred url>"; echo "param err!!"; return ; } preg_match('/http:\/\/([^\/]+)\/.+\/read\.cgi\/([^\/]+)\/([0-9]+)\//', $argv[1], $match); // preg_match('/http:\/\/(.+)\/read\.cgi\/([^\/]+)\/([0-9]+)\//', $argv[1], $match); if(is_array($match) == false) { echo "param err!!"; return; } $cookies = array(); // $usragent = "Monazilla/1.00 Live2ch/1.17"; $usragent = "Monazilla/1.00"; $posturl = "http://{$match[1]}/test/bbs.cgi?guid=ON"; $headurl = "http://{$match[1]}/{$match[2]}/dat/{$match[3]}.dat"; $last_modified = 0; $reloadhdr = array(); $reloadhdr['If-Modified-Since'] = $last_modified; $headers = array(); $headers['Referer'] = "http://{$match[1]}/{$match[2]}/"; $bbs = $match[2]; $key = $match[3]; $FROM = ""; $mail = mb_convert_encoding('age', "SJIS", "UTF-8"); $MESSAGE = 'test'; $postprm = array(); $interval = 30 * 60; $postprm['bbs'] = $bbs; $postprm['key'] = $key; $postprm['FROM'] = $FROM; $postprm['mail'] = $mail; $postprm['MESSAGE'] = $MESSAGE; // $postprm['MIRV'] = 'kakkoii'; $postprm['submit'] = mb_convert_encoding("書き込む", "SJIS", "UTF-8"); $postprm['time'] = "1"; // $postprm['hana'] = "mogera"; $postprm['suka'] = "pontan"; function postto2ch($posturl, $postprm, $headers) { $result = http_request($posturl, $postprm, "POST", $headers, true); if($result === false) { echo "not response!!\n"; return false; } $body = mb_convert_encoding($result["body"], "UTF-8", "SJIS"); if(preg_match('/書きこみ&クッキー確認/um', $body)) { echo "need cookie!!\n"; $postprm['submit'] = mb_convert_encoding("上記全てを承諾して書き込む", "SJIS", "UTF-8"); $headers['Referer'] = $posturl; $result = http_request($posturl, $postprm, "POST", $headers, true); if($result === false) { echo "no response!!\n"; return false; } $body = mb_convert_encoding($result["body"], "UTF-8", "SJIS"); if((preg_match('/書きこみ.*ました/um', $body)) || (preg_match('/^303/', $result["status"])) ) { return true; } else { echo "err!\n"; return false; } } else if((preg_match('/書きこみ.*ました/um', $body)) || (preg_match('/^303/', $result["status"])) ) { return true; } else { echo "err!\n"; return false; } return false; } while(1) { $reloadhdr['If-Modified-Since'] = gmstrftime( '%a, %d %b %G %T GMT', $last_modified); $result = http_request($headurl, null, "GET", $reloadhdr); if(preg_match('/^304/', $result["status"])) { if(postto2ch($posturl, $postprm, $headers) == false) { return; } $last_modified = strtotime($result['header']['Date']); } else if(preg_match('/^200/', $result["status"])) { $last_modified = strtotime($result['header']['Last-Modified']); } else { echo "err!\n"; return false; } $now = strtotime($result['header']['Date']); $wait = $last_modified + $interval - $now; if($wait > 0) { sleep($wait); } else { sleep(1); } } ?>