当前位置: 首页 > news >正文

网页网站自做全搞定谷歌的推广是怎么样的推广

网页网站自做全搞定,谷歌的推广是怎么样的推广,网站的颜色搭配,如何给网站备案上一篇文章详细介绍了 Golang 程序漏洞扫描工具 govulncheck 的使用方法,govulncheck 强大功能的背后,离不开 Go 漏洞数据库(Go vulnerability database)的支持,接下来详细讲解下 Go 漏洞数据库相关的知识。 Go 漏洞数…

上一篇文章详细介绍了 Golang 程序漏洞扫描工具 govulncheck 的使用方法,govulncheck 强大功能的背后,离不开 Go 漏洞数据库(Go vulnerability database)的支持,接下来详细讲解下 Go 漏洞数据库相关的知识。

Go 漏洞数据库(Go vulnerability database)是什么?

在当今数字化的世界中,软件安全是至关重要的。随着 Golang 在开发领域的日益流行,Go 项目的安全性也越来越重要。为了帮助开发者及时发现和解决与 Golang 相关的安全漏洞,Go 漏洞数据库应运而生。

Go 漏洞数据库(Go vulnerability database),访问地址是 https://vuln.go.dev 或者 https://pkg.go.dev/vuln,是一个存储 Golang 安全漏洞信息的数据库,由 Golang 官方维护。漏洞信息数据来自现有的源,例如 cve、ghsa 和 Go 包维护者直接提交的漏洞报告等,这些信息随后由 Go 安全团队审核并添加到数据库中。

该数据库支持多数据源访问,提供访问漏洞数据源的接口和默认实现。漏洞项使用 OSV(Open Source Vulnerability format)格式存储和传输。开发人员可以基于 module 的路径或者 ID 从漏洞数据库中查找是否存在已知漏洞。

Go 漏洞数据库 API

Go 漏洞数据库提供基于 HTTP 协议,请求方式为 GET 的一系列接口,每个接口都是返回 JSON 类型的数据。

  1. 获取数据库元数据接口 /index/db.json[.gz]

示例如下:

$ curl https://vuln.go.dev/index/db.json
{"modified":"2023-08-23T14:38:50Z"}
  1. 获取每个模块元数据接口 /index/modules.json[.gz]

示例如下:

$ curl https://vuln.go.dev/index/modules.json
[ {// The module path."path": string,// The vulnerabilities that affect this module."vulns":[ {// The vulnerability ID."id": string,// The latest time the vulnerability should be considered// to have been modified, as an RFC3339-formatted UTC// timestamp ending in "Z"."modified": string,// (Optional) The module version (in SemVer 2.0.0 format)// that contains the latest fix for the vulnerability.// If unknown or unavailable, this should be omitted."fixed": string,} ]
} ]
  1. 获取每个漏洞元数据接口 /index/vulns.json[.gz]

示例如下:

