返回列表 发帖
回复 15# happy886rr


    排查完毕

TOP

本帖最后由 bbaa 于 2017-7-2 14:07 编辑

回复 14# 老刘1号


    之前崩的原因是有个空用户名的家伙........
unset($json["Username"][""]);COPY

TOP

回复 17# bbaa


    举手,我干过。
去学去写去用才有进步。安装python3代码存为xx.py 双击运行或右键用IDLE打开按F5运行

TOP

本帖最后由 老刘1号 于 2017-7-2 18:02 编辑

回复 1# bbaa
回复 18# codegay
回复 15# happy886rr
取平均数递归法,最多计算6次就可得出结果
欢迎测试~(存Bat)
'&cls&@echo off&cscript -nologo -e:vbscript "%~0"&pause&exit
With CreateObject("MSXML2.XMLHTTP")
.Open "POST", "http://bbaass.tk/math/", False
.setRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
.Send "send=reg&username=老刘"
End With
Do
Bisection -1,101,0
Loop
Sub Bisection(low,high,s)
Mid_=(High+Low)\2
if s<=7 then
Select Case Cstr(Math(Mid_))
Case "="
wscript.echo "Win!The number is "&Mid_
Case ">"
WScript.Echo ">,so try "&Low&","&Mid_
Bisection Low,Mid_,s+1
Case "<"
WScript.Echo "<,so try "&Mid_&","&High
Bisection Mid_,High,s+1
End Select
end if
End Sub
Function Math(num)
With CreateObject("MSXML2.XMLHTTP")
.Open "POST","http://bbaass.tk/math/", False
.setRequestHeader "CONTENT-TYPE","application/x-www-form-urlencoded"
.send "send=Answer&math=" & num & "&username=老刘"
Math = Split(Split(.responseText,",")(2),"""")(3)
End With
End FunctionCOPY
1

评分人数

TOP

回复 19# 老刘1号
不过偶尔还会出现下标越界。而且有几次计算了20多次才猜中正确的数,你的算法还不是标准二分,比较费内存。如果是猜测1到10000之内的数,你的程序就非常缓慢。 把那个递归取消了,有递归的都不是标准二分。

TOP

本帖最后由 老刘1号 于 2017-7-2 17:55 编辑

回复 20# happy886rr


    嗯,猜20多次是因为服务端数字变更了(正常最多7次)
下标越界是服务器没返回JSON,导致无法分割得到符号
尴尬的是,0和100不在范围里面(失误,已修正)……
总之就是递归然后除2取整
当时一脑抽就用的递归而不是循环╮(╯_╰)╭
算是自己研发的变种了吧
感谢大佬鼓励<v<

TOP

回复 19# 老刘1号


    添加tokens具体看 1#

TOP

回复 22# bbaa


    晕,早说啊
算了,就酱紫吧~
懒得动手了~

TOP

本帖最后由 reKonquer 于 2017-7-2 18:49 编辑

回复 1# bbaa


    来个高级的 用到了okhttp,gson
package com.rekonquer.math;
import com.google.gson.Gson;
import okhttp3.*;
import java.io.IOException;
/**
* Author: MagicDroidX
*/
public class Main {
    public static OkHttpClient HTTP_CLIENT;
   
    public static String token = null;
    public static int min = 1;
    public static int num = 50;
    public static int max = 100;
    public static void main(String[] args) throws IOException {
        HTTP_CLIENT = new OkHttpClient.Builder()
                .build();
        while (true) {
            AnswerRequest request = new AnswerRequest();
            request.math = num;
            Response response = HTTP_CLIENT.newCall(
                    new Request.Builder()
                            .url("http://bbaass.tk/math/index.php")
                            .post(new FormBody.Builder()
                                    .add("send", "Answer")
                                    .add("username", "reKonquer")
                                    .add("math", String.valueOf(num))
                                    .build()
                            )
                            .build()
            ).execute();
            if (!response.isSuccessful()) {
                continue;
            }
            AnswerResponse answer;
            try {
               answer = new Gson().fromJson(response.body().string(), AnswerResponse.class);
            } catch (Exception e) {
                continue;
            }
            if (answer == null) {
                continue;
            }
            if (token == null || token.equals(answer.tokens)) {
                token = answer.tokens;
                switch (answer.re) {
                    case ">": {
                        System.out.println(num + " 小了");
                        max = num;
                        break;
                    }
                    case "<": {
                        System.out.println(num + " 大了");
                        min = num;
                        break;
                    }
                    case "=":
                    default: {
                        System.out.println("正确答案:" + num);
                        token = null;
                        continue;
                    }
                }
                num = (int) ((min + max) / 2d);
            } else {
                if (answer.re.equals("=")) {
                    System.out.println("正确答案:" + num);
                }
                System.out.println("新的一局:" + token + " => " + answer.tokens);
                min = 1;
                max = 100;
                num = 50;
                token = answer.tokens;
                continue;
            }
        }
    }
}
package com.rekonquer.math;
/**
* Author: MagicDroidX
*/
public class AnswerResponse {
    public int code;
    public String re;
    public String tokens;
}COPY
网站崩了,本来能超过第一的
2

评分人数

    • codegay: 少年筋骨精奇,写得一手漂亮程序。技术 + 1
    • 老刘1号: 不明嚼栗技术 + 1

TOP

回复 24# reKonquer


    同志,你再不开我就超了你哈~

TOP

以下是模仿了happy和ro的程序写的。经过几次修改,应该是能比较长时间持续运行了。
这个网站一言不合就返回500错误或者无规律清空数据,在刚开始很困扰,很懵B。

后来长时间运行发现,也有可能极小概率请求后返回404或者跳转到首页。所以也必须要在关键代码上处理错误。
→_→代码丑。但是管用。
# -*- coding: utf-8 -*-
"""
Created on 2017-07-02 13:57:56
@author: codegay
python3 & 编辑器 == spyder
"""
import requests
import time
apiurl = "http://bbaass.tk/math/"
s = 0
username = "codegay"
data = {
        'send': 'Answer',
        'username': username,
        'math': 0,
        }
def reg(username="codegay"):
    data = {"send": "reg", "username": username}
    try:
        requests.post(apiurl, data=data)
    except:
        global s
        s += 1
        print("reg程序江化,错误+1s")
        time.sleep(2)
def answer(min=0, max=100):
    answering = True
    answercounter = 0
    token = ''
    global s
    while answering:
        math = data['math'] = round((min+max)/2)
        try:
            time.sleep(0.3)
            post = requests.post(apiurl, data=data, timeout=6)
            print(post.text)
        except Exception as err:
            s += 1
            print(err)
            print("程序江化,错误+1s", "    错误总次数:", s)
            time.sleep(1)
        else:
            answercounter += 1
            print("数字:", math, "    counter:", answercounter)
            re = ''
            if post.status_code == 500:
                reg()
                time.sleep(1)
            elif post.status_code == 200:
                try:
                    result = post.json()
                except:
                    answering = False
                    continue
                re = result['re']
                if token and token != result['tokens']:
                    answering = False
                    continue
                token = result['tokens']
                if re == '=':
                    answering = False
                if re == ">":
                    max = data['math']
                if re == "<":
                    min = data['math']
            else:
                s += 1
                print("远程目标服务器程序江化,错误+1s")
                time.sleep(1)
reg()
while True:
    answer()COPY
2

评分人数

去学去写去用才有进步。安装python3代码存为xx.py 双击运行或右键用IDLE打开按F5运行

TOP

回复 26# codegay

把细节都考虑进去了,如果把user-agent修改为火狐浏览器,就好了。这个php服务器对py的请求会拒绝,只能伪造user-agent来实现高速和稳定的请求。

TOP

本帖最后由 523066680 于 2017-7-8 17:01 编辑

清零了?

写了一段代码查看赛跑情况
use JSON;
use Encode;
use Try::Tiny;
use Data::Dumper;
use HTTP::Headers;
use Time::HiRes qw/time sleep/;
use IO::Handle;
STDOUT->autoflush(1);
use LWP::Simple;
use LWP::UserAgent;
our $user    = "vic3";
our $website = 'http://bbaass.tk/math/';
our ($user, $website, $headers);
my ( $min, $max ) = (0, 100);
my $test = int(($max + $min) / 2);
my $data;
our $ua = LWP::UserAgent->new( agent => 'Mozilla/5.0', timeout => 5 );
our $res;
my %ever;
my %current;
getData( \%ever );
my $count = 0;
while (1)
{
    getData(\%current);
    $count = 0;
    for my $k (reverse sort { $ever{$a} <=> $ever{$b} } keys %ever)
    {
        printf "%-10s %d + %d\n", $k, $ever{$k}, $current{$k} - $ever{$k};
        last if ($count++ > 3);
    }
    print "\n";
    sleep 10.0;
}
sub getData
{
    our $res;
    my $href = shift;
    my $data;
    while (1)
    {
        $res = $ua->post( $website, [ username => $user, send => 'reg' ] );
        $res = $ua->post( $website, [ username => $user, send => 'user' ] );
        try { $data = decode_json( $res->content ); last; }
        catch { sleep 2.0; printf "repeat\n" }
    }
    for my $e ( @{$data->{'user'}} )
    {
        ( $times, $name, $state ) = @$e;
        $href->{$name} = $times;
    }
}COPY
vic3       0 + 0
bbaa       0 + 0
vic        0 + 0
vic2       55 + 10
codegay    75 + 11
vic3       0 + 0
bbaa       0 + 0
vic        0 + 0
vic2       55 + 11
codegay    75 + 11
vic3       0 + 0
bbaa       0 + 0
vic        0 + 0
vic2       55 + 12
codegay    75 + 12COPY
1

评分人数

[url=][/url]

TOP

回复 26# codegay


    无规律清空是因为我偷懒没用数据库 导致多人请求时同时写文件挂掉
Happy应该知道

TOP

本帖最后由 523066680 于 2017-7-8 16:37 编辑

我在想能不能在别的网络上运行脚本,假冒 codegay 输入错误的数值来阻击他的刷新频率
(实测然并卵
[url=][/url]

TOP

返回列表