Advertisement
NaterTater

NaterTater T-Mobile Arcadyan KVD21 Settings

Apr 27th, 2022
10,559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. # REMEMBER: Be careful with spacing and quotation marks when copying/pasting tokens etc. Each of these commands is a full (long) line, not multiple lines. Copy the whole line and paste into Powershell or Terminal after replacing any necessary parts.
  2.  
  3.  
  4.  
  5. # -- FOR WINDOWS USERS: (In Powershell app) --
  6.  
  7. curl.exe -X POST http://192.168.12.1/TMI/v1/auth/login -d '{\"username\": \"admin\", \"password\": \"see_video_replace_me\" }'
  8.  
  9. # then...
  10.  
  11. curl.exe http://192.168.12.1/TMI/v1/network/configuration?get=ap -H 'Authorization: Bearer see_video_replace_me' > c:\t-mobile-wifi-info.txt
  12.  
  13. # then...
  14.  
  15. cat c:\t-mobile-wifi-info.txt | curl.exe -d "@-" http://192.168.12.1/TMI/v1/network/configuration?set=ap -H 'Authorization: Bearer see_video_replace_me'
  16.  
  17.  
  18.  
  19. # -- FOR MACOS & LINUX.etc USERS: (In Terminal app) --
  20.  
  21. curl -X POST http://192.168.12.1/TMI/v1/auth/login -d '{"username": "admin", "password": "SEE_VIDEO_REPLACE_ME" }'
  22.  
  23. # then...
  24.  
  25. curl http://192.168.12.1//TMI/v1/network/configuration\?get\=ap -H 'Authorization: Bearer SEE_VIDEO_REPLACE_ME' > ~/Desktop/t-mobile-wifi-info.txt
  26.  
  27. # then...
  28.  
  29. cat ~/Desktop/t-mobile-wifi-info.txt | curl -d "@-" http://192.168.12.1/TMI/v1/network/configuration\?set\=ap -H 'Authorization: Bearer SEE_VIDEO_REPLACE_ME'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement