WebEdition CMS - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Feature Requests (https://hashcat.net/forum/forum-7.html) +--- Thread: WebEdition CMS (/thread-1766.html) |
WebEdition CMS - NeonFlash - 11-18-2012 Hi, I noticed that there is no implementation of a hashing algorithm used in WebEdition CMS yet. You can download the sourcecode from here: Code: http://www.webedition.org/de/webedition-cms/ This CMS is often used by German Websites. There are 2 options available to download and install this CMS. In order to study the source code, you can go for the Manual Installation option here: Code: http://sourceforge.net/projects/webedition/files/webEdition/6.2.1.0/webEdition_6210.tar.gz/download I studied the source code, and after sometime I was able to figure out that the file, we_session.inc.php in the path: /we/include/ has the information specific to the hashing algorithm. On line 43 of the code we have, Code: $useSalt = $DB_WE->f("UseSalt"); So, the hashing algorithm works as follows: Based on the value of the useSalt field in database, it will decide whether to use the salted version of password or not. The salted version will use the username as a salt. The algorithm becomes: md5($p,md5($s)) This algorithm can be significantly accelerated on the GPU and it would be great to have it implemented in oclhashcat-plus RE: WebEdition CMS - epixoip - 11-19-2012 In the interim you can manually md5 all of your usernames and then just crack them with -m 10. Code: epixoip@token:~/oclHashcat-plus-0.09$ printf epixoip | md5sum RE: WebEdition CMS - atom - 11-19-2012 If there is more demand I will add it to oclHashcat-plus. Please use epixoip's way in the meanwhile. |