流量分析利器arkime的学习之路(二)---API接口

前文回忆

《流量分析利器arkime的学习之路(一)---安装部署》

概述

注意点

Arkime对所有API调用都使用摘要身份验证,因此请确保在库或curl命令中启用摘要身份验证。学习如何进行API调用的最简单方法是打开浏览器的javascript控制台,观察Arkime UI正在进行的调用,它使用所有相同的API。

注意:许多API端点都需要一个数据库字段名称,这与您在搜索表达式中使用的名称不同。查看数据库字段名称的最简单方法是单击Arkime中的猫头鹰标志->单击左侧的字段标签->单击显示数据库字段。

参数地址中带有冒号的参数名称,就是可以修改替换的参数。

关键词及核心功能

SPI(Session Profile Information)会话配置文件信息。

SPI View用于深入分析分析人员希望进一步调查的会话的特定指标。允许分析师快速查看用户感兴趣的每个项目的数量。例如,如果分析师想要查看当前时间窗口内记录的所有基本授权标题,分析师可以打开http抽屉并单击以启用http.authorization字段。然后,分析师可以更新他们的搜索查询,以包括已观察到的特定授权字符串,或者使用通配符来查看特定类型的授权标题(基本*、不记名*等)的全部内容。此外,SPI视图允许分析师快速查看时间窗口内观察到的IP地址、http响应代码、IRC缺口/通道等更多信息。

SPI Graph允许用户通过一段时间内的条形图可视化SPI视图页面中的任何项目。该页面对于每种SPI类型的活动概览以及深入分析非常有用

Connections允许用户基于他们选择的源节点和目的节点查看树形图。使用这种方法可以直观地确定关系。

Hunt 允许用户在会话包搜索文本

Files 罗列出已经存储的pcap文件

详细信息可以点击Arkime的猫头鹰标志获取所有部分详细介绍。

在文档中标注的复杂数据类型,在文档最后都有介绍。

重点可能要关注

的数据为

查看类

  1. 连接关系 显示主机访问关系
  2. 会话 显示主机之间的协议

主动类

  1. Hunt 主动获取相关报文

所有API

连接关系

查询

构建弹性搜索连接查询。获取节点和链接的列表并将其返回给客户端。

地址

POST/GET - /api/connections

参数

参数

类型

默认值

描述

See_List

SessionsQuery

This API supports a common set of parameters documented in the SessionsQuery section

srcField

string

"ip.src"

The source database field name

dstField

string

"ip.dst:port"

The destination database field name

baselineDate

number

0

The baseline date range to compare connections against. Default is 0, disabled. Options include: 1x - 1 times query range. 2x - 2 times query range. 4x - 4 times query range. 6x - 6 times query range. 8x - 8 times query range. 10x - 10 times query range. 1 - 1 hour. 6 - 6 hours. 24 - 1 day. 48 - 2 days. 72 - 3 days. 168 - 1 week. 336 - 2 weeks. 720 - 1 month. 1440 - 2 months. 4380 - 6 months. 8760 - 1 year.

baselineVis

string

"all"

Which connections to display when a baseline date range is applied. Default is all. Options include: ‘all’ - All Nodes: all nodes are visible. ‘actual’ - Actual Nodes: nodes present in the “current” timeframe query results are visible. ‘actualold’ - Baseline Nodes: nodes present in the “baseline” timeframe query results are visible. ‘new’ - New Nodes Only: nodes present in the “current” but NOT the “baseline” timeframe are visible. ‘old’ - Baseline Nodes Only: nodes present in the “baseline” but NOT the “current” timeframe are visible.

返回:

名称

类型

描述

links

array

The list of links

nodes

array

The list of nodes

