- 论坛徽章:
- 0
|
原帖由 dhcpd 于 2008-5-12 14:22 发表 ![]()
能不能具体到你的例子说给大家听听呢
汗~~~~我的程序还没成行,只有测试的...贴出来自己看看吧....
大家帮忙想点办法解决验证码问题啊~~~
- use strict;
- use WWW::Mechanize;
- my $agent = WWW::Mechanize->new( );
- $agent->get("http://pay.xiaonei.com/index.do");
- open(F,"uid.txt")||die $@;
- my ($email,$passwd)= split /\s+/,<F>;
- close(F);
- $agent->submit_form(
- form_number => '1',
- fields => { 'email' => $email, 'password'=> $passwd},
- );
- my @card=();
- open(F,"card.txt")|| die $@;
- while(<F>)
- {
- chomp;
- push @card,$_;
- }
- close F;
- while(my $out=shift @card){
- $agent->get("http://pay.xiaonei.com/index.do");
- $agent->submit_form(
- form_number => '3',
- );
- my $clone=$agent->clone();
- my $src=$clone->find_image( tag =>'img', url_regex => qr/getcode/, );
- $clone->get($src->url);
- open(O,">img/untitled.bmp");
- binmode O;
- print O $clone->content;
- close O;
- my $pid = fork();
- if (!defined($pid)){
- print ("Fork process failured!\n");
- exit();
- }
- if(!$pid){
- exec("show.exe");
- }else{
- print "enter the kcode:";
- my $kcode=<STDIN>;
- chomp $kcode;
- waitpid ($pid, 0);
- my ($kname,$kpwd)=split(/\s+/,$out);
- $agent->submit_form(
- form_number => '2',
- fields => {'kname' => $kname, 'kpass' => $kpwd ,'kcode' => $kcode},
- );
- unlink "img/untitled.bmp";
- next;
- }
- }
-
-
-
-
-
复制代码 |
|