aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-08-05 02:08:23 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-05 02:08:23 +0200
commitfeb79e8742eb3cef211804dadcc7f3ddfd154c72 (patch)
treea6a081240e03c7acffe5c1c4ff16e2f921a63298
parentff53bee72300ba97c645404a64c7091991ffa110 (diff)
downloadbusybox-w32-feb79e8742eb3cef211804dadcc7f3ddfd154c72.tar.gz
busybox-w32-feb79e8742eb3cef211804dadcc7f3ddfd154c72.tar.bz2
busybox-w32-feb79e8742eb3cef211804dadcc7f3ddfd154c72.zip
cryptpw, mkpasswd: make them NOEXEC
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--NOFORK_NOEXEC.lst4
-rw-r--r--loginutils/cryptpw.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/NOFORK_NOEXEC.lst b/NOFORK_NOEXEC.lst
index 1d23ad962..1bb571b9c 100644
--- a/NOFORK_NOEXEC.lst
+++ b/NOFORK_NOEXEC.lst
@@ -79,7 +79,7 @@ cp - noexec. runner
79cpio - runner 79cpio - runner
80crond - daemon 80crond - daemon
81crontab 0 leaks: open+xasprintf 81crontab 0 leaks: open+xasprintf
82cryptpw - changes state: with --password-fd=N, moves N to stdin. Also, "rare" category. noexec candidate. 82cryptpw - noexec. changes state: with --password-fd=N, moves N to stdin
83cttyhack - noexec. spawner 83cttyhack - noexec. spawner
84cut - noexec. runner 84cut - noexec. runner
85date - noexec. nofork candidate(needs to stop messing up env, free xasprintf result, not use xfuncs after xasprintf) 85date - noexec. nofork candidate(needs to stop messing up env, free xasprintf result, not use xfuncs after xasprintf)
@@ -229,7 +229,7 @@ mkfs.ext2 - needs ^C
229mkfs.minix - needs ^C 229mkfs.minix - needs ^C
230mkfs.vfat - needs ^C 230mkfs.vfat - needs ^C
231mknod - noexec 231mknod - noexec
232mkpasswd - changes state: with --password-fd=N, moves N to stdin. Also, "rare" category. noexec candidate. 232mkpasswd - noexec. changes state: with --password-fd=N, moves N to stdin
233mkswap - needs ^C 233mkswap - needs ^C
234mktemp - noexec. leaks: xstrdup+concat_path_file 234mktemp - noexec. leaks: xstrdup+concat_path_file
235modinfo - noexec 235modinfo - noexec
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c
index f8906c59a..136c619bb 100644
--- a/loginutils/cryptpw.c
+++ b/loginutils/cryptpw.c
@@ -24,9 +24,9 @@
24//config: using the given salt. Debian has this utility under mkpasswd 24//config: using the given salt. Debian has this utility under mkpasswd
25//config: name. Busybox provides mkpasswd as an alias for cryptpw. 25//config: name. Busybox provides mkpasswd as an alias for cryptpw.
26 26
27//applet:IF_CRYPTPW(APPLET(cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP)) 27//applet:IF_CRYPTPW( APPLET_NOEXEC(cryptpw, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, cryptpw))
28// APPLET_ODDNAME:name main location suid_type help 28// APPLET_NOEXEC:name main location suid_type help
29//applet:IF_MKPASSWD(APPLET_ODDNAME(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, cryptpw)) 29//applet:IF_MKPASSWD(APPLET_NOEXEC(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, cryptpw))
30 30
31//kbuild:lib-$(CONFIG_CRYPTPW) += cryptpw.o 31//kbuild:lib-$(CONFIG_CRYPTPW) += cryptpw.o
32//kbuild:lib-$(CONFIG_MKPASSWD) += cryptpw.o 32//kbuild:lib-$(CONFIG_MKPASSWD) += cryptpw.o