Use start_with? instead of [0]
parent
f353df952c
commit
18286ca2f7
|
@ -90,7 +90,7 @@ class MetasploitModule < Msf::Auxiliary
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
fail_with(Failure::BadConfig, 'TARGET_FILE must be an absolute path (eg. /etc/passwd).') unless datastore['TARGET_FILE'][0] == '/'
|
fail_with(Failure::BadConfig, 'TARGET_FILE must be an absolute path (eg. /etc/passwd).') unless datastore['TARGET_FILE'].start_with? == '/'
|
||||||
|
|
||||||
|
|
||||||
print_status "Requesting file #{datastore['TARGET_FILE']}"
|
print_status "Requesting file #{datastore['TARGET_FILE']}"
|
||||||
|
|
Loading…
Reference in New Issue