• Perl 旁站查询(站长工具提取)


    感谢V总教会我用brupsuite.谢谢这位没有任何脾气的大牛。。这个软件说实话真不是很会用,纯英文比较蛋疼。。。刚学会使用,抓包写了个旁站查询的小玩具,大牛见笑了~

    原始的数据包如下:

    POST /Same/ HTTP/1.1
    Host: tool.chinaz.com
    User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:18.0)
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: zh-cn,en-us;q=0.7,en;q=0.3
    Accept-Encoding: gzip, deflate
    Referer: http://tool.chinaz.com/Same/
    Connection: keep-alive
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 13
    
    s=www.163.com

    Perl写出的工具如下:

    #!/usr/bin/perl
    use LWP::UserAgent;
    use HTTP::Request;
    use HTTP::Response;
    use HTTP::Request::Common;
    print "Set the URL:";
    chomp($task_name=<STDIN>);
    $agent=new LWP::UserAgent;
    $request=POST('http://tool.chinaz.com/Same/',[s=>$task_name]);
    $request->header('User-Agent'=>'Mozilla/5.0 (X11; Linux x86_64; rv:18.0)');
    $request->header('Accept-Encoding'=>'zh-cn,en-us;q=0.7,en;q=0.3');
    $response=$agent->request($request);
    if($response->is_success){
        $url_tmp=$response->content;
        if($url_tmp=~m#<ul><li><span>(.*)</li></ul>#){
            grep_task($1);
        }
    
    }else{
        print "Error!!\n";
    }
    #grep of the task url.
    sub grep_task{
        local($url_other)=shift;
        @other_list=split(/<li>/,$url_other);
        foreach my $url(@other_list){
            if($url=~m#href='(.*)'#){
                print "URL:$1\n";
            }
        }
    }

    这个脚本主要用到的是一些未曾用过的模块,就当练习了~谢谢V总~V总威武。。。:)

    使用后的结果:

    smart@smart:~/perl$ ./PostWeb2.pl 
    Set the URL:www.163.com
    URL:http://www.sihongfeng.com
    URL:http://imga5.4399.com
    URL:http://xiuxiu.dl.meitu.com
    URL:http://www.4m6m.com
    URL:http://mimg.126.net
    URL:http://ci.aizhan.com
    URL:http://my.91wan.com
    URL:http://swf.games.sina.com.cn
    URL:http://img.t.sinajs.cn
    URL:http://www.qq937.com
    URL:http://xy.163.com
    URL:http://xiuxiu.meitu.com
    URL:http://icp.aizhan.com
    URL:http://www.kan300.com
    URL:http://lifestyle.rayli.com.cn
    URL:http://images4.tuniucdn.com
    URL:http://www.kkgame.cn
    URL:http://mimg.127.net
    URL:http://163mail.help.163.com
  • 相关阅读:
    mysql--------常用命令
    PHP--------微商城实现微信授权登录
    mysql--------命令来操作表
    PHP--------解决网址URL编码问题
    php-----utf8和gbk相互转换
    javascript遍历json对象数据的方法
    PHP-----------HTTP请求的第三方接口
    PHP------数组和对象相互转化,stdClass Object转array
    include与require的区别
    PHP中exit()与die()的区别
  • 原文地址:https://www.cnblogs.com/xiaoCon/p/2989808.html
Copyright © 2020-2023  润新知