python 텐 센트 슬라이더 인증 코드 인식 실현

텐 센트 슬라이더 인증 코드 인식,홈 의 x 축 위치 인식,mock 슬라이더 의 가속도.이 프로젝트 는 API 를 공개 하고 식별 과 가속도 시 뮬 레이 션 부분 을 제공 하 며 두 번 째 부분 은 미끄럼 을 시 뮬 레이 션 하여 식별 반환 데이터 요청 을 한다.
프로젝트 주소:https://github.com/zhaojunlike/python-tecent-slider-crack
python 환경 설치
참고:https://janikarhunen.fi/how-to-install-python-3-6-1-on-centos-7

sudo yum install https://centos7.iuscommunity.org/ius-release.rpm
sudo yum install python36u
python3.6 -V
sudo yum install python36u-pip
sudo yum install python36u-devel
환경 만 들 기 virtualenv 만 들 기

python3.6 -m venv venv
. venv/bin/activate
pip install [package_name]
#     
pip install -r requirements.txt 
daemonize 실행

#    https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uswgi-and-nginx-on-ubuntu-18-04
# Install the latest stable release:
pip install uwsgi
# ... or if you want to install the latest LTS (long term support) release,
pip install https://projects.unbit.it/downloads/uwsgi-lts.tar.gz

#   ln 
cp captcha.service /etc/systemd/system/captcha.service
systemctl enable captcha.service
systemctl start captcha.service

uwsgi --ini /usr/local/nginx/html/myblog/uwsgiconfig.ini

#    
uwsgi --ini /usr/local/nginx/html/myblog/uwsgiconfig.ini --daemonize /usr/local/nginx/html/myblog/myblog.out
nginx 대리

        location /tx/ {
            add_header Access-Control-Allow-Origin *;
            include        uwsgi_params;
            uwsgi_pass     127.0.0.1:8008;
        }
접근 api
그림 인식 과 가속도 시 뮬 레이 션 요청

http://127.0.0.1:5000/tx/image

POST /tx/image HTTP/1.1
Host:host
Content-Type: application/json
Accept: */*
Cache-Control: no-cache
Accept-Encoding: gzip, deflate
Content-Length: 1055
Connection: keep-alive
cache-control: no-cache

{
    "url": "     "
}

    

{
    "data": {
        "list": [],//    
        "url": "",//    
        "x": 515,// x     
    },
    "message": "    "
}
아 날로 그 브 라 우 저 이동

            const slider = {width: 680, point: 0, move: 0, steps: 0, posX: 0};//     
            //         
            slider.point = bgSize.width / slider.width * x;
            slider.move = handle.x + slider.point - 5;
            slider.steps = Math.random() * 100 / 30 + 100;
            slider.posX = handle.x + handle.width / 2;

            logger.info(`         `, slider);

            //     
            await page.mouse.move(slider.posX, handle.y + handle.height / 3, {steps: slider.steps});
            await page.mouse.down();
            let val = handle.x;
            for (let i = 0; i < traces.length; i++) {
                val += bgSize.width / slider.width * (traces[i]);//    
                slider.move = val;
                if (val <= slider.posX) continue;
                await page.mouse.move(slider.move, handle.y + handle.height / 2 + 5);
            }
            await page.waitFor(100);
            await page.mouse.up();
인증 코드 인식 성공 후 인증 결 과 를 되 돌려 주 는 Ticket

협의
권한 수여 협의:연구,학습 목적 의 공유,사용,수정 만 허용 하고 그 어떠한 상업 용도 도 허용 하지 않 습 니 다.
주소
이상 은 python 이 텐 센트 슬라이더 인증 코드 인식 을 실현 하 는 상세 한 내용 입 니 다.python 슬라이더 인증 코드 인식 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기