Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. POST /home_loggedout.php HTTP/1.1
  2. Host: 10.0.0.1
  3. User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0
  4. Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  5. Accept-Language: en-US,en;q=0.5
  6. Accept-Encoding: gzip, deflate
  7. Referer: http://10.0.0.1/
  8. Connection: keep-alive
  9. Content-Type: application/x-www-form-urlencoded
  10. Content-Length: 50
  11.  
  12. idseed=VCp7YCYUke&username=admin&password=passwordHTTP/1.0 200 OK
  13.  
  14. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  15. <!-- release 20120329v1 -->
  16. <!-- $Id: header.php 3167 2010-03-03 18:11:27Z slemoine $ -->
  17.  
  18. <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
  19. <head>
  20. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  21. <title>Xfinity</title>
  22.  
  23. <!--CSS-->
  24. <link rel="stylesheet" type="text/css" media="screen" href="cmn/css/common-min.css" />
  25. <!--[if IE 6]>
  26. <link rel="stylesheet" type="text/css" href="cmn/css/ie6-min.css" />
  27. <![endif]-->
  28. <!--[if IE 7]>
  29. <link rel="stylesheet" type="text/css" href="cmn/css/ie7-min.css" />
  30. <![endif]-->
  31. <link rel="stylesheet" type="text/css" media="print" href="cmn/css/print.css" />
  32.  
  33.  
  34. <!--Character Encoding-->
  35. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  36.  
  37. <script type="text/javascript" src="cmn/js/common-min.js"></script>
  38. </head>
  39.  
  40. <body>
  41. <!--Main Container - Centers Everything-->
  42. <div id="container">
  43.  
  44. <!--Header-->
  45. <div id="header">
  46.  
  47.  
  48. <!--
  49. <h2><a>The device is currently in Bridge mode.</a></h2>
  50. -->
  51. <h2 id="logo"><a><span></span>xFinity</a></h2>
  52.  
  53. </div> <!-- end #header -->
  54.  
  55. <!--Main Content-->
  56. <div id="main-content">
  57.  
  58. <!-- $Id: home_loggedout.php 3158 2010-01-08 23:32:05Z slemoine $ -->
  59.  
  60. <div id="sub-header">
  61.  
  62. </div><!-- end #sub-header -->
  63.  
  64.  
  65. <script type="text/javascript">
  66. $(document).ready(function() {
  67. comcast.page.init("Login", "nav-login");
  68.  
  69. jAlert("Authentication failed" ,"ERROR" ,function(ret){ if(ret) { window.location = "home_loggedout.php"; } });
  70.  
  71. $("#pageForm").validate({
  72. errorElement : "p"
  73. ,errorContainer : "#error-msg-box"
  74. ,invalidHandler: function(form, validator) {
  75. var errors = validator.numberOfInvalids();
  76. if (errors) {
  77. var message = errors == 1 ? 'You missed 1 field. It has been highlighted' : 'You missed ' + errors + ' fields. They have been highlighted';
  78. $("div.error").html(message);
  79. $("div.error").show();
  80. } else {
  81. $("div.error").hide();
  82. }
  83. }
  84. });
  85. });
  86. </script>
  87.  
  88. <div id="content">
  89. <h1>Login</h1>
  90. <div id="login" class="module forms">
  91.  
  92. <form action="home_loggedout.php" method="post" id="pageForm">
  93.  
  94. <div class="form-row">
  95. <p>Please login to manage your router.</p>
  96. </div>
  97.  
  98. <input type="hidden" name="idseed" value="x4HmJmcTHG">
  99. <div class="error"></div>
  100. <div class="form-row">
  101. <label for="username">Username:</label>
  102. <input type="text" id="username" name="username" size="20" class="text" value="">
  103. </div>
  104.  
  105. <div class="form-row">
  106. <label for="password">Password:</label>
  107. <input type="password" id="password" name="password" size="20" class="text" value="">
  108. </div>
  109.  
  110. <div class="form-btn">
  111. <input type="submit" class="btn" value="Login" />
  112. </div>
  113. </form>
  114. </div>
  115. </div><!-- end #content -->
  116. <!-- $Id: footer.php 2976 2009-09-02 21:42:51Z cporto $ -->
  117. </div> <!-- end #main-content-->
  118.  
  119. <!--Footer-->
  120. <div id="footer">
  121. <ul id="footer-links">
  122. <li class="first-child"><a href="http://www.xfinity.com" target="_blank">Xfinity.com</a></li>
  123. <li><a href="https://customer.comcast.com/" target="_blank">customerCentral</a></li>
  124. <li><a href="http://customer.comcast.com/userguides" target="_blank">User Guide</a></li>
  125. </ul>
  126. </div> <!-- end #footer -->
  127. </div> <!-- end #container -->
  128. </body>
  129. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement