
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
= WebDAVTools
== DESCRIPTION:
WebDAVTools is a WebDAV client written in Ruby for managing content on webservers that support the WebDAV extensions.
== Requirements
The command line utility curl installed. Available from http://curl.haxx.se/ or on linux:
sudo apt-get install curl
== LIRBRARY SYNOPSIS:
require 'rubygems' require 'webdavtools'
url = 'http://test.webdav.org/dav/' WebDAV.find(url, :recursive => true) do |item| puts item.href end
== COMMAND LINE UTILITES:
WebDAVTools includes the command line utility 'wdav'. It should be somewhat familiar to unix users. By using commands like 'wdav cd url' to set current working url, 'wdav ls' to list files and 'wdav pwd' to print current working url, users can access files, folders and their properties on webdav servers.
The only authentication method supported at the method is by reading usernames and passwords from a file named ~/.netrc. If username is missing, 'wdav' will print out instructions for what to add to the .netrc file.
== COMMAND LINE SYNOPSIS:
wdav cd http://test.webdav.org/dav/ http://test.webdav.org/dav/ wdav ls images/ index.html wdav pwd http://test.webdav.org/dav/
== INSTALL:
[sudo] gem install webdavtools
or
git clone git://github.com/thomasfl/webdavtools.git cd webdavtools gem build Rakefile sudo gem install webdavtools-x.x.x.gem
== Background:
There has been posted a few examples on the web of how to make a WebDAV client. The problem is that they all seem to support only one type of username and password authentication. WebDAVTools instead uses the command line tool 'curl' to do all the authentication and networking. To avoid handling authentication all togheter, curl are told to look up all usernames and passwords are in a file named ~/.netrc.
FAQs
Unknown package
We found that webdavtools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.