1
|
# rlogin - remote login - RFC 1282
|
2
|
# Pattern attributes: ok fast fast
|
3
|
# Protocol groups: remote_access ietf_rfc_documented
|
4
|
# Wiki: http://www.protocolinfo.org/wiki/Rlogin
|
5
|
# Copyright (C) 2008 Matthew Strait, Ethan Sommer; See ../LICENSE
|
6
|
#
|
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
|