溫馨提示×

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

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

天了嚕,居然用Python查到了女神的姓名

發(fā)布時(shí)間:2020-08-10 14:25:17 來(lái)源:ITPUB博客 閱讀:211 作者:千鋒Python唐小強(qiáng) 欄目:編程語(yǔ)言

目 標(biāo) 場(chǎng) 景

不知道你有沒有經(jīng)歷過(guò)這樣一個(gè)場(chǎng)景,好不容易拿到一個(gè)妹子的手機(jī)號(hào),但是又不好意思去搭訕,問(wèn)一下對(duì)方的名字。

有過(guò)社工科經(jīng)驗(yàn)的人應(yīng)該都知道,拿到一個(gè)人的手機(jī)號(hào)碼后,其他信息都可以很容易獲取到,除了花錢之外,利用支付寶的 「模擬轉(zhuǎn)賬」方式,可以非常方便的拿到對(duì)方的全名。

下面我們用 Python 實(shí)現(xiàn)一個(gè)手機(jī)號(hào)碼獲取妹子名字的功能。

編 寫 代 碼

首先,我們需要爬取國(guó)內(nèi)最常用的一些姓氏,以百度百科 - 中國(guó)姓氏為例。


天了嚕,居然用Python查到了女神的姓名


使用 xpath + requests 可以非常方便地爬取數(shù)據(jù)。

需要注意的是,必須設(shè)置 「請(qǐng)求頭」,保證數(shù)據(jù)能正常的爬取下來(lái)。

headers = {
 'Connection': 'keep-alive',
 'Pragma': 'no-cache',
 'Cache-Control': 'no-cache',
 'Upgrade-Insecure-Requests': '1',
 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',
 'Sec-Fetch-Mode': 'navigate',
 'Sec-Fetch-User': '?1',
 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3',
 'Sec-Fetch-Site': 'none',
 'Accept-Encoding': 'gzip, deflate, br',
 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
}
def __get_common_family_names(self):
 """
 爬取常用的姓氏
 :return:
 """
 resp_text = requests.get(family_name_url, headers=headers).content
 # print(resp_text)
 htmlElement = etree.HTML(text=resp_text)
 # 500多個(gè)常見姓氏
 names_pre = htmlElement.xpath("//table[@log-set-param='table_view']//tr//td/a/text()")
 # 過(guò)濾復(fù)姓
 names = list(filter(self.__get_avai_name, names_pre))
 print(f'常見姓氏:{len(names)}種')
 return names


拿到常見的姓氏數(shù)據(jù)后,接著就使用自動(dòng)化工具 Airtest 模擬打開支付寶 App,并一步步地跳轉(zhuǎn)到轉(zhuǎn)賬界面。

def __open_app(self):
 """
 打開轉(zhuǎn)賬界面
 :return:
 """
 home()
 print('打開支付寶')
 stop_app(self.package_name_aliply)
 start_my_app(self.package_name_aliply, self.target_activity_name)
 # 轉(zhuǎn)賬
 self.poco('com.alipay.android.phone.openplatform:id/app_text', text=u'轉(zhuǎn)賬').click()
 # 轉(zhuǎn)賬到支付寶
 self.poco('com.alipay.mobile.transferapp:id/to_account_view_tv', text=u'轉(zhuǎn)到支付寶').click()
 # 輸入賬號(hào)
 self.poco('com.alipay.mobile.antui:id/input_edit').set_text(self.account)
 # 點(diǎn)擊下一步
 self.poco('com.alipay.mobile.transferapp:id/tf_toAccountNextBtn').click()


需要注意的是,像 Flyme 等系統(tǒng)為了防止信息泄露,支付寶應(yīng)用內(nèi)是關(guān)閉調(diào)試模式的,也就是沒法利用 adb 連接不上設(shè)備。

這里只需 「臨時(shí)關(guān)閉保護(hù)功能」即可。


天了嚕,居然用Python查到了女神的姓名



如果是非好友關(guān)系,轉(zhuǎn)賬界面對(duì)方顯示的名字不完全,可以點(diǎn)擊 「驗(yàn)證按鈕」,輸入對(duì)方的姓氏就能進(jìn)行確認(rèn)。

所以,可以遍歷上面獲取到的姓氏,一個(gè)個(gè)地去驗(yàn)證。

def __simulate_transfer(self, last_name):
 """
 模擬轉(zhuǎn)賬
 :return:
 """
 # 如果不是好友,就不會(huì)顯示全名
 # 點(diǎn)擊驗(yàn)證名稱
 verify_element = self.poco('com.alipay.mobile.transferapp:id/tf_receiveNameTextView')
 verify_element.click()
 # 姓名除去姓氏
 first_name_pre = verify_element.get_text()
 # 獲取真實(shí)的first name
 self.first_name = first_name_pre[:first_name_pre.index('(')]
 # 獲取姓氏輸入框
 input_element = self.poco('com.alipay.mobile.antui:id/dialog_custom_view').parent().children()[1].children()[0]
 input_element.set_text(last_name)
 # 點(diǎn)擊確認(rèn)按鈕,開始驗(yàn)證
 self.poco('com.alipay.mobile.antui:id/ensure').click()


另外,轉(zhuǎn)賬頁(yè)面可以先利用界面元素拿到妹子不包含姓氏的名字。

如果輸入的姓氏不正確,則會(huì)彈出警告對(duì)話框,否則就能拿到妹子的姓氏了。

def __judge_family_name(self):
 """
 判斷姓氏輸入是否正確
 :return:
 """
 msg_error = self.poco('com.alipay.mobile.antui:id/message', text=u'姓名和賬戶不匹配,為避免轉(zhuǎn)錯(cuò)賬,請(qǐng)核對(duì)')
 btn_ensure = self.poco('com.alipay.mobile.antui:id/ensure')
 yes_or_right = False
 # 姓氏不對(duì)
 if msg_error.exists():
 print('姓氏輸入不正確')
 btn_ensure.click()
 yes_or_right = False
 else:
 print('姓氏輸入正確')
 yes_or_right = True
 return yes_or_right

組合的上面獲取到的數(shù)據(jù),就能得到妹子完整的名字啦。

天了嚕,居然用Python查到了女神的姓名

結(jié) 果 結(jié) 論

拿常用姓氏去一個(gè)個(gè)驗(yàn)證姓名即可拿到妹子的完整名字。

但是由于支付寶對(duì)接口的限制,一個(gè)賬號(hào)每天只能有 10+ 次試錯(cuò)的機(jī)會(huì);因此,如果妹子的姓氏不是那么常見,可以需要試錯(cuò)多次才能拿到妹子的名字。

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

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

AI