securenative/securenative-php
Composer 安装命令:
composer require securenative/securenative-php
包简介
PHP bindings for SecureNative
README 文档
README
A Cloud-Native Security Monitoring and Protection for Modern Applications
Documentation | Quick Start | Blog | Chat with us on Slack!
SecureNative performs user monitoring by analyzing user interactions with your application and various factors such as network, devices, locations and access patterns to stop and prevent account takeover attacks.
Install the SDK
When using Composer run the following command:
$ composer require securenative/securenative-php
Add required imports
require_once __DIR__ . '/vendor/autoload.php'; use SecureNative\sdk\SecureNative; use SecureNative\sdk\SecureNativeOptions; use SecureNative\sdk\EventTypes; use SecureNative\sdk\SecureNativeContext;
Initialize the SDK
To get your API KEY, login to your SecureNative account and go to project settings page:
Option 1: Initialize via API_KEY and SecureNativeOptions
$options = new SecureNativeOptions(); $options->setTimeout(100) ->setApiUrl("API URL") ->setDisable(false) ->setInterval(100) ->setAutoSend(true) ->setMaxEvents(10) ->setLogLevel('fatal'); // Passing `$options` is optional, will use default params SecureNative::init("[API_KEY]", $options);
Option 2: Initialize via configuration file
Attach securenative.json file to your root folder:
{
"SECURENATIVE_API_KEY": "YOUR_API_KEY",
"SECURENATIVE_APP_NAME": "APP_NAME",
"SECURENATIVE_API_URL": "API_URL",
"SECURENATIVE_INTERVAL": 1000,
"SECURENATIVE_MAX_EVENTS": 100,
"SECURENATIVE_TIMEOUT": 1500,
"SECURENATIVE_AUTO_SEND": true,
"SECURENATIVE_DISABLE": false,
"SECURENATIVE_LOG_LEVEL": "fatal"
}
Then, call SDK's init function without props (sending props will override JSON configurations).
SecureNative::init();
Option 3: Initialize via environment variables
Pass desired environment variables (for example):
SECURENATIVE_API_KEY=TEST_KEY SECURENATIVE_API_URL=http://url SECURENATIVE_INTERVAL=100 SECURENATIVE_MAX_EVENTS=30 SECURENATIVE_TIMEOUT=1500 SECURENATIVE_AUTO_SEND=true SECURENATIVE_DISABLE=false SECURENATIVE_LOG_LEVEL=fatal
Then, call SDK's init function without props (sending props will override JSON configurations).
SecureNative::init();
Tracking events
Once the SDK has been initialized, tracking requests sent through the SDK instance.
$clientToken = "[SECURED_CLIENT_TOKEN]"; $headers = (object)["user-agent" => "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us"]; $ip = "79.179.88.157"; $remoteIp = null; $url = null; $method = null; $body = null; $ctx = new SecureNativeContext($clientToken, $ip, $remoteIp, $headers, $url, $method, $body); SecureNative::track(array( 'event' => EventTypes::LOG_IN, 'context' => $ctx, 'userId' => '1234', 'userTraits' => (object)[ 'name' => 'Your Name', 'email' => 'name@gmail.com' ], // Custom properties 'properties' => (object)[ "custom_param1" => "CUSTOM_PARAM_VALUE", "custom_param2" => true, "custom_param3" => 3 ] ));
You can also create request context from request:
SecureNative::track(array( 'event' => EventTypes::LOG_IN, 'context' => SecureNative::contextFromContext(), 'userId' => '1234', 'userTraits' => (object)[ 'name' => 'Your Name', 'email' => 'name@gmail.com' ], // Custom properties 'properties' => (object)[ "custom_param1" => "CUSTOM_PARAM_VALUE", "custom_param2" => true, "custom_param3" => 3 ] ));
Verify events
Example
$options = new SecureNativeOptions(); $ver = SecureNative::verify(array( 'event' => EventTypes::VERIFY, 'userId' => '1234', 'context' => SecureNative::fromRequest(), 'userTraits' => (object)[ 'name' => 'Your Name', 'email' => 'name@gmail.com' ] )); print_r($ver->riskLevel); // (Low, Medium, High) print_r($ver->score); // (0 - Very Low, 1 - Very High) print_r($ver->triggers); // (Example: ["TOR", "New IP", "New City"])
Webhook signature verification
Apply our filter to verify the request is from us, for example:
$verified = SecureNative::getMiddleware()->verifySignature(); if ($verified) { // Request is trusted (coming from SecureNative) }
Extract proxy headers from cloud providers
You can specify custom header keys to allow extraction of client ip from different providers. This example demonstrates the usage of proxy headers for ip extraction from Cloudflare.
Option 1: Using config file
{
"SECURENATIVE_API_KEY": "YOUR_API_KEY",
"SECURENATIVE_PROXY_HEADERS": ["CF-Connecting-IP"]
}
Initialize sdk as shown above.
Options 2: Using ConfigurationBuilder
$options = new SecureNativeOptions(); $options->setProxyHeaders(["CF-Connecting-IP"]); SecureNative::init();
Remove PII Data From Headers
By default, SecureNative SDK remove any known pii headers from the received request. We also support using custom pii headers and regex matching via configuration, for example:
Option 1: Using config file
{
"SECURENATIVE_API_KEY": "YOUR_API_KEY",
"SECURENATIVE_PII_HEADERS": ["apiKey"]
}
Initialize sdk as shown above.
Options 2: Using ConfigurationBuilder
$options = new SecureNativeOptions(); $options->setPiiRegexPattern("/http_auth_/i"); SecureNative::init();
securenative/securenative-php 适用场景与选型建议
securenative/securenative-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 63 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 08 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「security」 「monitoring」 「sdk」 「securenative」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 securenative/securenative-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 securenative/securenative-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 securenative/securenative-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Symfony bundle for chameleon-system/sanitycheck
Provide a way to secure accesses to all routes of an symfony application.
SoftWax Health Check Bundle for Symfony framework
1Pilot client for Symfony
Statsd (Object Oriented) client library for PHP
It's a barebone security class written on PHP
统计信息
- 总下载量: 63
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-08-29
