]> Cypherpunks repositories - nncp.git/commit
Prevent path traversal during freq/file
authorEugene Medvedev <rn3aoh.g@gmail.com>
Fri, 19 Sep 2025 13:12:18 +0000 (16:12 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 19 Sep 2025 13:50:14 +0000 (16:50 +0300)
commitf2df8e3ea21ae25be03fd4dc87a284cc44619dc4
tree8aa9311704f6dbbab797653e5a5bba5af4a783cc
parent674278b3db2edccf8da53aff4bd6458f146507b9
Prevent path traversal during freq/file

As it currently stands, NNCP is vulnerable to path traversal attacks with
freq and file functions: Despite the requirement for both to supply full path
in configuration, both types of packets will accept and act upon paths containing
"..". Most obviously, this allows one to request any file NNCP has access to,
like its own configuration file with the private keys in it.
Likewise, a sent file can break out of the incoming directory in the same manner
and be written anywhere on the system that the user can write to.

This patch is my take on dealing with this by by limiting path traversal to
below the configured full path. It does nothing about, e.g., symlinks,
and I'm not sure anything should be done about those.
src/toss.go