Mysites

From StickMUD
Revision as of 09:04, 1 December 2021 by Tamarindo (talk | contribs) (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

mysites - Login only from certain connections.

Description

Restrict the connection sites that one could login from for the purpose of protecting ones account from brute force password guessing attacks. Where possible, add both the domain name (like aol.com) and the numerical IP address space (like 205.188.*.*) to patterns. Ask (social engineer) an admin for help if you get locked out mistakenly.

Syntax
Command Description
mysites Display current site settings.
mysites list [player] Display current site settings. Coders may add <player>.
mysites add <pattern> Add <pattern> to site settings.
mysites del <number> Remove <number> pattern from site settings.
mysites test Test if login is possible given ones current connected site.
mysites clear Remove ones entire pattern list (no restrictions).
mysites enable Enable mysites restrictions based on ones patterns.
mysites disable Disable mysites restrictions without erasings ones patterns.

Examples

> mysites add .*\.aol\.com$

Allows access from any host from .aol.com

> mysites add aol.com

Allows access from any site that looks like aol.com, but allows also from newaol.com.uk, bigaol-commercial.it, etc.

> mysites add ^205\.188\..*

Allows access from 205.188.*.*

> mysites add 205.188

Allows access from 205.188.*.*, *.205.188.*, *.*.205.188, spooky-205-188.aol.com, etc.

> mysites del 2

Removes the pattern #2 (shown by the list option)

> mysites del .*\.aol\.com$

Removes the pattern .*\.aol\.com$

> mysites test

Try to connect from ones current site, testing against all patterns.

See Also

password, quit, regexp, save