Waraxe IT Security Portal
Login or Register
July 27, 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: 207
Members: 0
Total: 207
Full disclosure
CyberDanube Security Research 20240722-0 | Multiple Vulnerabilities in Perten/PerkinElmer ProcessPlus
[KIS-2024-06] XenForo <= 2.2.15 (Template System) Remote Code Execution Vulnerability
[KIS-2024-05] XenForo <= 2.2.15 (Widget::actionSave) Cross-Site Request Forgery Vulnerability
CVE-2024-33326
CVE-2024-33327
CVE-2024-33328
CVE-2024-33329
CyberDanube Security Research 20240703-0 | Authenticated Command Injection in Helmholz Industrial Router REX100
SEC Consult SA-20240627-0 :: Local Privilege Escalation via MSI installer in SoftMaker Office / FreeOffice
SEC Consult SA-20240626-0 :: Multiple Vulnerabilities in Siemens Power Automation Products
Novel DoS Vulnerability Affecting WebRTC Media Servers
APPLE-SA-06-25-2024-1 AirPods Firmware Update 6A326, AirPods Firmware Update 6F8, and Beats Firmware Update 6F8
40 vulnerabilities in Toshiba Multi-Function Printers
17 vulnerabilities in Sharp Multi-Function Printers
SEC Consult SA-20240624-0 :: Multiple Vulnerabilities allowing complete bypass in Faronics WINSelect (Standard + Enterprise)
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.393 Seconds