📄 rexecd.texi
字号:
@node rexecd@chapter rexecd@cindex rexecd@command{Rexecd} is the server for the rexec(3) routine. The server providesremote execution facilities with authentication based on user names andpasswords.@command{Rexecd} listens for service requests at the port indicated in the``exec'' service specification; see services(5). When a service request isreceived the following protocol is initiated:@enumerate@itemThe server reads characters from the socket up to a NUL (`\0') byte.The resultant string is interpreted as an ASCII number, base 10.@itemIf the number received in step 1 is non-zero, it is interpreted asthe port number of a secondary stream to be used for the stderr. Asecond connection is then created to the specified port on theclient's machine.@itemA NUL terminated user name of at most 16 characters is retrieved onthe initial socket.@itemA NUL terminated, unencrypted password of at most 16 characters isretrieved on the initial socket.@itemA NUL terminated command to be passed to a shell is retrieved on theinitial socket. The length of the command is limited by the upperbound on the size of the system's argument list.@item@command{Rexecd} then validates the user as is done at login time and, if theauthentication was successful, changes to the user's home directory,and establishes the user and group protections of the user. If anyof these steps fail the connection is aborted with a diagnostic messagereturned.@itemA NUL byte is returned on the initial socket and the command line ispassed to the normal login shell of the user. The shell inheritsthe network connections established by rexecd.@end enumerate@section DiagnosticsExcept for the last one listed below, all diagnostic messages are returned onthe initial socket, after which any network connections are closed. An erroris indicated by a leading byte with a value of 1 (0 is returned in step 7above upon successful completion of all the steps prior to the commandexecution).@table @samp@item username too longThe name is longer than 16 characters.@item password too longThe password is longer than 16 characters.@item command too longThe command line passed exceeds the size of the argument list (asconfigured into the system).@item Login incorrect.No password file entry for the user name existed.@item Password incorrect.The wrong password was supplied.@item No remote directory.The chdir command to the home directory failed.@item Try again.A fork by the server failed.@item <shellname>: ...The user's login shell could not be started. This message is returned onthe connection associated with the stderr, and is not@end tableIndicating ``Login incorrect'' as opposed to ``Password incorrect'' is asecurity breach which allows people to probe a system for users with nullpasswords.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -