Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Wlt is a command line application and API to translate text using the Watson Language Translator service.
Before you can use Wlt you need to create a set of credentials see: https://console.bluemix.net/docs/services/watson/getting-started-credentials.html#getting-credentials-manually
Add this line to your application's Gemfile:
gem 'wlt'
And then execute:
$ bundle
Or install it yourself as:
$ gem install wlt
You can do translations via the CLI or using the Wlt API
Translate a file:
$ wlt --username=<your-watson-username> --password=<your-watson-password> --file=path/to/file
Save your credentials locally in order not to pass them every time you want to do a translation:
$ wlt --username=<your-watson-username> --password=<your-watson-password> --save-credentials
Choose different source and target languages:
$ wlt --source=es --target=en --file=path/to/file
Use process substitution to pass your text directly in the command line:
$ wlt --file=<(echo "Hello world!")
Print out the help message
$ wlt --help
require 'wlt'
creds_manager = Wlt::CredsManager.new('<your-watson-username>', '<your-watson-password>')
translate_args = { text: 'Hello world!', source: 'en', target: 'es' }
result = Wlt::Translator.new(creds_manager).translate(translate_args)
Bug reports and pull requests are welcome on GitHub at https://github.com/mauromorales/wlt.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that wlt 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.