Skip to content
Permalink
ffe189f49f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Remove the obsolete tools rexec, rsh, rlogin, rcp, talk and ifconfig.

Note, that rexec, rsh, rlogin and rcp were installed setuid-root, so
removing them decreases our attack surface.
2 contributors

Users who have contributed to this file

@wwwutz @donald
executable file 47 lines (36 sloc) 897 Bytes
#!/usr/bin/env beesh
# BEE_VERSION inetutils-2.5-0
# SRCURL[0]="https://ftp.gnu.org/gnu/inetutils/inetutils-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/9e5a6dfd2d794dc056a770e8ad4a9263/inetutils-2.5.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_patch_post() {
sed -i -e 's/SUIDMODE = -o root/SUIDMODE =/' src/Makefile.am
sed -i -e 's/SUIDMODE = -o root/SUIDMODE =/' ping/Makefile.am
automake
}
mee_configure() {
bee_configure \
--disable-logger \
--disable-traceroute \
--disable-servers \
--disable-rexec \
--disable-rsh \
--disable-rlogin \
--disable-rcp \
--disable-talk \
--disable-ifconfig
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}