查询(CSV格式 

构建弹性搜索连接查询。获取csv格式的节点和链接列表,并将它们返回给客户端。(ES)

地址

POST/GET - /api/connections/csv 或者 /api/connections.csv

参数:

参数

类型

默认值

描述

See_List

SessionsQuery

This API supports a common set of parameters documented in the SessionsQuery section

srcField

string

"ip.src"

The source database field name

dstField

string

"ip.dst:port"

The destination database field name

返回值

名称

类型

描述

csv

csv

The csv with the connections requested

定时任务

检索

检索用户可以查看的定期查询。

地址

GET - /api/crons

返回值

名称

类型

描述

queries

Array.<ArkimeQuery>

A list of query objects.

新建

创建新的定期查询。

地址

POST - /api/cron

返回值

名称

类型

描述

success

boolean

Whether the create operation was successful.

text

string

The success/error message to (optionally) display to the user.

query

ArkimeQuery

The new query

更新

更新定期查询。

地址

POST - /api/cron/:key

返回值

名称

类型

描述

success

boolean

Whether the update operation was successful.

text

string

The success/error message to (optionally) display to the user.

query

ArkimeQuery

The updated query object

删除

删除定期查询。

地址

DELETE - /api/cron/:key

返回值

名称

类型

描述

success

boolean

Whether the delete operation was successful.

text

string

The success/error message to (optionally) display to the user.

历史记录

检索

检索历史记录或用户客户端对API的请求的列表。

地址

GET - /api/histories

参数:

参数

类型

默认值

描述

date

number

1

The number of hours of data to return (-1 means all data). Defaults to 1.

startTime

number

If the date parameter is not set, this is the start time of data to return. Format is seconds since Unix EPOC.

stopTime

number

If the date parameter is not set, this is the stop time of data to return. Format is seconds since Unix EPOC.

searchTerm

string

The search text to filter the history list by.

length

number

100

The number of items to return. Defaults to 1,000.

start

number

0

The entry to start at. Defaults to 0.

sortField

string

"timestamp"

The field to sort the results by.

desc

string

true

Whether to sort the results descending or ascending. Default is descending.

userId

string

The ID of a user to request history results for. Admin can retrieve all users. Normal users can only retrieve their own.

返回值

名称

类型

描述

data

Array.<History>

The list of history results.

recordsTotal

number

The total number of history results stored.

recordsFiltered

number

The number of history items returned in this result.

删除

删除历史记录条目(仅限管理员)。

地址

DELETE - /api/history/:id

参数:

参数

类型

描述

index

string

The OpenSearch/Elasticsearch index that the history item was stored in.

返回值

名称

类型

描述

success

boolean

Whether the delete history operation was successful.

text

string

The success/error message to (optionally) display to the user.

捕获

新建

创建新的狩猎。

地址

POST - /api/hunt

参数:

参数

类型

描述

See_List

SessionsQuery

This API supports a common set of parameters documented in the SessionsQuery section

totalSessions

number

The number of sessions to search.

name

string

The name of the hunt (not unique).

size

number

The number of packets to search within each session.

src

boolean

Whether to search the source packets. Must search src or dst or both.

dst

boolean

Whether to search the destination packets. Must search src or dst or both.

type

string

Whether to search raw or reassembled packets.

search

string

The search text to search for within packets.

searchType

string

What type of search the text is. Options include: ascii - search for case insensitive ascii text. asciicase - search for case sensitive ascii text. hex - search for hex text. regex - search for text using safe regex. hexregex - search for text using safe hex regex.

notifier

string

The optional notifier name to fire when there is an error, or there are matches (every 10 minutes), or when the hunt is complete.

users

string

The comma separated list of users to be added to the hunt so they can view the results.

返回值

名称

类型

描述

success

boolean

Whether the creation of the hunt was successful.

hunt

Hunt

The newly created hunt object.

invalidUsers

array

The list of users that could not be added to the hunt because they were invalid or nonexitent.

检索

检索狩猎列表。

地址

GET - /api/hunts

参数:

参数

类型

默认值

描述

searchTerm

string

The search text to search hunt results for.

length

number

10000

The number of items to return. Defaults to 10000.

start

number

0

The entry to start at. Defaults to 0

sortField

string

"created"

The field to sort the hunt results by. Defaults to “created”.

desc

string

false

Whether to sort the results in descending order. Default is ascending.

history

string

false

Whether to return only finished hunts. Default is to return queued, paused, and running hunts.

返回值

名称

类型

描述

runningJob

Hunt

If there is a hunt running, returns the currently running hunt object.

data

Array.<Hunt>

The list of hunts (either finished or queued/paused/running).

recordsTotal

number

The total number of hunts Arkime has.

recordsFiltered

number

The number of hunts returned in this result.

删除

删除一个狩猎

地址

DELETE - /api/hunt/:id

返回值

名称

类型

描述

success

boolean

Whether the delete hunt operation was successful.

text

string

The success/error message to (optionally) display to the user.

取消

取消狩猎。完成狩猎并将其放入狩猎历史。

地址

PUT - /api/hunt/:id/cancel

返回值

名称

类型

描述

success

boolean

Whether the cancel hunt operation was successful.

text

string

The success/error message to (optionally) display to the user.

暂停

暂停狩猎。

地址

PUT - /api/hunt/:id/pause

返回值

名称

类型

描述

success

boolean

Whether the pause hunt operation was successful.

text

string

The success/error message to (optionally) display to the user.

开启

进行狩猎。

地址

PUT - /api/hunt/:id/play

返回值

名称

类型

描述

success

boolean

Whether the play hunt operation was successful.

text

string

The success/error message to (optionally) display to the user.

删除匹配

从匹配的会话中删除搜索ID和名称。

地址

PUT - /api/hunt/:id/removefromsessions

返回值

名称

类型

描述

success

boolean

Whether the operation was successful.

text

string

The success/error message to (optionally) display to the user.

更新

更新搜索-只能更新描述和角色

地址

PUT - /api/hunt/:id

参数:

参数

类型

描述

hunt

Hunt

The new hunt data

返回值

名称

类型

描述

success

boolean

Whether the operation was successful.

text

string

The success/error message to (optionally) display to the user.

检索用户

将用户添加到搜寻。

地址

POST - /api/hunt/:id/users

参数:

参数

类型

描述

users

string

Comma separated list of user ids to add to the hunt.

返回值

名称

类型

描述

success

boolean

Whether the add users operation was successful.

users

array

The list of users that were added to the hunt.

invalidUsers

array

The list of users that could not be added to the hunt because they were invalid or nonexitent.

删除用户

从搜索中删除用户。

地址

DELETE - /api/hunt/:id/user/:user

返回值

名称

类型

描述

success

boolean

Whether the remove users operation was successful.

users

array

The list of users who have access to the hunt.

invalidUsers

array

The list of users that could not be removed from the hunt because they were invalid or nonexitent.

字段

获取与会话相关的可用数据库字段对象。

地址

GET - /api/fields

参数:

参数

类型

默认值

描述

array

boolean

false

Whether to return an array of fields, otherwise returns a map

返回值

名称

类型

描述

array/map

The map or list of database fields

PCAP文件

列表

地址

GET - /api/files

获取Arkime知道的PCAP文件列表。

参数:

参数

类型

默认值

描述

length

number

100

The number of items to return. Defaults to 500, Max is 10,000

start

number

0

The entry to start at. Defaults to 0

返回值

名称

类型

描述

data

Array

The list of files

recordsTotal

number

The total number of files Arkime knows about

recordsFiltered

number

The number of files returned in this result

大小

检索PCAP文件的文件大小。

地址

GET - /api/:nodeName/:fileNum/filesize

返回值

名称

类型

描述

filesize

number

The size of the file (

元数据操作

检索

检索可以对元数据值执行的操作。

地址

GET - /api/valueactions

返回值

名称

类型

描述

object

The list of actions that can be preformed on data values.

字段操作

检索

地址

GET - /api/fieldactions

检索可以在字段上执行的操作。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/3271.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

向表内INSERT数据出现ORA-00600 ktspgfb-inc2错误的分析处理

业务高峰期&#xff0c;业务维护人员反馈某业务卡主&#xff0c;发来报错一看&#xff0c;是ORA-00600...的&#xff0c;心理一下就紧张起来&#xff1b;当前版本的ORA-00600错误&#xff0c;基本分为了2类&#xff0c;要么没啥影响&#xff1b;如果对业务有影响了&#xff0c;…

强化学习的重要概念:环境、模型、策略和它们的关系

在强化学习中&#xff0c;环境&#xff08;Environment&#xff09;、模型&#xff08;Model&#xff09;和策略&#xff08;Policy&#xff09;是三个核心概念&#xff0c;它们之间的关系可以描述如下&#xff1a; 环境&#xff08;Environment&#xff09;&#xff1a; 环境是…

<component> <slot> <template>三者之间的区别与使用

学习目标&#xff1a; 目标 1、了解组件的含义 2、了解 的含义及用法 3、了解 的含义及用法 4、了解 的含义及用法 学习内容&#xff1a; 内容&#xff1a; 什么是组件&#xff1f; 组件的出现&#xff0c;就是为了拆分Vue实例的代码量&#xff0c;能够让我们以不同的组件&am…

deque的插入和删除

函数原型 两端插入操作 push_back(elem) //向容器尾部添加一个数据push_front(elem) //向容器头部插入一个数据pop_back() //删除容器最后一个数据 pop_front() //删除第一个容器第一个数据 …

点云数据处理的库

PCL、Open3D和OpenGL都是用于点云数据处理的常用库&#xff0c;它们各有优劣&#xff0c;具体如下&#xff1a; PCL&#xff08;Point Cloud Library&#xff09; PCL是一个非常流行的开源点云数据处理库&#xff0c;它支持从各种传感器&#xff08;如激光雷达、Kinect&#xf…

Python实战 | 只需“4步”入门网络爬虫(小白也会)

文章目录 Python实战 | 只需“4步”入门网络爬虫&#xff08;小白也会&#xff09;1&#xff1a;确定目标网站和数据2&#xff1a;安装必要的库3&#xff1a;编写爬虫代码4.目标网站的URL5.发送HTTP请求并获取响应内容6.使用BeautifulSoup解析HTML内容7.查找包含新闻标题和链接…

【golang学习之旅】Go 的基本数据类型

系列文章 【golang学习之旅】报错&#xff1a;a declared but not used 目录 系列文章总览布尔型&#xff08;bool&#xff09;字符串型&#xff08;string&#xff09;整数型&#xff08;int、uint、byte、rune&#xff09;浮点型&#xff08;float32、float64&#xff09;复…

【C++】——类与对象引入和认识

创作不易&#xff0c;多多支持&#xff01; 前言 有了上一篇博客的基础以后&#xff0c;就正式进入C类和对象的领域了&#xff0c;如果看完本篇文章对你有用&#xff0c;还请多多支持&#xff01;&#xff01;&#x1f618;&#x1f618; 一 面向过程和面向对象 1.面向过程 …

js的includes函数

在JavaScript中&#xff0c;includes() 是一个数组&#xff08;Array&#xff09;和字符串&#xff08;String&#xff09;对象的方法&#xff0c;用于确定一个数组是否包含一个特定的值&#xff0c;或者一个字符串是否包含一个特定的子串。如果找到该值或子串&#xff0c;则返…

MySql on duplicate key update

"ON DUPLICATE KEY UPDATE"是MySQL的语法&#xff0c;当尝试插入的行导致一个duplicate key错误&#xff08;如果该行中存在一个unique索引或primary key&#xff0c;并且该索引或primary key在表中已经存在&#xff09;&#xff0c;则执行UPDATE。 使用基本的SQL语…

单链表实现通讯录

不过多赘述了 顺序表的增删查改-CSDN博客https://blog.csdn.net/bkmoo/article/details/137566495?spm1001.2014.3001.5502 使用顺序表实现通讯录-CSDN博客https://blog.csdn.net/bkmoo/article/details/137676561?spm1001.2014.3001.5502这里没有使用文件操作只是简单的使…

全程免费的ssl证书申请——七步实现网站https

全程免费的ssl证书申请步骤如下&#xff1a; 1 准备工作 首先确定好需要的证书类型&#xff0c;如单域名证书、通配符证书和多域名证书&#xff0c;准备好需要安装证书的域名。 2 选择CA 选择提供免费证书的服务商——JoySSL&#xff0c;并访问其官方网站&#xff0c;创建一…

3d软件哪个适合新手学?3D动画渲染怎么好

在不同的行业领域&#xff0c;3D建模和动画的需求各异&#xff0c;因此所需的3D软件工具也会有所不同。对于刚开始接触3D设计的新手来说&#xff0c;软件的易操作性、丰富的学习资源以及与自己专业领域相关的功能是选择时的重要考虑因素。以下是几款适合初学者入门的3D软件推荐…

代码随想录训练营Day 32|Python|Leetcode|● 738.单调递增的数字

738.单调递增的数字 当且仅当每个相邻位数上的数字 x 和 y 满足 x < y 时&#xff0c;我们称这个整数是单调递增的。 给定一个整数 n &#xff0c;返回 小于或等于 n 的最大数字&#xff0c;且数字呈 单调递增 。 解题思路&#xff1a; 对于所给数字进行str()并从后向前…

【智能算法应用】灰狼算法(GWO)在低照度图像增强中的应用

目录 1.算法原理2.数学模型3.结果展示4.参考文献 1.算法原理 【智能算法】灰狼算法&#xff08;GWO&#xff09;原理及实现 2.数学模型 对于低照度图像的增强方式可以采用非线性变换函数来对图像的灰度值进行变化&#xff0c;对于不同环境下质量不同的图像&#xff0c;可以将…

YOLOv8+PyQt5输电线路缺陷检测(目前最全面的类别检测,可以从图像、视频和摄像头三种路径检测)

1.效果视频&#xff1a;YOLOv8PyQt5输电线路缺陷检测&#xff08;目前最全面的类别检测&#xff0c;可以从图像、视频和摄像头三种路径检测&#xff09;_哔哩哔哩_bilibili 资源包含可视化的输电线路缺陷检测系统&#xff0c;可识别图片和视频当中出现的五类常见的输电线路缺陷…

python:pyqt5案例(简易浏览器)

1、上接pyqt5基础https://blog.csdn.net/weixin_73011353/article/details/138051734https://blog.csdn.net/weixin_73011353/article/details/138051734 2、基本模块 # 定义一个名为BrowserWindow的类&#xff0c;继承自QMainWindow class BrowserWindow(QMainWindow):def _…

美国电子电器产品FCC认证讲解

美国FCC认证简介 FCC全称是Federal Communications Commission&#xff0c;中文为美国联邦通信委员会。于1934年由CommunicationACT建立&#xff0c;是美国政府的一个独立机构&#xff0c;直接对国会负责。FCC通过控制无线电广播、电视、电信、卫星和电缆来协调和国际的通信。涉…

JS中跳转传参的几种方法

在JavaScript中&#xff0c;页面跳转并传递参数主要有以下几种方法&#xff1a; 1. 使用URL的查询字符串 这是最常见的方法&#xff0c;你可以在URL后面添加查询字符串来传递参数。查询字符串以?开始&#xff0c;参数之间用&分隔。 例如&#xff1a; window.location.…

Axure琐碎细节

文章目录 琐碎细节注释预览编写原型图的时候可以把颜色改为灰色标尺竖直文字左对齐Axure中的文字怎么添加元件层级问题如何找到各种各样的形状&#xff0c;比如三角形了 五角星了 十字架了给按钮设置简单的交互动作通过锁来等比例缩放 琐碎细节 注释 有时候我们需要给我们的元…