1
|
# Finger - User information server - RFC 1288
|
2
|
# Pattern attributes: good slow slow undermatch overmatch
|
3
|
# Protocol groups: ietf_draft_standard
|
4
|
# Wiki: http://www.protocolinfo.org/wiki/Finger
|
5
|
# Copyright (C) 2008 Matthew Strait, Ethan Sommer; See ../LICENSE
|
6
|
#
|
7
|
# Usually runs on port 79
|
8
|
#
|
9
|
# This pattern is lightly tested.
|
10
|
|
11
|
finger
|
12
|
# The first matches the client request, which should look like a username.
|
13
|
# The second matches the usual UNIX reply (but remember that they are
|
14
|
# allowed to say whatever they want)
|
15
|
^[a-z][a-z0-9\-_]+|login: [\x09-\x0d -~]* name: [\x09-\x0d -~]* Directory:
|