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.
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!
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.
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): aDate
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): aDate
object representing the first date for which a password should be generated;enddate
(required): aDate
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.