Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
May 25, 2012
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: jimysakura
New Today: 0
New Yesterday: 3
Overall: 8201

People Online:
Visitors: 215
Members: 0
Total: 215
milw0rm
·[webapps / 0day] - appRain CMF Arbitrary PHP File Upload Vulnerability
·[local exploits] - OpenOffice OLE Importer DocumentSummaryInformatio n Stream Handling
·[local exploits] - Mod_Auth_OpenID Session Stealing Vulnerability
·[dos / poc] - Symantec End Point Protection 11.x & Symantec Network Access Control 11.x LCE
·[dos / poc] - Tftpd32 DHCP Serve 4.00 Denial Of Service
·[webapps / 0day] - Ajaxmint Gallery 1.0 Local File Inclusion
·[webapps / 0day] - RuubikCMS 1.1.0 Beta XSS / Disclosure / Directory Traversal
·[webapps / 0day] - Insight Creative Sql injection/Reflected XSS Vulnerabilties
·[webapps / 0day] - AFFY (index.php) Blind Sql Injection Vulnerability
·[webapps / 0day] - ezContents (1.x.x , 2.0.3) Blind injection/Reflected XSS Vulnerabilties

read more...
PacketStorm News
·Mandriva Linux Security Advisory 2012-080
·Red Hat Security Advisory 2012-0688-01
·Debian Security Advisory 2479-1
·Debian Security Advisory 2478-1
·Ubuntu Security Notice USN-1450-1
·Drupal BrowserID 7.x Cross Site Request Forgery
·Drupal Taxonomy List 6.x Cross Site Scripting
·Drupal Search API 7.x Cross Site Scripting
·Secunia Security Advisory 49200
·Secunia Security Advisory 49235

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PhpBB -> Weird Md5 hash?
Post new topic  Reply 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 topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






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-2010 Janek Vind "waraxe"

Page Generation: 0.086 Seconds