All Projects → borfast → Arrispwgen

borfast / Arrispwgen

Licence: mit
A "password of the day" generator for Arris cable modems.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Arrispwgen

Allyourpasswords
The offline macOS password manager
Stars: ✭ 59 (-59.59%)
Mutual labels:  password-generator
Password Guessing Framework
A Framework for Comparing Password Guessing Strategies
Stars: ✭ 104 (-28.77%)
Mutual labels:  password-generator
Passwords
A simple, yet feature rich password manager for Nextcloud
Stars: ✭ 134 (-8.22%)
Mutual labels:  password-generator
Diceware
Generate secure passwords you can actually remember!
Stars: ✭ 66 (-54.79%)
Mutual labels:  password-generator
Pfp
Manage your passwords easily and securely, via browser extension for Firefox, Chrome, Opera
Stars: ✭ 77 (-47.26%)
Mutual labels:  password-generator
Spg
1Password's Strong Password Generator - Go package
Stars: ✭ 111 (-23.97%)
Mutual labels:  password-generator
Eyeware
'The Lord of the Rings'-based diceware (passphrase generator) list
Stars: ✭ 13 (-91.1%)
Mutual labels:  password-generator
Android Password Store
Android application compatible with ZX2C4's Pass command line application
Stars: ✭ 1,912 (+1209.59%)
Mutual labels:  password-generator
Passwd
A beautiful, cross-platform, encrypted password manager 🔐
Stars: ✭ 82 (-43.84%)
Mutual labels:  password-generator
Pwgen
macOS password generator
Stars: ✭ 130 (-10.96%)
Mutual labels:  password-generator
Pgen
Command-line passphrase generator
Stars: ✭ 68 (-53.42%)
Mutual labels:  password-generator
Go Diceware
Golang library for generating passphrases via the diceware algorithm.
Stars: ✭ 69 (-52.74%)
Mutual labels:  password-generator
Dpg
The Deterministic Password Generator
Stars: ✭ 112 (-23.29%)
Mutual labels:  password-generator
Masterpassword
Project moved to https://gitlab.com/spectre.app
Stars: ✭ 1,122 (+668.49%)
Mutual labels:  password-generator
Passcards
A 1Password-compatible command-line and web-based password manager
Stars: ✭ 134 (-8.22%)
Mutual labels:  password-generator
Lyricpass
Password wordlist generator using song lyrics for targeted bruteforce audits / attacks. Useful for penetration testing or security research.
Stars: ✭ 58 (-60.27%)
Mutual labels:  password-generator
Openyolo Android
Android protocol for credential exchange and update - "You Only Login Once"
Stars: ✭ 110 (-24.66%)
Mutual labels:  password-generator
Pydictor
A powerful and useful hacker dictionary builder for a brute-force attack
Stars: ✭ 2,055 (+1307.53%)
Mutual labels:  password-generator
Passphraseme
A quick and simple cryptographically secure script to generate high entropy passphrases using EFF's wordlists
Stars: ✭ 135 (-7.53%)
Mutual labels:  password-generator
Snopf
snopf USB password token
Stars: ✭ 113 (-22.6%)
Mutual labels:  password-generator

Arris Password of the Day Generator


PLEASE READ THIS!

1 - In the past few years, some internet service providers have been changing their modem configurations in ways that prevent this tool from working. If it doesn't work with your modem even though it is in the supported modems list, I'm afraid there's nothing I can do about it.

2 - I am not Spanish or from Latin America. Please don't assume I can speak Spanish or that I have to reply to you in Spanish.


NPM Version License Build Status Scrutinizer Code Quality ko-fi

Do you need an Arris modem password? Are you stuck with your Arris modem, in a message that says "in order to access advanced features you must enter the password of the day"? Then you came to the right place!

Description

This is the library that implements the Arris password of the day generator for various Arris cable modems.

Unless you want to help with the code or use it in your own project, you are probably just interested in the online generator. You may also want to check the CLI or the Android app (which is also open source).

For a list of supported modems, troubleshooting options and more information, please visit the help page.

How to use

Install with npm install @borfast/arrispwgen.

The API consists of only two functions: generate(), to generate a single password for a given date, and generate_multi(), to generate multiple passwords for a range of dates.

generate() has one required parameter and one optional parameter:

  • date (required): a Date object representing the date for which a password should be generated;
  • seed (optional): a string to be used as the seed for the password generator.

It returns a string which is the password for the given date.

generate_multi() has two required parameters and one optional parameter:

  • startdate (required): a Date object representing the first date for which a password should be generated;
  • enddate (required): a Date object representing the last date for which a password should be generated;
  • seed (optional): a string to be used as the seed for the password generator.

It returns an array of objects with two fields: date, a Date object, and password, the password for the corresponding date.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].