Waraxe IT Security Portal
Login or Register
September 20, 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: 69
Members: 0
Total: 69
Full disclosure
Stored XSS in "Edit Profile" - htmlyv2.9.9
Stored XSS in "Menu Editor" - htmlyv2.9.9
Backdoor.Win32.BlackAngel .13 / Unauthenticated Remote CommandExecution
Backdoor.Win32.CCInvader. 10 / Authentication Bypass
Backdoor.Win32.Delf.yj / Information Disclosure
SEC Consult blog :: Microsoft Windows MSI Installer - Repair to SYSTEM - A detailed journey (CVE-2024-38014) + msiscan tool release
Stored XSS to Account Takeover - htmlyv2.9.9
APPLE-SA-09-16-2024-10 macOS Ventura 13.7
APPLE-SA-09-16-2024-9 macOS Sonoma 14.7
APPLE-SA-09-16-2024-8 iOS 17.7 and iPadOS 17.7
APPLE-SA-09-16-2024-7 Xcode 16
APPLE-SA-09-16-2024-6 Safari 18
APPLE-SA-09-16-2024-5 visionOS 2
APPLE-SA-09-16-2024-4 watchOS 11
APPLE-SA-09-16-2024-3 tvOS 18
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> All other hashes -> What kind of hash?
Post new topicReply to topic View previous topic :: View next topic
What kind of hash?
PostPosted: Thu Oct 23, 2008 7:31 pm Reply with quote
aritmos
Advanced user
Advanced user
Joined: Jul 21, 2008
Posts: 82
Location: Inside a salted MD5




it is from vbulleti but y donñt find the format to insidepro.


$H$9tzhGvI3rsFJ1h6GgkKo3mC8//lBLq1

$H$9iIFV2KfEUDiY7Omn/h2bAF6esTOpq1

$H$915JSCuZ606LJlB7PbkhcUd/yRAil41

$H$9TaN/n8GEyzTrgmW8btk6k6owN0Noc/
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 7:35 pm Reply with quote
jhax
Regular user
Regular user
Joined: Oct 23, 2008
Posts: 6




It should be md5(md5(pass)+salt) - maybe they changed it thou, download a copy and check the source. Thats the best way
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 7:53 pm Reply with quote
aritmos
Advanced user
Advanced user
Joined: Jul 21, 2008
Posts: 82
Location: Inside a salted MD5




jhax wrote:
It should be md5(md5(pass)+salt) - maybe they changed it thou, download a copy and check the source. Thats the best way


I don´t think so. ANy other posibility?
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 7:58 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Try MD5(phpbb3), seems to be similar ...
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu Oct 23, 2008 8:15 pm Reply with quote
aritmos
Advanced user
Advanced user
Joined: Jul 21, 2008
Posts: 82
Location: Inside a salted MD5




$H$9iIFV2KfEUDiY7Omn/h2bAF6esTOpq1 is this pass 13911961 because is my pass but i don´t get to decypt with phpbb3 or any other, what is the salt of this hashes?
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 8:35 pm Reply with quote
jhax
Regular user
Regular user
Joined: Oct 23, 2008
Posts: 6




Code:

$db->query_write("
INSERT INTO " . TABLE_PREFIX . "user
(username, salt, password, email, usertitle, joindate, lastvisit, lastactivity, usergroupid, passworddate, options, showvbcode)
VALUES (
'" . $db->escape_string(htmlspecialchars_uni($vbulletin->GPC['username'])) . "',
'" . $db->escape_string($salt) . "',
'" . $db->escape_string(md5(md5($vbulletin->GPC['password']) . $salt)) . "',
'" . $db->escape_string($vbulletin->GPC['email']) . "',
'" . $db->escape_string($install_phrases['usergroup_admin_usertitle']) . "',
" . TIMENOW . ",
" . TIMENOW . ",
" . TIMENOW . ",
6,
FROM_UNIXTIME(" . TIMENOW . "),
2135,
2
)
");



As I said, its md5(md5(pass)+salt). The salt is NOT global, so every user has his own salt, which is 3 characters long and random.
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 8:43 pm Reply with quote
aritmos
Advanced user
Advanced user
Joined: Jul 21, 2008
Posts: 82
Location: Inside a salted MD5




jhax wrote:
Code:

$db->query_write("
INSERT INTO " . TABLE_PREFIX . "user
(username, salt, password, email, usertitle, joindate, lastvisit, lastactivity, usergroupid, passworddate, options, showvbcode)
VALUES (
'" . $db->escape_string(htmlspecialchars_uni($vbulletin->GPC['username'])) . "',
'" . $db->escape_string($salt) . "',
'" . $db->escape_string(md5(md5($vbulletin->GPC['password']) . $salt)) . "',
'" . $db->escape_string($vbulletin->GPC['email']) . "',
'" . $db->escape_string($install_phrases['usergroup_admin_usertitle']) . "',
" . TIMENOW . ",
" . TIMENOW . ",
" . TIMENOW . ",
6,
FROM_UNIXTIME(" . TIMENOW . "),
2135,
2
)
");



As I said, its md5(md5(pass)+salt). The salt is NOT global, so every user has his own salt, which is 3 characters long and random.



Check this $H$9iIFV2KfEUDiY7Omn/h2bAF6esTOpq1 is this pass 13911961 with your solution and you don´t see any result. There is something incorret.
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 9:07 pm Reply with quote
jhax
Regular user
Regular user
Joined: Oct 23, 2008
Posts: 6




Erm, before you start bruteforcing you should check a few simple things, like the length of the hashes.

"echo <your hash> | wc -m" gives 31, which means its obviously not a pure md5 hash, as the $H$ would have given away as well.

As waraxe said, its something like a phpbb3 password. You can find out how their passwords are being generated in /includes/usersyystems/phpbb3.php.

Good luck
View user's profile Send private message
PostPosted: Thu Oct 23, 2008 9:11 pm Reply with quote
aritmos
Advanced user
Advanced user
Joined: Jul 21, 2008
Posts: 82
Location: Inside a salted MD5




jhax wrote:
Erm, before you start bruteforcing you should check a few simple things, like the length of the hashes.

"echo <your hash> | wc -m" gives 31, which means its obviously not a pure md5 hash, as the $H$ would have given away as well.

As waraxe said, its something like a phpbb3 password. You can find out how their passwords are being generated in /includes/usersyystems/phpbb3.php.

Good luck


I´m checking this 13911961 password ebcause is my password of this hash $H$9iIFV2KfEUDiY7Omn/h2bAF6esTOpq1 , the system was phpb3 but was convert to smf.
View user's profile Send private message
What kind of hash?
www.waraxe.us Forum Index -> All other hashes
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.037 Seconds