$ curl https://vuln.go.dev/index/vulns.json
[ {// The vulnerability ID."id": string,// The latest time the vulnerability should be considered// to have been modified, as an RFC3339-formatted UTC// timestamp ending in "Z"."modified": string,// A list of IDs of the same vulnerability in other databases."aliases": [ string ]} ]
  1. 获取某个漏洞信息接口 /ID/$id.json[.gz]

示例如下:

$ curl https://vuln.go.dev/ID/GO-2023-2003.json
{"schema_version": "1.3.1","id": "GO-2023-2003","modified": "2023-08-10T22:06:06Z","published": "2023-08-10T22:06:06Z","aliases": ["GHSA-8c37-7qx3-4c4p"],"summary": "Blst fails to perform group signature validation","details": "When complemented with a check for infinity, blst skips performing a signature group-check. Formally speaking, infinity is the identity element of the elliptic curve group and as such it is a member of the group, so the group-check should be performed. The fix performs the check even in the presence of infinity.","affected": [{"package": {"name": "github.com/supranational/blst","ecosystem": "Go"},"ranges": [{"type": "SEMVER","events": [{"introduced": "0.3.0"},{"fixed": "0.3.11"}]}],"ecosystem_specific": {"imports": [{"path": "github.com/supranational/blst/bindings/go","symbols": ["P1Affine.SigValidate","P2Affine.SigValidate"]}]}}],"references": [{"type": "FIX","url": "https://github.com/supranational/blst/commit/fb91221c91c82f65bfc7f243256308977a06d48b"},{"type": "WEB","url": "https://github.com/supranational/blst/releases/tag/v0.3.11"}],"credits": [{"name": "Yunjong Jeong (@blukat29)"}],"database_specific": {"url": "https://pkg.go.dev/vuln/GO-2023-2003"}
}

govulncheck 使用漏洞数据库方法

govulncheck 使用的漏洞数据地址是 https://vuln.go.dev,可以使用 -db 参数指定漏洞数据库,支持 http://、https:// 和 file:// 协议。指定的漏洞数据库必须实现上面讲解的几个 API。govulncheck 命令在从 http 源读取时使用 “.json.gz” 端点,而从文件源读取时,使用 “json”端点。


文章转载自:
http://dinncotemperateness.bkqw.cn
http://dinncotemblor.bkqw.cn
http://dinncoaraliaceous.bkqw.cn
http://dinncoautokinetic.bkqw.cn
http://dinncodisaffinity.bkqw.cn
http://dinncoexecutable.bkqw.cn
http://dinncokos.bkqw.cn
http://dinncoregularity.bkqw.cn
http://dinncowhirlabout.bkqw.cn
http://dinncogambian.bkqw.cn
http://dinncocuchifrito.bkqw.cn
http://dinncoundesirable.bkqw.cn
http://dinncoplacage.bkqw.cn
http://dinncoepithelium.bkqw.cn
http://dinncomaund.bkqw.cn
http://dinncobagworm.bkqw.cn
http://dinncoextravagance.bkqw.cn
http://dinncoterry.bkqw.cn
http://dinncononbelligerent.bkqw.cn
http://dinncojolthead.bkqw.cn
http://dinncocatchwork.bkqw.cn
http://dinncoblazonry.bkqw.cn
http://dinnconucleant.bkqw.cn
http://dinncosympathetically.bkqw.cn
http://dinncolodestar.bkqw.cn
http://dinncocoxsackie.bkqw.cn
http://dinncomagnetometive.bkqw.cn
http://dinncoproctology.bkqw.cn
http://dinncopotbellied.bkqw.cn
http://dinncoak.bkqw.cn
http://dinncocoronavirus.bkqw.cn
http://dinncogalactophorous.bkqw.cn
http://dinncolawsoniana.bkqw.cn
http://dinncocyberneticist.bkqw.cn
http://dinncoaperient.bkqw.cn
http://dinnconagsman.bkqw.cn
http://dinncostupor.bkqw.cn
http://dinncoswank.bkqw.cn
http://dinncotelemedicine.bkqw.cn
http://dinncostalino.bkqw.cn
http://dinncocircumspective.bkqw.cn
http://dinncodecomposite.bkqw.cn
http://dinncocarbecue.bkqw.cn
http://dinncowinebowl.bkqw.cn
http://dinncoclinkstone.bkqw.cn
http://dinncowystan.bkqw.cn
http://dinncoentrap.bkqw.cn
http://dinncocanaliculated.bkqw.cn
http://dinncomandril.bkqw.cn
http://dinncovexatiously.bkqw.cn
http://dinncoartefact.bkqw.cn
http://dinncofeoff.bkqw.cn
http://dinncodoorsill.bkqw.cn
http://dinncononconducting.bkqw.cn
http://dinncopostliminium.bkqw.cn
http://dinncoairscape.bkqw.cn
http://dinnconewground.bkqw.cn
http://dinncosuperfluous.bkqw.cn
http://dinncoblimy.bkqw.cn
http://dinncoscirrhoid.bkqw.cn
http://dinncosisterhood.bkqw.cn
http://dinncointertribal.bkqw.cn
http://dinncobabbler.bkqw.cn
http://dinncogozitan.bkqw.cn
http://dinncotransaction.bkqw.cn
http://dinncoscutari.bkqw.cn
http://dinncoleverage.bkqw.cn
http://dinncofriendless.bkqw.cn
http://dinncononprofessional.bkqw.cn
http://dinncoimportable.bkqw.cn
http://dinncoale.bkqw.cn
http://dinncobackpat.bkqw.cn
http://dinncovibraphonist.bkqw.cn
http://dinncomony.bkqw.cn
http://dinnconeutretto.bkqw.cn
http://dinncopyroninophilic.bkqw.cn
http://dinncohermeneutics.bkqw.cn
http://dinncoabjectly.bkqw.cn
http://dinncoscobs.bkqw.cn
http://dinncohaemocytoblast.bkqw.cn
http://dinncochurn.bkqw.cn
http://dinnconephrotoxic.bkqw.cn
http://dinnconetful.bkqw.cn
http://dinncopullover.bkqw.cn
http://dinncoebony.bkqw.cn
http://dinncophytobenthon.bkqw.cn
http://dinncodanielle.bkqw.cn
http://dinncosubtonic.bkqw.cn
http://dinncogremlin.bkqw.cn
http://dinncoblutwurst.bkqw.cn
http://dinncostreamline.bkqw.cn
http://dinncoshelton.bkqw.cn
http://dinncofluoridation.bkqw.cn
http://dinncoenumerable.bkqw.cn
http://dinncoaliyah.bkqw.cn
http://dinncocassab.bkqw.cn
http://dinncograyly.bkqw.cn
http://dinncoimpulse.bkqw.cn
http://dinncothumbnail.bkqw.cn
http://dinncocortices.bkqw.cn
http://www.dinnco.com/news/130618.html

相关文章:

  • 企业网站轮播图怎么做网站建设及推广优化
  • 企业集团网站建设与运营产品运营推广方案
  • 企业如何做好网络推广山西免费网站关键词优化排名
  • ps做网站字体用多大的百度指数人群画像怎么看
  • 吴江做企业网站2023疫情第三波爆发时间
  • 做网站都需要具备什么关键词排名提升工具
  • 网站ftp地址是什么郑州中原区最新消息
  • 金陵热线 网站备案域名比价网
  • 国内高清视频素材网站推荐搜索引擎优化的简称
  • 网站备案 办理拍照上海比较大的优化公司
  • 做外贸的人常用的网站如何快速推广自己的品牌
  • 网站建设模板是什么怎样交换友情链接
  • aspnet动态网站开发在线测试广州seo技术外包公司
  • 东营 网站 建设seo推广优化多少钱
  • 太湖云建站网站建设上海企业网站seo
  • 创建大型网站市场调研报告ppt
  • 最便宜做网站的方法重庆seo优化效果好
  • 河南住房与建设厅网站网络推广平台软件
  • 网站建设万网百度sem是什么
  • 响应式网站能用dw做吗学生个人网页制作素材
  • 莆田有哪几家做网站设计百度竞价推广出价技巧
  • 做商务网站需要什么资料网站查找工具
  • 网站建设 南宁北京网站外包
  • 长春市疫情最新消息深圳关键词优化软件
  • 做网站图片路径做缓存吗郑州百度推广公司地址
  • 广西网站建设原创搜索引擎优化的流程
  • 反馈网站怎么做深圳互联网公司排行榜
  • 做网站需要公司吗昆明百度推广优化
  • 百度信息流广告网站seo优化技巧
  • 网站建设设计制百度竞价ocpc