
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@byu-oit/byu-cas
Advanced tools
var cas = require('byu-cas');
var ticket = doSomethingToGetTicket();
var service = 'http://example.com/signin';
cas.validate(ticket, service).then(function success(response) {
console.log("Ticket valid! Hello, " + response.username);
console.dir(response.attributes);
}).catch(function error(e) {
console.log("Invalid ticket. Error message was: " + e.message);
});
Note: this is removed in version 2.0.0 except when the environment variable
INSECURE
is set. @agrasley has a good explanation
of the risks involved when using this function.
var cas = require('byu-cas');
var service = 'http://example.com/signin';
cas.getTicket('username', 'password', service)
.then(function(ticket){
// do something with the ticket
});
Attributes come back in the following format
{ restOfName: 'Peter Oliver',
activeParttimeNonBYUEmployee: false,
activeParttimeInstructor: false,
inactiveFulltimeEmployee: false,
surname: 'Rabbit',
activeFulltimeInstructor: false,
memberOf: [],
preferredFirstName: 'Peter',
sortName: 'Rabbit, Peter Oliver',
activeFulltimeNonBYUEmployee: false,
inactiveParttimeNonBYUEmployee: false,
organization: false,
activeEligibletoRegisterStudent: false,
name: 'Peter Rabbit',
preferredSurname: false,
personId: '611290592',
inactiveParttimeInstructor: false,
netId: 'prabbit',
inactiveFulltimeNonBYUEmployee: false,
byuId: '872643180',
restricted: false,
emailAddress: 'prabbitbyu@sharklasers.com',
alumni: false,
inactiveParttimeEmployee: false,
inactiveFulltimeInstructor: false,
activeFulltimeEmployee: false,
fullName: 'Peter Oliver Rabbit IV',
activeParttimeEmployee: false }
We're pretty lax, but
README.md
FAQs
CAS tools specific to Brigham Young University, Provo
We found that @byu-oit/byu-cas demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.