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.
Spreadsheet::ParseExcel - Get information from an Excel file.
============ Version: 0.5.3 Date: 2011-04-22
Short Description: This is databasically's version of the parseexcel gem and is not actively maintained as the original gem is no longer maintained. This version was created to resolve a bug reading Unicode characters. The resulting error is as follows:
undefined method `&' for "\x00":String
This version of the library resolves this error.
Spreadsheet::ParseExcel allows you to get information out of a simple Excel file This Package is an - as of today incomplete - translation of Kawai Takanoris Perl-Module.
De-Compress archive and enter its top directory. Then type:
$ ruby install.rb config
$ ruby install.rb setup
($ su) # ruby install.rb install
You can also install files into your favorite directory by supplying install.rb with some options. Try "ruby install.rb --help". More information can be found in the redistributed file usage-en.txt
#!/usr/bin/env ruby
require 'parseexcel'
workbook = Spreadsheet::ParseExcel.parse(path_to_file)
worksheet = workbook.worksheet(0)
skip = 2 worksheet.each(skip) { |row|
first_cell = row.at(0)
str = row.at(1).to_s('latin1')
float = row.at(2).to_f
int = row.at(3).to_i
date = row.at(4).date
# possible values are: :date, :numeric, :text
celltype = first_cell.type
}
row = worksheet.row(26)
LGPL
URL: http://download.ywesee.com/parseexcel Author: Hannes Wyss hwyss@ywesee.com
FAQs
Unknown package
We found that parseexcel_mod 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.