Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@pivotshare/avails
Advanced tools
avails convert
[-i type] [-o type]
avails merge
[-i type] [-o type] [file ...]
Content Availability Metadata, or avails, is an Entertainment industry term for information about the time, location and business rules relating to offering a media asset, e.g. a movie or a television show.
avails convert
simply transforms avails from one format to another.
avails merge
will accept one of more avails in chronological order and merge them into a single avails. Merge will treat avails as state so repeated entities with the same Entry Types will be ignored. A Full Extract followed by a Full Delete will result in no entry for that entity.
The following options are available:
-i
, --input
:
Specify the format of input file: tsv, json, xlsx. Required.
-o
, --output
:
Specify the format of output file: tsv, json, xlsx. Required.
-h
:
Display help avails
or subcommands.
avails
conforms to EMA Avails spreadsheet template Version 1.6e2.
avails
supports the following formats:
The official Avails XML format is not supported.
The TSV format should not supply headers, as the Entity Type field is used to determine that particular line's schema.
The JSON format is an unofficial format used both for representing Avails, and as an intermediary data structure within avails
. It has a 1-1 mapping with the columns of the Excel-based standard. Keys (columns) are in snake_case. Values are always strings. See schema for header values and test/mock for examples. Excel was chosen over the XML standard for modeling since most vendors prefer that format.
You can use Avails as a CLI or a library.
as library:
const Avails = require('@pivotshare/avails'); // npm install avails
const obj = Avails.fromTSVLine('SomeFilmStudio\tEN\tUS\tMovie'); // etc
// { display_name: 'SomeFilmStudio', store_language: 'EN', territory : 'US', work_type: 'Movie', ... }
as CLI:
# npm install -g avails
# avails --help
avails convert -i json -o xlsx <movies.json > movies.xlsx
FAQs
Tool for parsing and generating EMA Avails
We found that @pivotshare/avails demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.