Waraxe IT Security Portal
Login or Register
August 31, 2026
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: 463
Members: 0
Total: 463
Full disclosure
CyberDanube Security Research 20260611-0 | Multiple Denial of Service Vulnerabilities in Dahua IPC/SD/NVR/XVR/EVS/VTO/VT H/ASI/TPC Camera Series
Multiple Integer Overflows in U-Boot Filesystem Parsing(CVE-2025-70290 through CVE-2025-70293)
[ADVISORY] Multiple Integer Overflows in U-Boot FilesystemParsing (CVE-2025-70290 through CVE-2025-70293)
JSON Deserialiser Unconstrained Resource Consumption Proof ofConcept
Dovecot Security Advisory 3/2026
FD - Half-click unauthenticated remote code execution on Horde Groupware IMP (from a stored XSS)
[NotCVE-2026-0013] CHIRP Kenwood ITM Driver Eval Injection Allows Arbitrary Code Execution via Crafted Radio File
[NotCVE-2026-0012] EmpManageX Hardcoded Administrative Credentials in Login API Allow Full Access to Employee Records
[NotCVE-2026-0011] Nmap 7.99 and Earlier nselib/packet.lua Zero-Length TCP Option Infinite Loop Allows Remote Denial of Service
[NotCVE-2026-0010] Barrier 2.4.0 for Windows Unauthenticated IPC Command Execution Allows Local Privilege Escalation to SYSTEM
[NotCVE-2026-0009] NitroShare Desktop 0.3.4 Path Traversal Allows LAN-Adjacent Arbitrary File Write
Escargot v4.3.0-214-gfaee4437 Unauthenticated Remote Debugger Allows Arbitrary JavaScript Evaluation and Local File Disclosure
Escargot v4.3.0-214-gfaee4437 OS Command Injection in Crash Handler via Unsanitized Executable Path
Escargot v4.3.0-214-gfaee4437 Debugger WebSocket Off-by-One Stack Buffer Overflow
UltraJSON v5.13.0-6-g733f9e1 Length-Boundary Violation Causes Out-of-Bounds Read During Incomplete JSON Parsing
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



PCWizardHub - Helping you fix, build, and optimize your PC life
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.050 Seconds