diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2021-03-28 10:59:46 +0200 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2021-06-24 21:43:07 +0200 |
commit | e8b8b133c685e7b09f672016d117c7d8b49e70b1 (patch) | |
tree | af7198366d0d36949aeb5e57ca6c229d9d8b6591 /src | |
parent | 4a2bd5dc2f157c50b7e4e7491eac1c930efd2100 (diff) |
rda
(cherry picked from commit a6da9c67acaee699616516be141d600cc178a633)
Diffstat (limited to 'src')
-rw-r--r-- | src/src/rda.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/src/rda.c b/src/src/rda.c index fb3714ea2..3b458430a 100644 --- a/src/src/rda.c +++ b/src/src/rda.c @@ -179,10 +179,8 @@ struct stat statbuf; /* Reading a file is a form of expansion; we wish to deny attackers the capability to specify the file name. */ -if (is_tainted(filename)) +if (*error = is_tainted2(filename, 0, "Tainted name '%s' for file read not permitted\n", filename)) { - *error = string_sprintf("Tainted name '%s' for file read not permitted\n", - filename); *yield = FF_ERROR; return NULL; } |