npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@keyri/xray

v2.0.3

Published

Fraud Library

Downloads

36

Readme

Keyri XRAY:

Enhanced Security, Improved User Experience.

Keyri X-RAY effectively reduces fraud risks in your app while maintaining a seamless user experience.

Client Side

Installation

Easily integrate Keyri X-RAY using NPM/Yarn or directly from a CDN.

Using NPM/Yarn:

npm i @keyri/xray --save

Using CDN:

<!-- Adding library from NPM via UNPKG -->
<script type="module" >

    // Pull Library from CDN
    import {XRAY} from 'https://unpkg.com/@keyri/xray/index.mjs';

</script>

Usage

Simple steps to integrate and use the Keyri X-RAY library:

const _xray = new XRAY();    // Instantiate the library
await _xray.load();          // Load into memory
const xray = _xray.xray;     // Expose the main functionality

// Perform Local Analysis
const encrypted_fraud_data = await xray.scan({"apiUrl": "local"});

Data Transmission

Send the collected data to your server using your preferred method (XHR, WebSockets, WebRTC, etc.).

Example payload:

{
    "encryptedB64Payload": "eyJjbGllbnRFbmNyeX...U4UmVJK09wOHc9PSJ9"
}

Server Side

Installation

No additional installation needed on the server side.

Usage

Create a JSON payload and make a REST POST request to our API.


  const url = "https://fp.keyri.com/v1/client";

  // Create Payload
  const sendBody = {
    "encryptedB64Payload": "eyJjbGllbnRFbmNyeX...U4UmVJK09wOHc9PSJ9",
    "userId": "undefined",
    "eventType": "visits",
    "metadata": {},
    ipAddress,
    headers: event.headers,
    API_Key,
    Service_Encryption_Key,
    Service_Decryption_Key
  };
  
  // Send and receive response
  let returnData = await fetch(url, {
      method: 'POST',
      headers: {'Content-Type': 'application/json'},
      body: JSON.stringify(sendBody)
  });
  
  let returnDataJson = await returnData.json();

Decrypted Object

  • riskSummary: Outcome based on your risk settings (e.g., "warn", "allow", "deny").

  • ipAddress: Client's IP address.

  • ipLocationData: Geographical data derived from IP (city, region, country, and time zone)

  • userId: User ID in your system.

  • deviceId: Unique device ID.

  • wagId: Liberal device ID - similar across browsers.

  • signals: Suspicious signals detected.

  • trustScore: A score between 0 and 1, based on browser metrics, behavioral analytics, and Bayesian machine learning. A higher score indicates a "good" user.

  • changes: Recorded changes to user or device.

  • event_type: Type of logged event.

  • deviceAge: Age of the device ID in your service.

  • globalDeviceAge: Age of the device ID across any service.

  • timestamp: Time of the API's assessment.

  • clientPublicSignatureKey: Key for verifying the encrypted object's signature.

  • instance: Data available for rules engine processing.

Example of a typical decrypted response:

{
    "ipAddress": "6.6.6.6",
    "userId": "[email protected]",
    "deviceId": "6c6d32ed-50...-c453429b3d5b",
    "wagId": "NFDp7Gg0vv...MMAaDTKWP0=",
    "signals": [
        "multiple_account_signups_per_device",
        "multiple_account_access_per_device"
    ],
    "trustScore": 0.11329117957360035,
    "changes": [],
    "event_type": "signup",
    "deviceAge": 157.31792944444445,
    "globalDeviceAge": 168.628485,
    "timeStamp": 1688905691858,
    "riskSummary": "deny",
    "ipLocationData": {
        "city": "Dallas",
        "region": "Texas",
        "country": "US",
        "time_zone": "CDT"
    },
    "instance": {
        ...
    }
}

COMPLETE EXAMPLE

Client (index.html)

<!DOCTYPE html>
<html>
    <head>
        <meta charSet="utf-8"/>
    </head>
    <body>
        <h1>GOODBYE FRAUD!</h1>
    </body>

    <!-- Adding library from NPM via UNPKG -->
    <script type="module" >

        // Pull Library from CDN
        import {XRAY} from 'https://unpkg.com/@keyri/[email protected]/index.mjs';

        // n.b. when full production, `XRAY` needs no args
        //
        const _xray = new XRAY(iframe_url);             // Instantiate the wrapper class
        await _xray.load();                             // Load the library into memory
        const xray = _xray.xray;                        // `.xray` is the actual worker here

        let encrypted_fraud_data = await xray.scan({"apiUrl": "local"});

        // USE YOUR OWN API IN REAL LIFE!!!
        // (but you can use mine for now...)
        const your_data_handler_url = "https://jv1buh5aac.execute-api.eu-central-1.amazonaws.com/prod";

        try{
            
            const data_response = await fetch(your_data_handler_url, {
                method: 'POST', 
                headers: {'Content-Type': 'application/json'},
                body: JSON.stringify(encrypted_fraud_data)
            });

            const data = await data_response.json();

            console.log({data});

        } catch(e){
            console.error(e);
        }



    </script>

</html>

Server (aws-lambda)

// Set default response headers as `const`
let DEFAULT_HEADERS = {
  "Access-Control-Allow-Origin": "*",
  "Access-Control-Allow-Credentials": true,
};

export const handler = async (event) => {
  
  // N.B. YOU SHOULD MAKE A _REAL_ APPLICATION WITH ERROR CHECKING
  // AND SOLID DEV PRACTICES. THIS IS A PROOF-OF-CONCEPT.
  //
  // IN OTHER WORDS...DON'T TRY THIS AT HOME!
  // 
  const body = JSON.parse(event.body);
  
  const url = "https://fp.keyri.com/v1/client";
  const ipAddress =  event.requestContext.identity.sourceIp;
  const Service_Encryption_Key = process.env.Service_Encryption_Key;
  const Service_Decryption_Key = process.env.Service_Decryption_Key;
  const API_Key = process.env.API_Key;
  
  const sendBody = {
    ...body, 
    "userId": "undefined",
    "eventType": "visits",
    "metadata": {},
    ipAddress,
    headers: event.headers,
    API_Key,
    Service_Encryption_Key,
    Service_Decryption_Key
  };
  
  let returnData = await fetch(url, {
      method: 'POST', // Method itself
      headers: {'Content-Type': 'application/json'},
      body: JSON.stringify(sendBody)
  });
  
  let returnDataJson = await returnData.json();

  // Probably want to get fancier here - this'll do for demo purposes:
  let statusCode;
  if(returnDataJson?.riskSummary === "allow"){
    statusCode = 200;
  } else if(returnDataJson?.riskSummary === "warn"){
    statusCode = 302;
    DEFAULT_HEADERS = {...DEFAULT_HEADERS, "Location": "./bicycle_identification_adventure.html"}
  } else {
    statusCode = 400;
    DEFAULT_HEADERS = {...DEFAULT_HEADERS, "Location": "./blocked.html"}
  }
  
  return {
    statusCode,
    body: JSON.stringify(returnDataJson),
    headers: DEFAULT_HEADERS
  };

};