1 |
4ae45b10
|
Ermal Luçi
|
# rlogin - remote login - RFC 1282
|
2 |
66f2dd0e
|
Ermal Lu?i
|
# Pattern attributes: ok fast fast
|
3 |
4ae45b10
|
Ermal Luçi
|
# Protocol groups: remote_access ietf_rfc_documented
|
4 |
|
|
# Wiki: http://www.protocolinfo.org/wiki/Rlogin
|
5 |
66f2dd0e
|
Ermal Lu?i
|
# Copyright (C) 2008 Matthew Strait, Ethan Sommer; See ../LICENSE
|
6 |
4ae45b10
|
Ermal Luçi
|
#
|
7 |
|
|
# usually runs on port 443
|
8 |
|
|
#
|
9 |
|
|
# This pattern is untested.
|
10 |
|
|
|
11 |
|
|
rlogin
|
12 |
|
|
# At least three characters (user name, user name, terminal type),
|
13 |
|
|
# the first of which could be the first character of a user name, a
|
14 |
|
|
# slash, then a terminal speed. (Assumes that usernames and terminal
|
15 |
|
|
# types are alphanumeric only. I'm sure there are usernames like
|
16 |
|
|
# "straitm-47" out there, but it's not common.) All terminal speeds
|
17 |
|
|
# I know of end in two zeros and are between 3 and 6 digits long.
|
18 |
|
|
# This pattern is uncomfortably general.
|
19 |
|
|
^[a-z][a-z0-9][a-z0-9]+/[1-9][0-9]?[0-9]?[0-9]?00
|