Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
byu-request
Advanced tools
The byu-request module looks for the BYU client id and the BYU client secret in the following order:
var byuRequest = require('byu-request')
/* Config Option 1 */
/* byuRequest.config({
"byuClientId": "a1b2c3d45f",
"byuClientSecret": "123456789abcdefghijklmn"
}) */
/* Config Options 2 does not require the config object */
/* Config Option 3 */
/* byuRequest.config({
"awsRegion": "us-west-2"
}) */
/* Config Option 4 */
/* byuRequest.config({
"ssmParameterHeader": "myapp.dev",
"awsRegion": "us-west-2"
}) */
const byu = byuRequest.request;
var requestOptions = {
'url': 'https://y-stg.byu.edu/ae/prod/class_schedule/cgi/courseSection.cgi/json/20175/psych/350/001',
'method': 'GET',
'headers': {
'Accept': 'application/json'
}
}
return byu(requestOptions)
.then((res) => {
console.log(res);
})
NOTE: "aws-ssm" is used to fetch parameters stored in the Amazon Parameter Store. For more information, see http://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html and http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SSM.html.
For more information on BYU APIs see https://api.byu.edu/store
FAQs
a simple npm module for making api requests to BYU (api.byu.edu)
The npm package byu-request receives a total of 7 weekly downloads. As such, byu-request popularity was classified as not popular.
We found that byu-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.