Code Monkey home page Code Monkey logo

crackstation's Introduction

CrackStation, a Decrypter implementation

A decryption library.

Overview

CrackStation is a Swift cryptography package that supports cracking SHA hashes. The library takes an SHA hash as input, then search it in pre-computed look up table. If the hash is found, it returns the corresponding password, otherwise it returns nil.

Currently, the library only supports cracking SHA-1 or hashes of [A-Za-z0-9?!]{1,2,3} and unsalted passwords.

Mission Statement

This library is primarily meant to demonstrate the vulnerability of password storage systems using non-salted hashing, hence encourage authentication system implementors to search for better solutions. That would help improve the cyberspace security in general.

Installation

Swift Package Manager

The Swift Package Manager is "a tool for managing the distribution of Swift code. It's integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies."

Once you have your Swift package manager set up, add CrackStation to the list of dependencies in your Package.swift file

dependencies: [
    .package(url: "https://github.com/JohnnyBuiJB/CrackStation.git", .upToNextMajor(from: "1.1.0"))
]

Usage

The API

required init()

  • Description: initialize the crack station
  • Parameter: none
  • Throws: none
  • Returns: none

func decrypt(shaHash: String) -> String?

  • Description: crack the provided hash shaHash
  • Parameter:
    • shaHash: String (input): hashed to be decrypted
  • Throws: none
  • Returns: the corresponding password if the function succeeds, otherwise return nil

An example?

import CrackStation

let cs = CrackStation()
let password = cs.decrypt(shaHash:hash)

Release

The current newest release is version 1.0.0.

Author

Vy Bui, 934370552, [email protected]

crackstation's People

Contributors

johnnybuijb avatar vybuiosu avatar

Watchers

Will Braynen avatar Rohit Nair avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.