npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hashdog

v1.5.5

Published

Break MD5/SHA1/SHA256/SHA512 hashes using wordlists, password lists and string permutations

Downloads

41

Readme

hashdog

Break MD5/SHA1/SHA256/SHA512 hashes using wordlists, password lists and string permutations.

Written in ES6/ES2015, and runs multiple forked processes for better performance. Using IPC calls in the cluster. Three different strategies are used for finding the correct hash. The first method is a english dictionary, along with a few word variations. The second path is using common passwords, while the third strategy is a bruteforce approach. The approach in this case is standard sequential recursive string permutation.

Build Status NPM Version

CLI

Install hashdog globally, sudo npm install hashdog -g. Root permissions needed to extract a data archive (used by the dictionary worker).

Run Hashdog in your terminal (run with no arguments for help screen):

hashdog 6d86ca3c74636711371637c2d73ec3e48dd1737a

node

Import and instantiate Hashdog (you might need to transpile the codebase from ES6 due to lack of support for modules and other features):

import {HashDog} from 'hashdog';
let hashDog = new HashDog({hash: '2655dd21148f2433763d313407d5d820', type: 'MD5', length: 8, chars: 'AaBbCcDdEeFf'});
hashDog.on('success', (data) => {
    console.log(data.hash + ':' + data.string);
});

Example output:

hashdog by @logotype. Copyright © 2017. Released under the MIT license.
Hash: 6d86ca3c74636711371637c2d73ec3e48dd1737a type: SHA1 characters: ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvwxyz0123456789
Current rate combined..: 359.47 kHash/s

PROCESS 1: <Dictionary> Words
  Status...............: Unsuccessful
  Uptime...............: 2.92 seconds
  Key length...........: 10
  Keys (tried).........: 235,886
  Keys (total).........: 235,886
  Percentage...........: 100%
  Rate.................: 93.36 kHash/s
  String...............:
PROCESS 2: <Dictionary> Passwords
  Status...............: Working
  Uptime...............: 57.68 seconds
  Key length...........: 9
  Keys (tried).........: 9,453,892
  Keys (total).........: 14,344,391
  Percentage...........: 65.91%
  Rate.................: 159.78 kHash/s
  String...............: brittan90
PROCESS 3: <Bruteforce> Permutations
  Status...............: SUCCESS
  Uptime...............: 57.86 seconds
  Key length...........: 4
  Keys (tried).........: 11,545,148
  Keys (total).........: 13,845,841
  Percentage...........: 83.11%
  Rate.................: 199.69 kHash/s
  String...............: tr1z
----------------------------------------------------------------------
Started................: Fri, 9 Oct 2015 08:23:56 GMT
Ended..................: Fri, 9 Oct 2015 08:24:54 GMT
The process took 57.88 seconds.
6d86ca3c74636711371637c2d73ec3e48dd1737a : tr1z

Copyright and license

Copyright © 2017 logotype

Author: Victor Norgren

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Built with IntelliJ IDEA Open Source License

The people at JetBrains supports the Open Source community by offering free licenses. Check out JetBrains Open Source to apply for your project. Thank you!