Jump to content

Who can get Cookie include .ASPXANONYMOUS and .ASPXAUTH


Recommended Posts

【EXAMPLE】

Cookie:

.ASPXANONYMOUS=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; rtime=XXXXXXXX; ltime=XXXXXX; .ASPXAUTH=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; mid=XXX; Hm_lpvt_XXXXXXXXXXXXXXXX=XXXXXXXXXXXXXX; Hm_lvt_XXXXXXXXXXXXXXXXXXXXXX=XXXXXXXXXXXXXXXXXXXXXXX

Link to comment
Share on other sites

You can read the cookies from the document object like this:

#include <IE.au3>
#include <Array.au3>

$oIE = _IECreate("http://www.ubuntu.com")
$oDoc = _IEDocGetObj($oIE)
$sCookies = $oDoc.cookie
$aCookies = StringSplit($sCookies, ";")
_ArrayDisplay($aCookies, "Cookies")

:huh2:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

You can read the cookies from the document object like this:

#include <IE.au3>
#include <Array.au3>

$oIE = _IECreate("http://www.ubuntu.com")
$oDoc = _IEDocGetObj($oIE)
$sCookies = $oDoc.cookie
$aCookies = StringSplit($sCookies, ";")
_ArrayDisplay($aCookies, "Cookies")

:huh2:

Thx ,but ... it haven't

".ASPXANONYMOUS=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX;" and ".ASPXAUTH=XXXXXXXXXXXXXXXXXXXXXX"

Link to comment
Share on other sites

Well, are those session cookies related to a particular site? Did you try it with your target URL instead of "http://www.ubuntu.com"?

:huh2:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...