 |
Menu |
 |
|
Home |
| |
|
Discussions |
| |
|
Tools |
| |
|
Affiliates |
| |
|
Content |
| |
|
Info |
| | |
|
|
|
|
 |
User Info |
 |
Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144
People Online:
Visitors: 302
Members: 0
Total: 302
|
|
|
|
|
 |
Full disclosure |
 |
CyberDanube Security Research 20251014-0 | Multiple Vulnerabilities in Phoenix Contact QUINT4 UPS
apis.google.com - Insecure redirect via __lu parameter(exploited in the wild)
Urgent Security Vulnerabilities Discovered in Mercku Routers Model M6a
Re: Security Advisory: Multiple High-Severity Vulnerabilities in Suno.com (JWT Leakage, IDOR, DoS)
Security Advisory: Multiple High-Severity Vulnerabilities in Suno.com (JWT Leakage, IDOR, DoS)
[SBA-ADV-20250730-01] CVE-2025-39664: Checkmk Path Traversal
[SBA-ADV-20250724-01] CVE-2025-32919: Checkmk Agent Privilege Escalation via Insecure Temporary Files
CVE-2025-59397 - Open Web Analytics SQL Injection
Re: [FD]Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Re: Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Re: Defense in depth -- the Microsoft way (part 93): SRP/SAFERwhitelisting goes black on Windows 11
Re: [FD]: "Glass Cage" – Zero-Click iMessage ? Persistent iOS Compromise + Bricking (CVE-2025-24085 / 24201, CNVD-2025-07885)
Re: [FD]Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Samtools v1.22.1 Uncontrolled Memory Allocation from Large BED Intervals Causes Denial-of-Service in Samtools/HTSlib
Samtools v1.22.1 Improper Handling of Excessive Histogram Bin Counts in Samtools Coverage Leads to Stack Overflow
|
|
|
|
|
|
 |
|
 |
 |
|
 |
IT Security and Insecurity Portal |
|
 |
Weird Md5 hash? |
 |
Posted: Tue Jan 17, 2006 2:23 pm |
|
|
lld_master |
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 |
|
|
|
|
Posted: Tue Jan 17, 2006 3:17 pm |
|
|
syntax9 |
Active user |

 |
|
Joined: Dec 21, 2005 |
Posts: 33 |
|
|
|
 |
 |
 |
|
GL ive been trying to find the answer to this for month. No1 seems to know |
|
|
|
|
 |
 |
|
 |
Posted: Sat Jan 21, 2006 11:25 am |
|
|
Heintz |
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!" |
|
|
|
 |
 |
|
 |
Posted: Mon Jan 23, 2006 3:11 pm |
|
|
lld_master |
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? |
|
|
|
|
 |
 |
|
 |
Posted: Mon Jan 23, 2006 7:01 pm |
|
|
Heintz |
Valuable expert |

 |
|
Joined: Jun 12, 2004 |
Posts: 88 |
Location: Estonia/Sweden |
|
|
 |
 |
 |
|
|
_________________ 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!" |
|
|
|
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
|
|
|
Powered by phpBB © 2001-2008 phpBB Group
|
|
|
|
|
|