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: 74
Members: 0
Total: 74
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 -> General discussion -> Hash:Salt Concept?
Post new topicReply to topic View previous topic :: View next topic
Hash:Salt Concept?
PostPosted: Sun Jun 21, 2009 10:10 am Reply with quote
fedor_s
Beginner
Beginner
Joined: Jun 21, 2009
Posts: 3




So, I'm starting security right? I've found a few xss and mysql exploits myself . . . er, but that's besides the point anyway.

I don't understand this Hash:Salt concept. How would you decode? I may be too sleepy to read up on wikipedia, but I need something simple because I can't grasp the understanding of this?

What specifically is a hash, and what is salt? And how shall I decode the MD5 encrypted string? I'm too sleepy to explain what I know.

So, I tried to use an ipb mysql injection script in php made by waraxe on my forums on localhost. So it was all successful, and I got a hash:salt returned.

But I have no idea how to decode it? Here's the hash:salt.

Hash: ead34fecf9d99e1dde4288b1f9e38c71
Salt: 'p0WU

I don't think I remember the password I put on there, but also, how do I actually use the information the script returned? I tried forging the cookie, but it doesn't login. Can somebody tell me how I use this? Thanks

-Incredibly sleepy.
View user's profile Send private message Visit poster's website
Re: Hash:Salt Concept?
PostPosted: Sun Jun 21, 2009 5:52 pm Reply with quote
brisk
Advanced user
Advanced user
Joined: Mar 07, 2009
Posts: 108




fedor_s wrote:
So, I'm starting security right? I've found a few xss and mysql exploits myself . . . er, but that's besides the point anyway.

I don't understand this Hash:Salt concept. How would you decode? I may be too sleepy to read up on wikipedia, but I need something simple because I can't grasp the understanding of this?

What specifically is a hash, and what is salt? And how shall I decode the MD5 encrypted string? I'm too sleepy to explain what I know.

So, I tried to use an ipb mysql injection script in php made by waraxe on my forums on localhost. So it was all successful, and I got a hash:salt returned.

But I have no idea how to decode it? Here's the hash:salt.

Hash: ead34fecf9d99e1dde4288b1f9e38c71
Salt: 'p0WU

I don't think I remember the password I put on there, but also, how do I actually use the information the script returned? I tried forging the cookie, but it doesn't login. Can somebody tell me how I use this? Thanks

-Incredibly sleepy.


ead34fecf9d99e1dde4288b1f9e38c71 = Piss
View user's profile Send private message
PostPosted: Sun Jun 21, 2009 6:01 pm Reply with quote
tomzor
Regular user
Regular user
Joined: Jun 20, 2009
Posts: 18
Location: unknown??




nice nice,

few question which program did you use?

cause i am using passwordspro
and used this way for ipb:
md5(md5($salt).md5($pass))
cause it was a ipb 2.3.5

but it will take for hours before it is done...
so could you tell me how did you do it that fast?
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sun Jun 21, 2009 7:06 pm Reply with quote
brisk
Advanced user
Advanced user
Joined: Mar 07, 2009
Posts: 108




tomzor wrote:
nice nice,

few question which program did you use?

cause i am using passwordspro
and used this way for ipb:
md5(md5($salt).md5($pass))
cause it was a ipb 2.3.5

but it will take for hours before it is done...
so could you tell me how did you do it that fast?


I'm using passwordspro as well but I've used dictionary to find the pass.

http://www.insidepro.com/eng/download.shtml

get InsidePro (Big)
View user's profile Send private message
PostPosted: Sun Jun 21, 2009 7:26 pm Reply with quote
fedor_s
Beginner
Beginner
Joined: Jun 21, 2009
Posts: 3




Alright, so I see my only option is brute-forcing or cookie forging. If cookie forging is possible how would I do this?

IPB Version: 2.3.5
View user's profile Send private message Visit poster's website
PostPosted: Sun Jun 21, 2009 8:18 pm Reply with quote
brisk
Advanced user
Advanced user
Joined: Mar 07, 2009
Posts: 108




fedor_s wrote:
Alright, so I see my only option is brute-forcing or cookie forging. If cookie forging is possible how would I do this?

IPB Version: 2.3.5


I think u need to spoof cookies by hash and user's id...

I'm not sure tho, I have never done that in ipb
View user's profile Send private message
PostPosted: Mon Jun 22, 2009 12:17 am Reply with quote
fedor_s
Beginner
Beginner
Joined: Jun 21, 2009
Posts: 3




brisk wrote:
fedor_s wrote:
Alright, so I see my only option is brute-forcing or cookie forging. If cookie forging is possible how would I do this?

IPB Version: 2.3.5


I think u need to spoof cookies by hash and user's id...

I'm not sure tho, I have never done that in ipb

Yeah, I did that, but it does not login for me.



Just for reference. Razz
View user's profile Send private message Visit poster's website
Hash:Salt Concept?
www.waraxe.us Forum Index -> General discussion
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.035 Seconds