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.
Simple file format for puppeteer-based End-to-end tests:
goto https://saltcorn.com
status 200
contains platform for building database
containsnot platform for building databse
run with
npx pupcheck
pupcheck [-Hhv] [file ...]
Command line switches:
-H : Headful; open browser window
-v : verbose
-h, --help : help
Chrome or chromium need to be installed and accessible. If this is in a non-standard location, set the
PUPPETEER_CHROMIUM_BIN
environment variable.
npx clear-npx-cache
to delete an old version of pupcheck installed with npx
, then run npx pupcheck
0 again.
The pupcheck file consists of a number of one-word commands, followed by the arguments to that command. If the command takes a free text argument, this will be the last argument and will consist of the rest of the line.
The command is case insensitive, so you can use camelCase.
# This is a comment but only if # is first character
If your selector has a space due to choosing a child element, wrap in parentheses.
goto {url}
Navigate to this URL
Example: goto https://google.com
status {status code}
Assert this status code
Example: status 200
contains {contents}
Assert this is in the page contents
Example: contains Tasks completed
containsnot {contents}
(also contains_not
)
Assert this is in not in the page contents
Example: containsNot An error occurred
click {selector}
Click the selected element and wait for navigation to complete
Example: click button#click_me
waitfor {selector}
(also wait_for
)
Wait until this element becomes present
Example: waitfor button#click_me
type {selector} {text}
Type the text into the selected input element.
Examples: type input#full_name John Smith
, type (#question-name input) Walt Whitman
slowlytype {selector} {text}
(also slowly_type
)
Type the text SLOWLY into the selected input element.
Examples: slowly_type input#full_name John Smith
, slowlyType (#question-name input) Walt Whitman
select {selector} {value}
Set the value of a drop-down <select>
element
Examples: select select#role 5
erase {selector} {nchars}
Erase characters from the selected input element.
Examples: erase input#full_name 9
evaltrue {js-expr-string}
(also eval_true
)
Assert that this expression must evaluate to true
Examples: eval_true $("input#full_name").val()==="Miles Davis"
sleep {milliseconds}
Sleep for this many milliseconds
Example: sleep 1000
example.pch
contents:
goto https://example.com/
# Login
type input#id_username egergerarg@gmail.com
type input#id_password grehq4hhq32534534t
click input[type=submit]
# Check dashboard loads
contains Tasks completed
How to run:
npx pupcheck example.pch
FAQs
E2E test scripting through puppeteer
The npm package pupcheck receives a total of 48 weekly downloads. As such, pupcheck popularity was classified as not popular.
We found that pupcheck 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.