Waraxe IT Security Portal
Login or Register
June 18, 2025
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: 65
Members: 0
Total: 65
Full disclosure
: "Glass Cage" – Zero-Click iMessage ? Persistent iOS Compromise + Bricking (CVE-2025-24085 / 24201, CNVD-2025-07885)
SEC Consult SA-20250612-0 :: Reflected Cross-Site Scripting in ONLYOFFICE Docs (DocumentServer)
SEC Consult SA-20250611-0 :: Undocumented Root Shell Access on SIMCom SIM7600G Modem
Call for Applications: ERCIM STM WG 2025 Award for the Best Ph.D. Thesis on Security and Trust Management (July 31, 2025)
SEC Consult SA-20250604-0 :: Local Privilege Escalation and Default Credentials in INDAMED - MEDICAL OFFICE (Medical practice management) Demo version
Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Defense in depth -- the Microsoft way (part 89): user grouppolicies don't deserve tamper protection
CVE-2025-45542: Time-Based Blind SQL Injection in CloudClassroom PHP Project v1.0
ERPNext v15.53.1 Stored XSS in bio Field Allows Arbitrary Script Execution in Profile Page
ERPNext v15.53.1 Stored XSS in user_image Field Allows Script Execution via Injected Image Path
Local information disclosure in apport and systemd-coredump
Stored XSS via File Upload - adaptcmsv3.0.3
IDOR "Change Password" Functionality - adaptcmsv3.0.3
Stored XSS "Send Message" Functionality - adaptcmsv3.0.3
Authenticated File Upload to RCE - adaptcmsv3.0.3
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



PCWizardHub - Helping you fix, build, and optimize your PC life
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.036 Seconds