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.
hubot-test-helper-pull-request-1
Advanced tools
npm install hubot-test-helper --save-dev
If you have a following hubot script:
module.exports = (robot) ->
robot.respond /hi$/i, (msg) ->
msg.reply 'hi'
You can test it like:
Helper = require('hubot-test-helper')
# helper loads all scripts passed a directory
helper = new Helper('./scripts')
# helper loads a specific script if it's a file
scriptHelper = new Helper('./scripts/specific-script.coffee')
expect = require('chai').expect
describe 'hello-world', ->
room = null
beforeEach ->
room = helper.createRoom()
context 'user says hi to hubot', ->
beforeEach ->
room.user.say 'alice', '@hubot hi'
room.user.say 'bob', '@hubot hi'
it 'should reply to user', ->
expect(room.messages).to.eql [
['alice', '@hubot hi']
['hubot', '@alice hi']
['bob', '@hubot hi']
['hubot', '@bob hi']
]
FAQs
Helper for testing hubot script
The npm package hubot-test-helper-pull-request-1 receives a total of 0 weekly downloads. As such, hubot-test-helper-pull-request-1 popularity was classified as not popular.
We found that hubot-test-helper-pull-request-1 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.
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.