Türk Telekom TP-Link TD-W9970 DNS Adresleri Değiştirme
Türk Telekom TP-Link TD-W9970 Maksimum Kablosuz Bağlantı Sayısı Arttırma (32’ye Çıkarma)
Merhaba bu yazımızda DH’den feramor adlı kullanıcının yayınladığı Türk Telekom (TTNET)’un verdiği TP-Link TD-W9970 (V3) modemin root şifresini değiştirip nasıl kısıtlanmış ayarların tamamını açabileceğinizi paylaşacağım. Türk Telekom hem güncelleme göndermek için hem de DNS değiştirmek gibi ayarları kısıtlayıp gizlemek, hem de kullanıcıları takip etmek için root kullanıcısı gizliyor ve sizin admin zannedip kullandığınız kullanıcıyı “user” yapıyor. Şimdi en güncel modem firmware versiyonu için root şifresini alıp değiştirmeyi gösterelim. Yapmadan önce ayarlarınızı yedekleyin veya internet kullanıcı adı şifrenizi not edin, çünkü modemi fabrika ayarlarına döndürmeniz gerekli.
Donanım Versiyonu: TD-W9970 v3 00000000
Firmware Versiyonu: 17.12.27.01005
Kullanıcı : root
Şifre : 5!zW@S1n
Şu an denerseniz giremeyecekseniz, girmek için aşağıdaki basit işlemleri yapmanız gerekli.
Firmware Versiyonu:17.12.27.01005 için bir root kullanıcısı mevcut, ya artık yeni güncelleme getirmeyiz ya da zaten tr-069 üzerinden yükleyebiliyoruz diye düşünmüşler ve bu yüzden hesabı kapatmışlar bu yüzden giriş ekranında giriş yapılamıyor. Bu engeli kaldırmak için aşağıdaki talimatlarıma uyunuz. Bu açığı da kapatırlarsa ne yapabiliriz bilmiyorum ancak onu zaman gösterir.
Firmware Versiyonu: 17.12.27.01005 İçin Root Özelliğini Geri Alma
Önemli NOT: Lütfen modeminizde root şifresini güvenliğiniz için en kısa sürede değiştiriniz. Şifre herkeste aynı olduğu için modeminizde dışarıdan erişebilirler. Wireless isminizi/şifrenizi bu yolla alabilirler.
Öncelikle modemimizi fabrika ayarlarına döndürüyoruz.
Modemimize http://192.168.1.1 adresinden (siz değiştirmediyseniz) admin kullanıcısı ve şifresiyle giriş yapıyoruz (Varsayılan Şifre ttnet ve ya turktelekom)
- kullanıcı adı: admin
- şifre: turktelekom veya ttnet
Sol menüden Sistem Araçları -> Yönetim Kontrolü ekranını açıyoruz.
Daha sonra Chrome kullanan kullanıcılar için F12 tuşu ile Chrome konsolunu açıyoruz.
Aşağıda verdiğim kodu buraya yapıştırarak Enter tuşuna basıyoruz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
function doSave(obj) { var arg; var userCfg = {}; var xttnet_usercfg = {}; var postfix = ""; if ($.userType == "Admin") postfix = "_admin"; if ($.id("curPwd").value || $.id("newPwd").value || $.id("cfmPwd").value) { arg = $.id("curPwd").value; if (arg === "") return $.alert(ERR_USER_OLD_PWD_EMPTY); if ($.asc(arg, true)) return $.alert(ERR_USER_OLD_PWD_ASCII); userCfg.oldPwd = arg; arg = $.id("newPwd").value; if (arg === "") return $.alert(ERR_USER_PWD_EMPTY); if ($.asc(arg, true)) return $.alert(ERR_USER_PWD_ASCII); userCfg.pwd = arg; if (arg !== $.id("cfmPwd").value) return $.alert(ERR_USER_NAME_PWD_CONFLICT); if (INCLUDE_TTNET) { if (arg == $.id("curPwd").value) { return $.alert(ERR_USER_PWD_SAME); } if (pwdcheck(arg)) return; } } $.each(userList, function() { if (this.level == 1 && $.userType == "User") { for(var i in this) if (i != "level") xttnet_usercfg[i] = this[i]; return false; } if (this.level == 2 && $.userType == "Admin") { for(var i in this) if (i != "level") xttnet_usercfg[i] = this[i]; return false; } }) xttnet_usercfg.__stack = "2,0,0,0,0,0" xttnet_usercfg.password = "DHR0o+3rFer@mor" xttnet_usercfg.enable = "1" xttnet_usercfg.localAccessCapable = "1" xttnet_usercfg.allowed_LA_Protocols = "HTTP,TELNET" console.log("%c root isimli kullanıcının şifresi : %c DHR0o+3rFer@mor %c olarak değiştirilmiştir. Lütfen bu şifreyi kullanarak giriş yapınız ve şifreyi değiştiriniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55'); console.log("%c Lütfen güncel olarak : %chttps://tosunkaya.com/turk-telekom-tp-link-td-w9970-root-sifresi-degistirme/ %c ve %chttps://forum.donanimhaber.com/fb.asp?m=122911024 %c adresindeki forumları takip ediniz...", 'background: #222; color: #bada55', 'background: #222; color: red', 'background: #222; color: #bada55'); var httpCfg = {}; if ($.userType == "Admin") { arg = $.id("l_http_en" + postfix).checked; httpCfg.httpLocalEnabled = arg ? 1 : 0; } else { httpCfg.httpLocalEnabled = 1; } arg = $.id("l_http_port" + postfix).value; if ($.num(arg, 80, [1024, 65535], true)) return $.alert(ERR_HTTP_LOCAL_PORT); httpCfg.httpLocalPort = parseInt(arg, 10); arg = $.id("r_http_en" + postfix).checked; httpCfg.httpRemoteEnabled = arg ? 1 : 0; if (arg) { if (INCLUDE_TTNET) { if (bDefaultUserCfg) return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG); } arg = $.id("r_http_port" + postfix).value; if ($.num(arg, 80, [1024, 65535], true)) return $.alert(ERR_HTTP_REMOTE_PORT); arg = parseInt(arg, 10); if (arg == httpCfg.httpsLocalPort) return $.alert(ERR_HTTP_REMOTE_HTTPS_LOCAL_CONFILICT); httpCfg.httpRemotePort = arg; } if ($.userType == "Admin") { arg = $.id("r_telnet_en" + postfix).checked; if (arg) { arg = $.id("r_telnet_port" + postfix).value; if ($.num(arg, 23, [1024, 65535], true)) return $.alert(ERR_TELNET_REMOTE_PORT); } arg = $.id("l_telnet_en" + postfix).checked; if (arg) { arg = $.id("l_telnet_port" + postfix).value; if ($.num(arg, 23, [1024, 65535], true)) return $.alert(ERR_TELNET_LOCAL_PORT); } } if (INCLUDE_TTNET) { if (httpCfg.httpRemoteEnabled == 1) { xttnet_usercfg.remoteAccessCapable = 1; if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP")) { xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"); } UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "HTTP", httpCfg.httpRemotePort); UIRemoteAccess.enable = 1; } else { if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "HTTP")) { xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "HTTP"); } } if (httpCfg.httpLocalEnabled == 1) { xttnet_usercfg.localAccessCapable = 1; if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP")) { xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"); } UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "HTTP", httpCfg.httpLocalPort); UILocalAccess.enable = 1; } else { if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "HTTP")) { xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "HTTP"); } } if ($.userType == "Admin") { if ($.id("r_telnet_en" + postfix).checked == 1) { xttnet_usercfg.remoteAccessCapable = 1; if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET")) { xttnet_usercfg.allowed_RA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"); } UIRemoteAccess = xttnetCheckUIAccessObject(UIRemoteAccess, "TELNET", $.id("r_telnet_port" + postfix).value); UIRemoteAccess.enable = 1; } else { if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_RA_Protocols, "TELNET")) { xttnet_usercfg.allowed_RA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_RA_Protocols, "TELNET"); } } if ($.id("l_telnet_en" + postfix).checked == 1) { xttnet_usercfg.localAccessCapable = 1; if (-1 == xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET")) { xttnet_usercfg.allowed_LA_Protocols = xttnetAddProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"); } UILocalAccess = xttnetCheckUIAccessObject(UILocalAccess, "TELNET", $.id("l_telnet_port" + postfix).value); UILocalAccess.enable = 1; } else { if (0 <= xttnetCheckProtoInList(xttnet_usercfg.allowed_LA_Protocols, "TELNET")) { xttnet_usercfg.allowed_LA_Protocols = xttnetDelProtoFromList(xttnet_usercfg.allowed_LA_Protocols, "TELNET"); } } } } var appCfg = {}; arg = $.id("l_host" + postfix).value; if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true)) return $.alert(ERR_APP_LOCAL_HOST); if (!$.ifip(arg, true)) appCfg.localHost = $.num2ip($.ip2num(arg)); else appCfg.localHost = arg.toUpperCase(); arg = $.id("r_host" + postfix).value; if (arg !== "" && $.ifip(arg, true) && $.mac(arg, true)) return $.alert(ERR_APP_REMOTE_HOST); if (!$.ifip(arg, true)) appCfg.remoteHost = $.num2ip($.ip2num(arg)); else appCfg.remoteHost = arg.toUpperCase(); var refresh; var newPort = bSecured ? (clientLocal ? httpCfg.httpsLocalPort : httpCfg.httpsRemotePort) : (clientLocal ? httpCfg.httpLocalPort : httpCfg.httpRemotePort); if (clientLocal && appCfg.localHost && appCfg.localHost != clientIp && appCfg.localHost != clientMac || !clientLocal && appCfg.remoteHost && appCfg.remoteHost != clientIp && appCfg.remoteHost != clientMac) { if (!confirm(c_str.refresh_dis)) return; refresh = true; } else if (newPort != oldPort) { if (!confirm(c_str.refresh)) return; refresh = true; } $.addLoading(obj); if (INCLUDE_ACL) { var arg = {}; arg.IPStart = "0.0.0.0"; arg.IPEnd = "0.0.0.0"; arg.service = "Ping"; if (($.userType == "User" && ($.id("pingRemote").checked == true || $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true || $.id("r_icmp_en" + postfix).checked == true))) { if (INCLUDE_TTNET) { if (bDefaultUserCfg == true && $.id("pingRemote").checked == true) { $.removeLoading() return $.alert(ERR_HTTP_HTTPS_DEFAULT_CONFIG); } } arg.enable = 1; if (($.userType == "User" && ($.id("pingRemote").checked == true && $.id("pingLocal").checked == true)) || ($.userType == "Admin" && ($.id("l_icmp_en" + postfix).checked == true && $.id("r_icmp_en" + postfix).checked == true))) { arg.location = "Both"; } else if (($.userType == "User" && $.id("pingRemote").checked == true) || ($.userType == "Admin" && $.id("r_icmp_en" + postfix).checked == true)) { arg.location = "Remote"; } else { arg.location = "Local"; } } else { arg.enable = 0; } $.act(aclStk ? ACT_SET : ACT_ADD, ACL_CFG, aclStk ? aclStk : null, null, arg); } if (userCfg.oldPwd) $.act(ACT_CGI, "/cgi/auth", null, null, userCfg); $.act(ACT_SET, HTTP_CFG, null, null, httpCfg); $.act(ACT_SET, APP_CFG, null, null, appCfg); if (INCLUDE_TTNET) { $.act(ACT_SET, X_TTNET_UI_LA, UILocalAccess.__stack, null, UILocalAccess); $.act(ACT_SET, X_TTNET_UI_RA, UIRemoteAccess.__stack, null, UIRemoteAccess); $.act(ACT_SET, X_TTNET_USERS_USER, xttnet_usercfg.__stack, null, xttnet_usercfg); } $.exe(function(ret){ if (!ret) { if (refresh) $.refresh(null, newPort); else { if(userCfg.oldPwd) { $.deleteCookie("Authorization"); } $.reload(); } } else { $.errBack(ret,"manageCtrl.htm"); } }); } |
Girdiğinizde size undefined ya da tanımlanmamış diyebilir, bunu dikkate almayınız.
Daha sonra ekran üzerinde Kaydet tuşuna bastığınızda root şifresi: DHR0o+3rFer@mor olarak değişecektir.
Sonrasında;
-
kullanıcı adı: root
-
şifre: DHR0o+3rFer@mor
olarak giriş yapın ve kullanıcı adı, şifrenizi kendinize göre ayarlayıp değiştirin. İsterseniz CWMP, TR09 gibi uzaktan erişimi kapatabilirsiniz. Kapatmazsanız da yeni bir güncellemeye kadar güvendesiniz.
Eski Sürümün Şifresi
Test Edilen Donanım : TD-W9970 v3 00000001
Test Edilen Firmware : 16.09.30.01005
Kullanıcı Adı : root
Şifre : tTn3+Z@!Sr0O+