{"id":19755734,"url":"https://github.com/fofapro/vulfocus-spring-boot-starter","last_synced_at":"2026-05-01T06:31:33.901Z","repository":{"id":57726979,"uuid":"430959886","full_name":"fofapro/vulfocus-spring-boot-starter","owner":"fofapro","description":null,"archived":false,"fork":false,"pushed_at":"2021-11-27T08:57:31.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-08T15:58:54.067Z","etag":null,"topics":["java","spring-boot","vulfocus"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fofapro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-23T04:37:33.000Z","updated_at":"2021-12-04T13:33:41.000Z","dependencies_parsed_at":"2022-09-11T17:03:12.076Z","dependency_job_id":null,"html_url":"https://github.com/fofapro/vulfocus-spring-boot-starter","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fofapro/vulfocus-spring-boot-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fofapro%2Fvulfocus-spring-boot-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fofapro%2Fvulfocus-spring-boot-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fofapro%2Fvulfocus-spring-boot-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fofapro%2Fvulfocus-spring-boot-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fofapro","download_url":"https://codeload.github.com/fofapro/vulfocus-spring-boot-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fofapro%2Fvulfocus-spring-boot-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32487300,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","spring-boot","vulfocus"],"created_at":"2024-11-12T03:12:56.454Z","updated_at":"2026-05-01T06:31:33.884Z","avatar_url":"https://github.com/fofapro.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vulfocus-spring-boot-starter\n\n\n\n[![GitHub (pre-)release](https://img.shields.io/github/release/fofapro/vulfocus-spring-boot-starter/all.svg)](https://github.com/fofapro/vulfocus-spring-boot-starter/releases) [![stars](https://img.shields.io/github/stars/fofapro/vulfocus-spring-boot-starter.svg)](https://github.com/fofapro/vulfocus-spring-boot-starter/stargazers) [![license](https://img.shields.io/github/license/fofapro/vulfocus-spring-boot-starter.svg)](https://github.com/fofapro/vulfocus-spring-boot-starter/blob/master/LICENSE)\n\n[Chinese document](https://github.com/fofapro/vulfocus-spring-boot-starter/blob/master/README_zh.md)\n\n## Vulfocus API\n\n\n[`Vulfocus API`](https://fofapro.github.io/vulfocus/#/VULFOCUSAPI) is the `RESUFul API` interface provided by [`Vulfocus`](http://vulfocus.io/) for development, allowing Developers integrate [`Vulfocus`](http://vulfocus.io) in their own projects.\n\n## Vulfocus SDK\n\nThe `Spring Boot` version of `SDK` written based on the [`Vulfocus API`](https://fofapro.github.io/vulfocus/#/VULFOCUSAPI) makes it easy for `Spring Boot` developers to quickly integrate [`Vulfocus`](http://vulfocus.io/)  into their projects.\n\n## Add dependency\n\n### Apache Maven\n\n```\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.r4v3zn.vulfocus\u003c/groupId\u003e\n  \u003cartifactId\u003evulfocus-spring-boot-starter\u003c/artifactId\u003e\n  \u003cversion\u003e0.0.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## USE\n\n|field|description|\n| ---- | ---- |\n|`addr`|[`Vulfocus`](http://vulfocus.io/) URL|\n|`username`|User login [`Vulfocus`](http://vulfocus.io/) userbox `username`|\n|`licence`|Please go to the [`personal center`](http://vulfocus.fofa.so/#/profile/index) to view `API licence`|\n\n### Configuration\n\nConfigure the `application.yml` or `application.properties` file.\n\n#### application.yml\n```yaml\nvulfocus:\n  username: \n  license: \n```\n#### application.properties\n```properties\nvulfocus.username=\nvulfocus.license=\n```\n\n### Pull Images\n\n#### Code\n\n```java\n@Autowired\nprivate FofaClient client;\n\npublic void test() throws Exception {\n  List\u003cImageEntity\u003e imageEntityList = client.imageList();\n  System.out.println(imageEntityList);\n}\n```\n\n#### Response\n\n```\n[ImageEntity{imageName='vulfocus/webmin-cve_2020_35606:latest', imageVulName='Webmin 命令执行漏洞 （CVE-2020-35606）', imageDesc='Webmin是Webmin社区的一套基于Web的用于类Unix操作系统中的系统管理工具。\nWebmin 1.962版本及之前版本存在安全漏洞，该漏洞允许执行任意命令。任何被授权使用Package Updates模块的用户都可以使用根权限通过包含和的向量执行任意命令。\n账户密码：root:password'}]\n```\n\n### Start\n\n#### Code\n\n```java\n@Autowired\nprivate FofaClient client;\n\npublic void test() throws Exception {\n  List\u003cImageEntity\u003e imageEntityList = client.imageList();\n  ImageEntity imageEntity = imageEntityList.get(0);\n  System.out.println(imageEntity);\n  System.out.println(client.start(imageEntity.getImageName()));\n}\n```\n\n\n#### Response\n\n```\nImageEntity{imageName='vulfocus/webmin-cve_2020_35606:latest', imageVulName='Webmin 命令执行漏洞 （CVE-2020-35606）', imageDesc='Webmin是Webmin社区的一套基于Web的用于类Unix操作系统中的系统管理工具。\nWebmin 1.962版本及之前版本存在安全漏洞，该漏洞允许执行任意命令。任何被授权使用Package Updates模块的用户都可以使用根权限通过包含和的向量执行任意命令。\n账户密码：root:password'}\n\nHostEntity{host='118.193.36.37:54240', port='{\"10000\": \"54240\"}'}\n```\n\n### Stop\n\n#### Code\n\n```java\n@Autowired\nprivate FofaClient client;\n\npublic void test() throws Exception {\n  List\u003cImageEntity\u003e imageEntityList = client.imageList();\n  ImageEntity imageEntity = imageEntityList.get(0);\n  System.out.println(imageEntity);\n  System.out.println(client.stop(imageEntity.getImageName()));\n}\n```\n\n#### Response\n\n```\nImageEntity{imageName='vulfocus/webmin-cve_2020_35606:latest', imageVulName='Webmin 命令执行漏洞 （CVE-2020-35606）', imageDesc='Webmin是Webmin社区的一套基于Web的用于类Unix操作系统中的系统管理工具。\nWebmin 1.962版本及之前版本存在安全漏洞，该漏洞允许执行任意命令。任何被授权使用Package Updates模块的用户都可以使用根权限通过包含和的向量执行任意命令。\n账户密码：root:password'}\n\n停止成功\n```\n\n### Delete\n\n#### Code\n\n```java\n@Autowired\nprivate FofaClient client;\n\npublic void test() throws Exception {\n  List\u003cImageEntity\u003e imageEntityList = client.imageList();\n  ImageEntity imageEntity = imageEntityList.get(0);\n  System.out.println(imageEntity);\n  System.out.println(client.delete(imageEntity.getImageName()));\n}\n```\n\n#### Response\n\n```\nImageEntity{imageName='vulfocus/webmin-cve_2020_35606:latest', imageVulName='Webmin 命令执行漏洞 （CVE-2020-35606）', imageDesc='Webmin是Webmin社区的一套基于Web的用于类Unix操作系统中的系统管理工具。\nWebmin 1.962版本及之前版本存在安全漏洞，该漏洞允许执行任意命令。任何被授权使用Package Updates模块的用户都可以使用根权限通过包含和的向量执行任意命令。\n账户密码：root:password'}\n\n删除成功\n```\n\n## Update Log\n\n2021-11-27\n\n```\nRelease\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffofapro%2Fvulfocus-spring-boot-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffofapro%2Fvulfocus-spring-boot-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffofapro%2Fvulfocus-spring-boot-starter/lists"}