mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 01:04:06 +01:00
Do not permit periods in session names (colons are already banned). From
J Raynor.
This commit is contained in:
parent
df680d7257
commit
9ee93b3ea3
@ -175,11 +175,11 @@ session_destroy(struct session *s)
|
||||
RB_INSERT(sessions, &dead_sessions, s);
|
||||
}
|
||||
|
||||
/* Check a session name is valid: not empty and no colons. */
|
||||
/* Check a session name is valid: not empty and no colons or periods. */
|
||||
int
|
||||
session_check_name(const char *name)
|
||||
{
|
||||
return (*name != '\0' && strchr(name, ':') == NULL);
|
||||
return (*name != '\0' && name[strcspn(name, ":.")] == '\0');
|
||||
}
|
||||
|
||||
/* Update session active time. */
|
||||
|
Loading…
Reference in New Issue
Block a user