Waraxe IT Security Portal
Login or Register
August 31, 2026
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: 577
Members: 0
Total: 577
Full disclosure
CyberDanube Security Research 20260611-0 | Multiple Denial of Service Vulnerabilities in Dahua IPC/SD/NVR/XVR/EVS/VTO/VT H/ASI/TPC Camera Series
Multiple Integer Overflows in U-Boot Filesystem Parsing(CVE-2025-70290 through CVE-2025-70293)
[ADVISORY] Multiple Integer Overflows in U-Boot FilesystemParsing (CVE-2025-70290 through CVE-2025-70293)
JSON Deserialiser Unconstrained Resource Consumption Proof ofConcept
Dovecot Security Advisory 3/2026
FD - Half-click unauthenticated remote code execution on Horde Groupware IMP (from a stored XSS)
[NotCVE-2026-0013] CHIRP Kenwood ITM Driver Eval Injection Allows Arbitrary Code Execution via Crafted Radio File
[NotCVE-2026-0012] EmpManageX Hardcoded Administrative Credentials in Login API Allow Full Access to Employee Records
[NotCVE-2026-0011] Nmap 7.99 and Earlier nselib/packet.lua Zero-Length TCP Option Infinite Loop Allows Remote Denial of Service
[NotCVE-2026-0010] Barrier 2.4.0 for Windows Unauthenticated IPC Command Execution Allows Local Privilege Escalation to SYSTEM
[NotCVE-2026-0009] NitroShare Desktop 0.3.4 Path Traversal Allows LAN-Adjacent Arbitrary File Write
Escargot v4.3.0-214-gfaee4437 Unauthenticated Remote Debugger Allows Arbitrary JavaScript Evaluation and Local File Disclosure
Escargot v4.3.0-214-gfaee4437 OS Command Injection in Crash Handler via Unsanitized Executable Path
Escargot v4.3.0-214-gfaee4437 Debugger WebSocket Off-by-One Stack Buffer Overflow
UltraJSON v5.13.0-6-g733f9e1 Length-Boundary Violation Causes Out-of-Bounds Read During Incomplete JSON Parsing
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Hash related information -> never saw such a hash before! HELP!
Post new topicReply to topic View previous topic :: View next topic
never saw such a hash before! HELP!
PostPosted: Sat Nov 24, 2007 8:13 pm Reply with quote
iiDo
Regular user
Regular user
Joined: Nov 24, 2007
Posts: 19




user_password: "$H$9m51pcH2EndaSm8rIAwWoF2YjAgpof0"

has anyone a idea how to crack that hash?

thx people!
View user's profile Send private message
Re: never saw such a hash before! HELP!
PostPosted: Sat Nov 24, 2007 9:01 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




iiDo wrote:
user_password: "$H$9m51pcH2EndaSm8rIAwWoF2YjAgpof0"

has anyone a idea how to crack that hash?

thx people!


Something, I found from phpbb dev forum:

http://www.phpbb.com/community/viewtopic.php?f=71&t=585387

Code:

by ameeck on Tue Oct 16, 2007 3:37 pm

Yeah..I got this hash:
$H$7rssbSMgLmkpWoRKZMdk6ERZ4Fhrkq1


So gimme some time, i will find answer soon Smile

... more info ...

Code:

phpBB3 Release Candidate 7 (RC7) released

Postby Acyd Burn on Mon Oct 15, 2007 12:08 am

Hello,

We are very pleased to announce the availability of the phpBB3 RC7 package, the "We are sorry and love our support team" edition. This release fixes some critical issues which arised with the recently released Release Candidate 6, basically fixing some bbcode problems as well as missing form tokens. On the downloads page we provide two update packages this time, one for going from RC5 to RC7 and one for going from RC6 to RC7.

This release is mostly the outcome of an external security audit performed by SektionEins. All items tagged as [Sec] were found by the company doing the audit and revealed some fundamental problems we were able to fix. We are proud that the audit revealed no sql injection vulnerability or critical command execution vulnerabilities.

...

[Sec] New password hashing mechanism for storing passwords (#i42)


So this means end of rainbow cracking against phpbb password hashes and needs new algorithm to password crackers I guess Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun Nov 25, 2007 4:43 am Reply with quote
iiDo
Regular user
Regular user
Joined: Nov 24, 2007
Posts: 19




ok and where is the algorithm of such a hash saved and how to crack i then?

i think this information could be useful for anyone here!!

thx!
View user's profile Send private message
PostPosted: Sun Nov 25, 2007 2:45 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




iiDo wrote:
ok and where is the algorithm of such a hash saved and how to crack i then?

i think this information could be useful for anyone here!!

thx!


This is interesting situation. Because noone else seems to be noticed this huge password storing algo change in phpbb. And when phpbb will go from RC7 to phpbb 3.0 and many websites will upgrade, then suddenly lots of people will realize - oops, we dont have ANY password cracking programs, able to crack those phpbb hashes Smile
Sure, it is easy to write simple php script for bruteforce or wordlist cracking, but it will lack performance. So what we need, is cracking program written in C or Delphi Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun Nov 25, 2007 8:18 pm Reply with quote
waraxe
Site admin
Site admin
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




More info about phpbb 3.0.RC7 hashing algo.

It's f***ing overkill:

Code:

if (PHP_VERSION >= 5)
{
$hash = md5($salt . $password, true);
do
{
$hash = md5($hash . $password, true);
}
while (--$count);
}
else
{
$hash = pack('H*', md5($salt . $password));
do
{
$hash = pack('H*', md5($hash . $password));
}
while (--$count);
}



... where default count seems to be 2048 Exclamation
So casual md5 bruteforce and wordlist cracking will be > 2000 times slower Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Sun Nov 25, 2007 10:15 pm Reply with quote
iiDo
Regular user
Regular user
Joined: Nov 24, 2007
Posts: 19




i wont brute it i tryin to find a why to get the algorithm and simple "compare" it and then i will get the md5
i know that there is a way!
View user's profile Send private message
never saw such a hash before! HELP!
www.waraxe.us Forum Index -> Hash related information
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.030 Seconds