飞道的博客

女友半夜加班发自拍 python男友用30行代码发现惊天秘密

561人阅读  评论(0)

事情是这样的

正准备下班的python开发小哥哥

接到女朋友今晚要加班的电话

并给他发来一张背景模糊的自拍照

如下 ↓ ↓ ↓

敏感的小哥哥心生疑窦,难道会有原谅帽

然后python撸了一段代码 分析照片

分析下来 emmm

拍摄地址居然在 XXX酒店

小哥哥崩溃之余 大呼上当

 

python分析照片

小哥哥将发给自己的照片原图下载下来

并使用python写了一个脚本

读取到了照片拍摄的详细的地址

详细到了具体的街道和酒店名称

 

引入exifread模块

首先安装python的exifread模块,用于照片分析

pip install exifread 安装exfriead模块


  
  1. PS C:\WINDOWS\system32> pip install exifread
  2. Collecting exifread
  3. Downloading ExifRead-2.3.2-py3-none-any.whl (38 kB)
  4. Installing collected packages: exifread
  5. Successfully installed exifread-2.3.2
  6. PS C:\WINDOWS\system32> pip install json

 

GPS经纬度信息

其实我们平时拍摄的照片里,隐藏了大量的私密信息

包括 拍摄时间、极其精确 具体的GPS信息。

下面是通过exifread模块,来读取照片内的经纬度信息。


  
  1. #读取照片的GPS经纬度信息
  2. def find_GPS_image(pic_path):
  3. GPS = {}
  4. date = ''
  5. with open(pic_path, 'rb') as f:
  6. tags = exifread.process_file(f)
  7. for tag, value in tags.items():
  8. #纬度
  9. if re.match( 'GPS GPSLatitudeRef', tag):
  10. GPS[ 'GPSLatitudeRef'] = str(value)
  11. #经度
  12. elif re.match( 'GPS GPSLongitudeRef', tag):
  13. GPS[ 'GPSLongitudeRef'] = str(value)
  14. #海拔
  15. elif re.match( 'GPS GPSAltitudeRef', tag):
  16. GPS[ 'GPSAltitudeRef'] = str(value)
  17. elif re.match( 'GPS GPSLatitude', tag):
  18. try:
  19. match_result = re.match( '\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
  20. GPS[ 'GPSLatitude'] = int(match_result[ 0]), int(match_result[ 1]), int(match_result[ 2])
  21. except:
  22. deg, min, sec = [x.replace( ' ', '') for x in str(value)[ 1: -1].split( ',')]
  23. GPS[ 'GPSLatitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
  24. elif re.match( 'GPS GPSLongitude', tag):
  25. try:
  26. match_result = re.match( '\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
  27. GPS[ 'GPSLongitude'] = int(match_result[ 0]), int(match_result[ 1]), int(match_result[ 2])
  28. except:
  29. deg, min, sec = [x.replace( ' ', '') for x in str(value)[ 1: -1].split( ',')]
  30. GPS[ 'GPSLongitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
  31. elif re.match( 'GPS GPSAltitude', tag):
  32. GPS[ 'GPSAltitude'] = str(value)
  33. elif re.match( '.*Date.*', tag):
  34. date = str(value)
  35. return { 'GPS_information': GPS, 'date_information': date}

 

百度API将GPS转地址

这里需要使用调用百度API,将GPS经纬度信息转换为具体的地址信息。

这里,你需要一个调用百度API的ak值,这个可以注册一个百度开发者获得,当然,你也可以使用博主的这个ak

调用之后,就可以将拍摄时间、拍摄详细地址都解析出来。


  
  1. def find_address_from_GPS(GPS):
  2. secret_key = 'zbLsuDDL4CS2U0M4KezOZZbGUY9iWtVf'
  3. if not GPS[ 'GPS_information']:
  4. return '该照片无GPS信息'
  5. #经纬度信息
  6. lat, lng = GPS[ 'GPS_information'][ 'GPSLatitude'], GPS[ 'GPS_information'][ 'GPSLongitude']
  7. baidu_map_api = "http://api.map.baidu.com/geocoder/v2/?ak={0}&callback=renderReverse&location={1},{2}s&output=json&pois=0".format(
  8. secret_key, lat, lng)
  9. response = requests.get(baidu_map_api)
  10. #百度API转换成具体的地址
  11. content = response.text.replace( "renderReverse&&renderReverse(", "")[: -1]
  12. print(content)
  13. baidu_map_address = json.loads(content)
  14. #将返回的json信息解析整理出来
  15. formatted_address = baidu_map_address[ "result"][ "formatted_address"]
  16. province = baidu_map_address[ "result"][ "addressComponent"][ "province"]
  17. city = baidu_map_address[ "result"][ "addressComponent"][ "city"]
  18. district = baidu_map_address[ "result"][ "addressComponent"][ "district"]
  19. location = baidu_map_address[ "result"][ "sematic_description"]
  20. return formatted_address,province,city,district,location
  21. if __name__ == '__main__':
  22. GPS_info = find_GPS_image(pic_path= 'C:/女友自拍.jpg')
  23. address = find_address_from_GPS(GPS=GPS_info)
  24. print( "拍摄时间:" + GPS_info.get( "date_information"))
  25. print( '照片拍摄地址:' + str(address))

 

老王得到的结果是这样的

照片拍摄地址:('云南省红河哈尼族彝族自治州弥勒县', '云南省', '红河哈尼族彝族自治州', '弥勒县', '湖泉酒店-A座东南128米')

云南弥勒湖泉酒店,这明显不是老王女友工作的地方,老王搜索了一下,这是一家温泉度假酒店。

顿时就明白了


  
  1. {"status":0,"result":{"location":{"lng":103.41424699999998,"lat":24.410461020097278},
  2. "formatted_address":"云南省红河哈尼族彝族自治州弥勒县",
  3. "business":"",
  4. "addressComponent": {"country":"中国",
  5. "country_code":0,
  6. "country_code_iso":"CHN",
  7. "country_code_iso2":"CN",
  8. "province":"云南省",
  9. "city":"红河哈尼族彝族自治州",
  10. "city_level":2,"district":"弥勒县",
  11. "town":"","town_code":"","adcode":"532526",
  12. "street_number":"",
  13. "direction":"","distance":""},
  14. "sematic_description":"湖泉酒店-A座东南 128米",
  15. "cityCode": 107}}
  16. 拍摄时间: 2021: 5: 03 20: 05: 32
  17. 照片拍摄地址:( '云南省红河哈尼族彝族自治州弥勒县', '云南省', '红河哈尼族彝族自治州', '弥勒县', '湖泉酒店-A座东南128米')

 

完整代码如下


  
  1. import exifread
  2. import re
  3. import json
  4. import requests
  5. import os
  6. #转换经纬度格式
  7. def latitude_and_longitude_convert_to_decimal_system(*arg):
  8. """
  9. 经纬度转为小数, param arg:
  10. :return: 十进制小数
  11. """
  12. return float(arg[ 0]) + ((float(arg[ 1]) + (float(arg[ 2].split( '/')[ 0]) / float(arg[ 2].split( '/')[ -1]) / 60)) / 60)
  13. #读取照片的GPS经纬度信息
  14. def find_GPS_image(pic_path):
  15. GPS = {}
  16. date = ''
  17. with open(pic_path, 'rb') as f:
  18. tags = exifread.process_file(f)
  19. for tag, value in tags.items():
  20. #纬度
  21. if re.match( 'GPS GPSLatitudeRef', tag):
  22. GPS[ 'GPSLatitudeRef'] = str(value)
  23. #经度
  24. elif re.match( 'GPS GPSLongitudeRef', tag):
  25. GPS[ 'GPSLongitudeRef'] = str(value)
  26. #海拔
  27. elif re.match( 'GPS GPSAltitudeRef', tag):
  28. GPS[ 'GPSAltitudeRef'] = str(value)
  29. elif re.match( 'GPS GPSLatitude', tag):
  30. try:
  31. match_result = re.match( '\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
  32. GPS[ 'GPSLatitude'] = int(match_result[ 0]), int(match_result[ 1]), int(match_result[ 2])
  33. except:
  34. deg, min, sec = [x.replace( ' ', '') for x in str(value)[ 1: -1].split( ',')]
  35. GPS[ 'GPSLatitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
  36. elif re.match( 'GPS GPSLongitude', tag):
  37. try:
  38. match_result = re.match( '\[(\w*),(\w*),(\w.*)/(\w.*)\]', str(value)).groups()
  39. GPS[ 'GPSLongitude'] = int(match_result[ 0]), int(match_result[ 1]), int(match_result[ 2])
  40. except:
  41. deg, min, sec = [x.replace( ' ', '') for x in str(value)[ 1: -1].split( ',')]
  42. GPS[ 'GPSLongitude'] = latitude_and_longitude_convert_to_decimal_system(deg, min, sec)
  43. elif re.match( 'GPS GPSAltitude', tag):
  44. GPS[ 'GPSAltitude'] = str(value)
  45. elif re.match( '.*Date.*', tag):
  46. date = str(value)
  47. return { 'GPS_information': GPS, 'date_information': date}
  48. #通过baidu Map的API将GPS信息转换成地址。
  49. def find_address_from_GPS(GPS):
  50. """
  51. 使用Geocoding API把经纬度坐标转换为结构化地址。
  52. :param GPS:
  53. :return:
  54. """
  55. secret_key = 'zbLsuDDL4CS2U0M4KezOZZbGUY9iWtVf'
  56. if not GPS[ 'GPS_information']:
  57. return '该照片无GPS信息'
  58. lat, lng = GPS[ 'GPS_information'][ 'GPSLatitude'], GPS[ 'GPS_information'][ 'GPSLongitude']
  59. baidu_map_api = "http://api.map.baidu.com/geocoder/v2/?ak={0}&callback=renderReverse&location={1},{2}s&output=json&pois=0".format(
  60. secret_key, lat, lng)
  61. response = requests.get(baidu_map_api)
  62. content = response.text.replace( "renderReverse&&renderReverse(", "")[: -1]
  63. print(content)
  64. baidu_map_address = json.loads(content)
  65. formatted_address = baidu_map_address[ "result"][ "formatted_address"]
  66. province = baidu_map_address[ "result"][ "addressComponent"][ "province"]
  67. city = baidu_map_address[ "result"][ "addressComponent"][ "city"]
  68. district = baidu_map_address[ "result"][ "addressComponent"][ "district"]
  69. location = baidu_map_address[ "result"][ "sematic_description"]
  70. return formatted_address,province,city,district,location
  71. if __name__ == '__main__':
  72. GPS_info = find_GPS_image(pic_path= 'C:/Users/pacer/desktop/img/5.jpg')
  73. address = find_address_from_GPS(GPS=GPS_info)
  74. print( "拍摄时间:" + GPS_info.get( "date_information"))
  75. print( '照片拍摄地址:' + str(address))

推荐阅读

python及安全系列

【渗透案例】上班摸鱼误入陌生网址——结果被XSS劫持了

【渗透测试】python你TM太皮了——区区30行代码就能记录键盘的一举一动

【渗透实战】女神相册密码忘记了,我只用Python写了20行代码~~~

【渗透测试】密码暴力破解工具——九头蛇(hydra)使用详解及实战

【渗透学习】Web安全渗透详细教程+学习线路+详细笔记【全网最全+建议收藏】

【渗透案例】如何用ssh工具连接前台小姐姐的“小米手机”——雷总看了直呼内行!!!

【渗透测试】密码暴力破解工具——九头蛇(hydra)使用详解及实战

【渗透测试】 强大而危险的摄像头搜索引擎—SHODAN
 

pygame系列文章

一起来学pygame吧 游戏开发30例(二)——塔防游戏

一起来学pygame吧 游戏开发30例(三)——射击外星人小游戏

一起来学pygame吧 游戏开发30例(四)——俄罗斯方块小游戏

一起来学pygame吧 游戏开发30例(五)——消消乐 小游戏

一起来学pygame吧 游戏开发30例(六)——高山滑雪 小游戏


转载:https://blog.csdn.net/weixin_42350212/article/details/116568510
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场