Waraxe IT Security Portal
Login or Register
September 8, 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: 76
Members: 0
Total: 76
Full disclosure
[SYSS-2024-030]: C-MOR Video Surveillance - OS Command Injection (CWE-78)
[SYSS-2024-029]: C-MOR Video Surveillance - Dependency on Vulnerable Third-Party Component (CWE-1395)
[SYSS-2024-028]: C-MOR Video Surveillance - Cleartext Storage of Sensitive Information (CWE-312)
[SYSS-2024-027]: C-MOR Video Surveillance - Improper Privilege Management (CWE-269)
[SYSS-2024-026]: C-MOR Video Surveillance - Unrestricted Upload of File with Dangerous Type (CWE-434)
[SYSS-2024-025]: C-MOR Video Surveillance - Relative Path Traversal (CWE-23)
Backdoor.Win32.Symmi.qua / Remote Stack Buffer Overflow (SEH)
HackTool.Win32.Freezer.br (WinSpy) / Insecure CredentialStorage
Backdoor.Win32.Optix.02.b / Weak Hardcoded Credentials
Backdoor.Win32.JustJoke.2 1 (BackDoor Pro) / Unauthenticated Remote Command Execution
Backdoor.Win32.PoisonIvy. ymw / Insecure Credential Storage
[SYSS-2024-024]: C-MOR Video Surveillance - Improper Access Control (CWE-284)
[SYSS-2024-023]: C-MOR Video Surveillance - SQL Injection(CWE-89)
[SYSS-2024-022]: C-MOR Video Surveillance - Cross-Site Request Forgery (CWE-352)
[SYSS-2024-021]: C-MOR Video Surveillance - Persistent Cross-Site Scripting (CWE-79)
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



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