Support for "password:" password prompts
See original GitHub issueFor our network devices, we use TACACS for network access authentication, which uses a custom password prompt to differentiate from logging in with a local account. In other words, here’s the local password prompt:
===============================
TOS
===============================
Password:
and here’s the network password prompt:
===============================
TOS
===============================
Ops password:
This can be supported if you update the following line in NewSessionBase.cs from:
if (prompt.Request.Contains("Password"))
to
if (prompt.Request.Contains("assword"))
I’m new to Github so I don’t know what the protocol is, I didn’t want to make the change myself, so I figured I would submit it as an issue and get your thoughts on it. Thanks!
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:5 (2 by maintainers)
Top GitHub Comments
Will take a look, might need to make it a parameter with a default value.
Any progress on that guys? Are you still working on any solution to that? I have the same issue on my CentOS. Thanks in advance