You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we are using wget to download wordlists while some people may use curl only.
file 'data/wordlists/raft-small-directories.txt' => 'data/wordlists' do
sh 'wget -O data/wordlists/raft-small-directories.txt https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Web-Content/raft-small-directories.txt'
end
I think we could check if wget is installed and if not use curl.
The text was updated successfully, but these errors were encountered:
We might want to think about creating our own set of rake helper methods (e.g. ronin/core/rake) that defines methods such as download so we don't have to type Ronin::Core::System.download.
We might want to think about creating our own set of rake helper methods (e.g. ronin/core/rake) that defines methods such as download so we don't have to type Ronin::Core::System.download.
Currently we are using
wget
to download wordlists while some people may usecurl
only.I think we could check if
wget
is installed and if not usecurl
.The text was updated successfully, but these errors were encountered: