Last active
February 1, 2023 19:45
-
-
Save hydrz/abfc2b7b4c2ad4ac733c4836c37dbdf9 to your computer and use it in GitHub Desktop.
tplink TL-R470GP-AC 获取root密码
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 默认端口 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