Coder Social home page Coder Social logo

c7decrypt's Introduction

C7Decrypt

Build Status Dependency Status Code Quality

A Ruby-based implementation of a Cisco Type-7 Password Encryptor/Decryptor

Key Benefits

  • Written in Ruby - First and only Cisco Type-7 implementation in Ruby that I know of.
  • Minimal/No Dependancies - Uses native Ruby to do it's work, no heavy dependancies.
  • Not Just a Script - Implementation is portable for use in another project or for automation of tasks.
  • Simple - It's a pretty small project so the interfaces are simple and easy to use.
  • Encrypt & Decrypt - Supports both encryption (with seed control) and decryption operations.

Setup

To install, type

gem install c7decrypt

To use, just require

require 'c7decrypt'

Example Usage(s)

Get an instance of C7Decrypt

>> cd = C7Decrypt.new()
=> #<C7Decrypt:0x11b1700>

Decrypt A Single Encrypted Passwords

>> cd.decrypt("060506324F41")
=> "cisco"

Decrypt Array of Encrypted Passwords

>> encrypted_hashes = ["060506324F41", "0822455D0A16"]
=> ["060506324F41", "0822455D0A16"]
>> cd.decrypt_array(encrypted_hashes)
=> ["cisco", "cisco"]

Decrypt Encrypted Passwords from Config

>> cd.decrypt_config("cisco_config.txt")
=> ["cisco", "Password1", "admin"]

Encrypt A Single Plaintext Password

>> cd.encrypt("cisco")
=> "02050D480809"

Encrypt A Single Plaintext Password w/ Explicit Seed

>> cd.encrypt("cisco", 6)
=> "060506324F41"

Encrypt An Array of Plaintext Passwords

>> passwords = ["cisco", "password"]
=> ["cisco", "password"]
>> cd.encrypt_array(passwords)
=> ["02050D480809", "021605481811003348"]

Rubies Supported

This project is integrated with travis-ci and is regularly tested to work with the following rubies:

To checkout the current build status for these rubies, click here.

Contributing

If you're interesting contributing to this project, please see CONTRIBUTING.md

Credits

The decryption code in this project was inspired by Daren Matthew's cdecrypt.pl tool, which performs Cisco Type-7 decrypt operations in Perl.

Daren's tool can be found here in a blog post he wrote a while back:

Deobfuscating Cisco Type 7 Passwords

The encryption code in this project was inspired by a blog post at Moonie.com, which performs Cisco Type-7 decryptions and encryption operations in Perl.

The moonie.com blog post, which contains the original perl source can be found here:

Cisco (type 7) password decryption and encryption with Perl

c7decrypt's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

firefalc0n

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.