New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

secure-web

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

secure-web

Secure-Web is an npm package that prevents users from taking screenshots of your web page by securing it against various methods of screenshot capture. With customizable options to tailor the security measures according to your needs, Secure-Web ensures t

latest
Source
npmnpm
Version
1.2.4
Version published
Maintainers
0
Created
Source

secure-web

secure-web is an npm package that prevents users from taking screenshots of your web page by securing it against various methods of screenshot capture. It provides customizable options to tailor the security measures according to your needs.

Installation

Install the package via npm:

npm install secure-web

Usage

Simply import the noScreenshot function from the secure-web package and call it in your JavaScript code:

const noScreenshot = require('secure-web');

noScreenshot({
    disableRightClick: true,
    disableKeyboardShortcuts: true,
    disableInspectElement: true,
    disablePrintScreen: true,
    disableScreenshot: true,
    disableFunctionKeys: true,
    disableCtrlF4: true,
    mouseLeave: true, // required for overlay with mouse leave a browser window
    mouseEnterAutoHide: false, // required for auto hide overlay with mouse enter a browser window
    ctrlOverlay: true, 
    altOverlay: false, // must be pass true for overlay with Alt or Options key press
    shiftOverlay: false, // must be pass true for overlay with Shift key press
} , 'custom-overlay-id');

This function will disable right-click, keyboard shortcuts, inspect element, print screen, and various other methods commonly used for taking screenshots. Additionally, it will overlay a message on the screen indicating that screenshots are disabled.

Make sure to replace "custom-overlay-id" with the ID of the custom overlay you want to use, or omit it to use the default overlay.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Secure Web Page</title>
    <style link="stylesheet" href="path/to/secure-web.css"></style>
    <script src="node_modules/secure-web/dist/secure-web.js"></script>
<!--    live link of package -->
    <script src="https://cdn.jsdelivr.net/npm/secure-web/dist/secure-web.js"></script>
</head>
<body>
    <script>
        window.onload = function() {
            noScreenshot({
                altOverlay: true,
                shiftOverlay: true,
            });
        };
    </script>
</body>
</html>

Make sure to replace "path/to/secure-web.js" in the example HTML with the actual path to your secure-web.js file. Also, customize the installation, usage, example, and API sections as necessary for your package.

Options

The noScreenshot function accepts the following options:

  • disableRightClick: Disables right-clicking on the web page.
  • disableKeyboardShortcuts: Disables keyboard shortcuts such as Ctrl+C, Ctrl+U, etc.
  • disableInspectElement: Disables the inspect element functionality.
  • disablePrintScreen: Disables the print screen functionality.
  • disableScreenshot: Disables taking screenshots using various methods.
  • disableFunctionKeys: Disables function keys (F1-F12).
  • disableCtrlF4: Disables the Ctrl+F4 key combination.
  • mouseLeave: Activates overlay when cursor leaves the window.
  • mouseEnterAutoHide: Activates overlay when cursor enters the window.
  • ctrlOverlay: Activates overlay when Ctrl or Command key is pressed.
  • altOverlay: Activates overlay when Alt or Options key is pressed.
  • shiftOverlay: Activates overlay when Shift key is pressed.

Example

const noScreenshot = require('secure-web');

window.onload = function() {
    noScreenshot({
        disableRightClick: true,
        disableKeyboardShortcuts: true,
        disableInspectElement: true,
        disablePrintScreen: true,
        disableScreenshot: true,
        disableFunctionKeys: true,
        disableCtrlF4: true,
        mouseLeave: true,
        mouseEnterAutoHide: false,
        ctrlOverlay: true,
        altOverlay: true,
        shiftOverlay: true,
    } , 'custom-overlay-id');
};

API

noScreenshot(options)

The noScreenshot function disables various methods of taking screenshots and overlays a message on the screen indicating that screenshots are disabled. It accepts an options object with the following properties:

  • disableRightClick
  • disableKeyboardShortcuts
  • disableInspectElement
  • disablePrintScreen
  • disableScreenshot
  • disableFunctionKeys
  • disableCtrlF4
  • mouseLeave
  • mouseEnterAutoHide
  • ctrlOverlay
  • altOverlay
  • shiftOverlay
  • overlayId: Optional parameter to specify the ID of a custom overlay to use instead of the default one.

License

This project is licensed under the MIT License - see the LICENSE file for details.


This README now includes a section detailing the available options for the `noScreenshot` function, providing users with a clear understanding of how they can customize the behavior of the package.

Keywords

Secure-Web

FAQs

Package last updated on 30 Jul 2024

Did you know?

Socket

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.

Install

Related posts