Waraxe IT Security Portal
Login or Register
September 3, 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: 631
Members: 0
Total: 631
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 -> PhpBB -> Weird Md5 hash?
Post new topicReply to topic View previous topic :: View next topic
Weird Md5 hash?
PostPosted: Tue Jan 17, 2006 2:23 pm Reply with quote
lld_master
Regular user
Regular user
Joined: Jan 12, 2006
Posts: 12




I am wokring on the forum... and the HASH im getting looks like the following:

47128202943ccf2d68fbbf0.73346491

Can anyone help me understand what kind of pass hash this is?
Its not md5. yet, it is in the cookie that stores the hash...

Any ideas?

lld_master
View user's profile Send private message
PostPosted: Tue Jan 17, 2006 3:17 pm Reply with quote
syntax9
Active user
Active user
Joined: Dec 21, 2005
Posts: 33




GL ive been trying to find the answer to this for month. No1 seems to know
View user's profile Send private message
PostPosted: Sat Jan 21, 2006 11:25 am Reply with quote
Heintz
Valuable expert
Valuable expert
Joined: Jun 12, 2004
Posts: 88
Location: Estonia/Sweden




working on "the" forum? doesnt say anything to me. firstable tell what software you are working on (NOT the url where the forum is though).
and not every long hex string is a md5 hash.
so get the software take a look at the source code and you'll see exacly what it is. if you dont know how to then at least tell the ones you are asking help from the url or minumum _name_ of the software, so that someone else could do it. if you are working on a custom forum and source is not aivailable then you can't know exacly what it is. need to apply all research capabilities you have and if thats not enought then there isnt anything you can do about it.

[edit]

at least you got the post under right subforum, unlike many others.
gonna investigate and let know of results.

[edit]

so there we go:
stripped out of PHPBB 2.0.19 /include/sessions.php

Code:


list($sec, $usec) = explode(' ', microtime());
mt_srand(hexdec(substr($session_id, 0, 8)) + (float) $sec + ((float) $usec * 1000000));
$auto_login_key = uniqid(mt_rand(), true);
...
$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . "
SET last_ip = '$user_ip', key_id = '" . md5($auto_login_key) . "', last_login = $current_time
WHERE key_id = '" . md5($sessiondata['autologinid']) . "'";
..


as allready pointed out in other thread which i just noticed. its new format.
and you cant get any password from here.

_________________
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: Mon Jan 23, 2006 3:11 pm Reply with quote
lld_master
Regular user
Regular user
Joined: Jan 12, 2006
Posts: 12




Heintz wrote:
working on "the" forum? doesnt say anything to me. firstable tell what software you are working on (NOT the url where the forum is though).
and not every long hex string is a md5 hash.
so get the software take a look at the source code and you'll see exacly what it is. if you dont know how to then at least tell the ones you are asking help from the url or minumum _name_ of the software, so that someone else could do it. if you are working on a custom forum and source is not aivailable then you can't know exacly what it is. need to apply all research capabilities you have and if thats not enought then there isnt anything you can do about it.

[edit]

at least you got the post under right subforum, unlike many others.
gonna investigate and let know of results.

[edit]

so there we go:
stripped out of PHPBB 2.0.19 /include/sessions.php

Code:


list($sec, $usec) = explode(' ', microtime());
mt_srand(hexdec(substr($session_id, 0, 8)) + (float) $sec + ((float) $usec * 1000000));
$auto_login_key = uniqid(mt_rand(), true);
...
$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . "
SET last_ip = '$user_ip', key_id = '" . md5($auto_login_key) . "', last_login = $current_time
WHERE key_id = '" . md5($sessiondata['autologinid']) . "'";
..


as allready pointed out in other thread which i just noticed. its new format.
and you cant get any password from here.



OK, we already established that the
uniqid(mt_rand(), true);

function converts the weird hash into a md5. Now can you provide the
uniqid function here so we can review it?
View user's profile Send private message
PostPosted: Mon Jan 23, 2006 7:01 pm Reply with quote
Heintz
Valuable expert
Valuable expert
Joined: Jun 12, 2004
Posts: 88
Location: Estonia/Sweden




shure

http://www.php.net/uniqid

_________________
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
Weird Md5 hash?
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



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.027 Seconds