6 lines
172 B
Bash
Executable File
6 lines
172 B
Bash
Executable File
#!/bin/sh
|
|
echo "[*] Deleting old rfi.txt..."
|
|
rm rfi.txt
|
|
echo "[*] Downloading latest rfi.txt..."
|
|
wget "https://fuzzdb.googlecode.com/svn/trunk/attack-payloads/rfi/rfi.txt"
|