主頁(yè) > 知識(shí)庫(kù) > python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別

python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別

熱門標(biāo)簽:幫人做地圖標(biāo)注收費(fèi)算詐騙嗎 溫州旅游地圖標(biāo)注 電信營(yíng)業(yè)廳400電話申請(qǐng) 悟空智電銷機(jī)器人6 遼寧400電話辦理多少錢 蘇州電銷機(jī)器人十大排行榜 荊州云電銷機(jī)器人供應(yīng)商 外呼不封號(hào)系統(tǒng) 江蘇房產(chǎn)電銷機(jī)器人廠家

騰訊滑塊驗(yàn)證碼識(shí)別,識(shí)別凹槽的x軸位置,mock滑塊的加速度。該項(xiàng)目公開API,提供識(shí)別和加速度模擬部分,第二部分模擬滑動(dòng)進(jìn)行識(shí)別返回?cái)?shù)據(jù)請(qǐng)求

項(xiàng)目地址:https://github.com/zhaojunlike/python-tecent-slider-crack

安裝python環(huán)境

參考: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

創(chuàng)建環(huán)境 Creating a virtualenv

python3.6 -m venv venv
. venv/bin/activate
pip install [package_name]
# 安裝依賴
pip install -r requirements.txt 

daemonize 運(yùn)行

# 參考 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

# 創(chuàng)建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

#后臺(tái)運(yùn)行
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

請(qǐng)求圖片識(shí)別和加速度模擬

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": "圖片的地址"
}

返回?cái)?shù)據(jù)

{
    "data": {
        "list": [],//模擬的點(diǎn)
        "url": "",//圖片地址
        "x": 515,// x軸的偏移量
    },
    "message": "解析成功"
}

模擬瀏覽器移動(dòng)

            const slider = {width: 680, point: 0, move: 0, steps: 0, posX: 0};//原本的高度
            //開始計(jì)算移動(dòng)的距離
            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(`開始識(shí)別和移動(dòng)滑塊`, 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();

驗(yàn)證碼識(shí)別成功后悔返回驗(yàn)證識(shí)別結(jié)果的Ticket

協(xié)議

授權(quán)協(xié)議:只允許研究、學(xué)習(xí)目的的分享、使用、修改,不允許任何商業(yè)用途。

原文地址:https://segmentfault.com/a/1190000020618430

以上就是python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別的詳細(xì)內(nèi)容,更多關(guān)于python 滑塊驗(yàn)證碼識(shí)別的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • 怎么用Python識(shí)別手勢(shì)數(shù)字
  • python實(shí)現(xiàn)的人臉識(shí)別打卡系統(tǒng)
  • python opencv人臉識(shí)別考勤系統(tǒng)的完整源碼
  • python基于OpenCV模板匹配識(shí)別圖片中的數(shù)字
  • Python OpenCV招商銀行信用卡卡號(hào)識(shí)別的方法
  • Python如何識(shí)別銀行卡卡號(hào)?

標(biāo)簽:喀什 三沙 濟(jì)南 臺(tái)灣 黃山 宿遷 欽州 景德鎮(zhèn)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別》,本文關(guān)鍵詞  python,實(shí)現(xiàn),騰訊,滑塊,驗(yàn)證,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于python實(shí)現(xiàn)騰訊滑塊驗(yàn)證碼識(shí)別的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章