溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python滑塊驗(yàn)證碼的破解實(shí)現(xiàn)

發(fā)布時間:2020-10-14 23:34:09 來源:腳本之家 閱讀:162 作者:我愛靜靜 欄目:開發(fā)技術(shù)

破解滑塊驗(yàn)證碼的思路主要有2種:

  • 獲得一張完整的背景圖和一張有缺口的圖片,兩張圖片進(jìn)行像素上的一一對比,找出不一樣的坐標(biāo)。
  • 獲得一張有缺口的圖片和需要驗(yàn)證的小圖,兩張圖片進(jìn)行二極化以及歸一化,確定小圖在圖片中間的坐標(biāo)。
  • 之后就要使用初中物理知識了,使用直線加速度模仿人手動操作

本次就使用第2種,第一種比較簡單。廢話不多說,直接上代碼:

以下均利用無頭瀏覽器進(jìn)行獲取

獲得滑塊驗(yàn)證的小圖片

def get_image1(self,driver):
  """
  獲取滑塊驗(yàn)證缺口小圖片
  :param driver:chrome對象
  :return:缺口小圖片
  """
  canvas = driver.find_element_by_xpath("http://div[@id='xy_img']").get_attribute("style")
  image_data=re.findall("data:image/jpg;base64,(.*?)\"\)",canvas)[0]
  # print(image_data)
  binary_image_data=base64.b64decode(image_data,'-_')
  file_like=BytesIO(binary_image_data)
  image=Image.open(file_like)
  return image

一般來說,這張小圖片都是獨(dú)立的,比較好獲取,圖片如下:

python滑塊驗(yàn)證碼的破解實(shí)現(xiàn)

獲得滑塊驗(yàn)證的背景圖片

?。?!這個背景圖片網(wǎng)頁一般會返回亂序的圖片,然后通過js對圖片進(jìn)行重新排序,要破解需要的時間較多,且每個js排序算法不一樣,不具有復(fù)用性。這里就取了個巧,直接對當(dāng)前瀏覽器截屏,然后在截取指定范圍圖片。

def get_image2(self,driver):
  """
  獲取滑塊驗(yàn)證碼背景圖片
  :param driver:chrome對象
  :return:背景圖片
   """
  driver.save_screenshot('yanzhengma.png')
  # 通過圖片元素節(jié)點(diǎn)獲取坐標(biāo)值
  # element = driver.find_element_by_id("bgImg")
  # left = element.location['x']
  # top = element.location['y']
  # right = element.location['x'] + element.size['width']
  # bottom = element.location['y'] + element.size['height']
  # 通過畫圖軟件直接獲取相應(yīng)圖片的坐標(biāo)值
  left=359
  top=238
  right=658
  bottom=437
  # print((left, top, right, bottom))
  im = Image.open('yanzhengma.png')
  im = im.crop((left, top, right, bottom))
  return im

圖片如下:

python滑塊驗(yàn)證碼的破解實(shí)現(xiàn)

軌跡計算方法

def get_track(self, distance):
  """
  根據(jù)偏移量獲取移動軌跡
  :param distance:偏移量
  :return:移動軌跡
  """
  # 移動軌跡
  track = []
  # 當(dāng)前位移
  current = 0
  # 減速閾值
  mid = distance * 4 / 5
  # 計算間隔
  t = 0.2
  # 初速度
  v = 0

  while current < distance:
    if current < mid:
      # 加速度為正2
      a = 2
    else:
      # 加速度為負(fù)3
      a = -3
    # 初速度v0
    v0 = v
    # 當(dāng)前速度v = v0 + at
    v = v0 + a * t
    # 移動距離x = v0t + 1/2 * a * t^2
    move = v0 * t + 1 / 2 * a * t * t
    # 當(dāng)前位移
    current += move
    # 加入軌跡
    track.append(round(move))
  return track

驗(yàn)證主程序

 def slider_verification_code(self,driver,cnt):
  """
  破解滑塊驗(yàn)證主程序
  :param driver:chrome對象;cnt:已驗(yàn)證次數(shù)
  :return:已驗(yàn)證次數(shù)
  """
  print("出現(xiàn)滑塊驗(yàn)證,驗(yàn)證中")
  # 1、出現(xiàn)滑塊驗(yàn)證,獲取驗(yàn)證小圖片
  picture1 = self.get_image1(driver)
  picture1.save("./picture1.png")
  # 2、獲取有缺口驗(yàn)證圖片
  picture2 = self.get_image2(driver)
  picture2.save("./picture2.png")
  #二值化圖片,進(jìn)行對比,輸出匹配的坐標(biāo)系
  target_rgb=cv2.imread("./picture2.png")
  target_gray=cv2.cvtColor(target_rgb,cv2.COLOR_BGR2GRAY)
  template_rgb=cv2.imread("./picture1.png",0)
  res=cv2.matchTemplate(target_gray,template_rgb,cv2.TM_CCOEFF_NORMED)
  value=cv2.minMaxLoc(res)
  value = value[3][0]
  cnt += 1
  print("需要位移的距離為:"+str(value)+",已驗(yàn)證"+str(cnt)+"次")
  #根據(jù)距離獲取位移的軌跡路線
  track=self.get_track(value)
  time.sleep(1)
  ActionChains(driver).click_and_hold(driver.find_element_by_class_name("handler.handler_bg")).perform()
  for x in track:
    ActionChains(driver).move_by_offset(xoffset=x, yoffset=0).perform()
  time.sleep(0.5)
  ActionChains(driver).release().perform()
  return cnt

看!有 飛 機(jī):

python滑塊驗(yàn)證碼的破解實(shí)現(xiàn)

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI