page.cookiehelp.tmpl 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <tmpl_include name="inc.head.tmpl">
  2. <tmpl_include name="inc.titleBar.tmpl">
  3. <script language="JavaScript">
  4. function closeme() {
  5. self.close();
  6. }
  7. </script>
  8. <div id="content">
  9. <div class="boldInfo">How to get Cookie information....</div>
  10. <br />
  11. <br />
  12. <div class="boldInfo">FireFox</div>
  13. <ul>
  14. <li>Tools => Options</li>
  15. <li>Cookies => View Cookies</li>
  16. <li>Locate the site you want to get cookie information from.</li>
  17. <li>Get the UID and PASS content fields</li>
  18. </ul>
  19. <br />
  20. <br />
  21. <div class="boldInfo">Internet Explorer</div>
  22. <ul>
  23. <li>Tools => Internet Options</li>
  24. <li>General => Settings => View Files</li>
  25. <li>Locate cookie file for site (eg: Cookie:user@www.host.com/)</li>
  26. <li>Open the file in a text editor</li>
  27. <li>Grab the values below UID and PASS</li>
  28. </ul>
  29. <br />
  30. <br />
  31. The file will look something like this:
  32. <pre>
  33. ------
  34. userZone
  35. -660
  36. www.host.com/
  37. 1600
  38. 2148152320
  39. 29840330
  40. 125611120
  41. 29766905
  42. *
  43. uid
  44. 123456 <----------------------------
  45. www.host.com/
  46. 1536
  47. 3567643008
  48. 32111902
  49. 4197448416
  50. 29766904
  51. *
  52. pass
  53. 0j9i8h7g6f5e4d3c2b1a <--------------
  54. www.host.com/
  55. 1536
  56. 3567643008
  57. 32111902
  58. 4197448416
  59. 29766904
  60. *
  61. --------
  62. </pre>
  63. [ <a id="closeLink" href="#" onClick="closeme();">close</a> ]
  64. <tmpl_include name="inc.subfoot.tmpl">
  65. </div>
  66. </body>
  67. </html>