Skip to content

Instantly share code, notes, and snippets.

@hydrz
Last active February 1, 2023 19:45
Show Gist options
  • Save hydrz/abfc2b7b4c2ad4ac733c4836c37dbdf9 to your computer and use it in GitHub Desktop.
Save hydrz/abfc2b7b4c2ad4ac733c4836c37dbdf9 to your computer and use it in GitHub Desktop.
tplink TL-R470GP-AC 获取root密码
# 默认端口 33400
# binwalk -e TL-R470GP-AC_V2.0_1.0.8_Build_20200703_Rel.60778.bin 提取文件内容
# 搜索 getNewPasswd 查看密码加密方式
# 使用LAN口的MAC地址
macAddr=7844FD5F42E2
key=$(echo -n "$macAddr" | md5sum)
key=$(echo ${key:0:16})
echo ${key}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment