Security News
Supply Chain Attack Detected in @solana/web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Capture, as it's name implies, will capture a screenshot of one or more URL's using PhantomJS. The format of the screenshot can be anything supported by Phantom, such as PNG, GIF, JPG, or PDF.
Capture is a Node.js based library that can be used as a module within another application, or as a stand alone tool via it's command line interface (CLI).
To install capture you must first have Node.js, NPM and PhantomJS installed, all of which is outside the scope of these instructions. Please see the Node.js Website for details on how to install Node and NPM. Personaly I am found of Tim Caswell's excelent NVM tool for insalling and managing Node. Homebrew is also an excelent tool for installing PhantomJS, Node or NPM on a Mac.
Once NPM is installed, simply install Capture by executing the following from the command line:
npm install capture -g
Once installed, you can explore what capture can do by simply typing capture
into the command line. You will get the built in help that looks something like this:
Capture screenshots of URLs.
Usage: node ./index.js [url1 url2 ...]
Options:
--verbose, -v Verbose logging [boolean]
--out, -o Output directory for captured screenshots [string]
--format, -f Output image format (png, jpg, gif, pdf) [string] [default: "png"]
--phantomjs, -P Path to phantomjs bin [string]
--username, -u HTTP Basic Auth Username [string]
--password, -p HTTP Basic Auth Password [string]
--viewport-width, --vw Minimum viewport width [string] [default: 1024]
--viewport-height, --vh Minimum viewport height [string] [default: 768]
--paper-format, --pf Size of the individual PDF pages (A4, letter) [string] [default: "A4"]
--paper-orientation, --po Orientation of the PDF pages (portrait, landscape) [string] [default: "portrait"]
--paper-margin, --pm Margin of the PDF pages (2cm, 5mm, etc.) [string] [default: "2.5mm"]
--help, -h Show this help message and exit [boolean]
Executing capture http://your-domain.com/ http://your-domain.com/about/
will create a directory in the current working directory with the following structure:
your-domain-com/
index.png
about/
index.png
Capture also supports reading in JSON from stdin. It will do it's best to find URL's within the data structure. For example, all of the following data structures are valid input:
Array of strings:
capture << EOF
[ "http://your-domain.com" ]
EOF
Array of Objects with property of url:
capture << EOF
[ { "url": "http://your-domain.com" } ]
EOF
Object with property of url:
capture << EOF
{ "url": "http://your-domain.com" }
EOF
Capture was written to aid in regression testing of websites where large cross-cutting changes to things such as CSS were made and we wished to understand the visual differences that might exist between an existing version of a site and the newly modified version. To accomplish this, Capture, coupled with Crawl allows us to take screenshots of both the old and new versions of the site, then perform image differencing on the results. One handy tool for performing the image differencing is a Mac app called Kaleidoscope.
Copyright (c) Mike Moulton
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Captures Screenshots using Phantom.js
The npm package capture receives a total of 11 weekly downloads. As such, capture popularity was classified as not popular.
We found that capture 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.