| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <tmpl_include name="inc.head.tmpl">
- <tmpl_include name="inc.titleBar.tmpl">
- <script language="JavaScript">
- function closeme() {
- self.close();
- }
- </script>
- <div id="content">
- <div class="boldInfo">How to get Cookie information....</div>
- <br />
- <br />
- <div class="boldInfo">FireFox</div>
- <ul>
- <li>Tools => Options</li>
- <li>Cookies => View Cookies</li>
- <li>Locate the site you want to get cookie information from.</li>
- <li>Get the UID and PASS content fields</li>
- </ul>
- <br />
- <br />
- <div class="boldInfo">Internet Explorer</div>
- <ul>
- <li>Tools => Internet Options</li>
- <li>General => Settings => View Files</li>
- <li>Locate cookie file for site (eg: Cookie:user@www.host.com/)</li>
- <li>Open the file in a text editor</li>
- <li>Grab the values below UID and PASS</li>
- </ul>
- <br />
- <br />
- The file will look something like this:
- <pre>
- ------
- userZone
- -660
- www.host.com/
- 1600
- 2148152320
- 29840330
- 125611120
- 29766905
- *
- uid
- 123456 <----------------------------
- www.host.com/
- 1536
- 3567643008
- 32111902
- 4197448416
- 29766904
- *
- pass
- 0j9i8h7g6f5e4d3c2b1a <--------------
- www.host.com/
- 1536
- 3567643008
- 32111902
- 4197448416
- 29766904
- *
- --------
- </pre>
- [ <a id="closeLink" href="#" onClick="closeme();">close</a> ]
- <tmpl_include name="inc.subfoot.tmpl">
- </div>
- </body>
- </html>
|