
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Gyuma is an OAuth client for kintone of Node.js.
$ npm install --save gyuma
or
$ yarn add gyuma
$ npm install -g gyuma
or
$ yarn global add gyuma
const gyuma = require('gyuma')
const request = require('request-promise')
;(async () => {
const domain = 'example.cybozu.com'
const params = {
domain,
client_id: process.env.OAUTH2_CLIENT_ID,
client_secret: process.env.OAUTH2_CLIENT_SECRET,
scope: 'k:app_settings:read k:app_settings:write',
password: 'xxxxx',
// port: 3000,
}
const access_token = await gyuma(params)
const options = {
url: `https://${domain}/k/v1/app/form/fields.json?app=256`,
headers: {
Authorization: `Bearer ${access_token}`,
},
json: true,
}
console.log(await request(options))
})()
$ gyuma \
-d example.cybozu.com \
-i xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx \
-s xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx \
-S "k:app_settings:read k:app_settings:write"
-h, --help Output usage information
-v, --version Output version information
-d, --domain=<DOMAIN> kintone domain name
-i, --client_id=<CLIENT_ID> kintone OAuth2 Client ID
-s, --client_secret=<CLIENT_SECRET> kintone OAuth2 Client Secret
-S, --scope=<SCOPE> kintone OAuth2 Scope
-p, --password=<PASSWORD> Credentials Password
-P, --port=<PORT> Web Server port number - defaults to 3000
FAQs
Gyuma is an OAuth client for kintone of Node.js.
The npm package gyuma receives a total of 9 weekly downloads. As such, gyuma popularity was classified as not popular.
We found that gyuma 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.