
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
rtp-live-pass
Advanced tools
Retrieve scan data from an RTP LivePass based season pass account.
Defaults to Park City Mountain Resort.
$ npm install rtp-live-pass
var LivePassUser = require("./index"),
async = require("async");
var user = new LivePassUser();
async.waterfall([
function (callback) {
user.authenticate("email@example.com", "password", function(err, userObject) {
callback(err, userObject);
});
},
function (userObject, callback) {
user.getAccessCode(function(err, accessCode) {
callback(err, accessCode);
});
},
function (accessCode, callback) {
user.getScanHistory(function(err, history) {
callback(err, history);
});
}
], function (err, result) {
console.log(err);
console.log(result);
});
Once you've determined the root endpoint for your resort's LivePass API, you can override the LivePassUser object's endpoint value.
For example:
var user = new LivePassUser();
user._resortEndpoint = "https://www.someresort.com/endpoint/";
For more information on determining your resort's LivePass API endpoint, see my blog post here: http://jeffstieler.com/projects/mylivepass-season-ski-pass-data-retrieval/
FAQs
Retrieve scan data from your RTP LivePass based resort season pass.
We found that rtp-live-pass 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.