Joker零安全手把手教你如何搭建vulfocus靶场_vulfocus靶场搭建

学习路线:

这个方向初期比较容易入门一些,掌握一些基本技术,拿起各种现成的工具就可以开黑了。不过,要想从脚本小子变成黑客大神,这个方向越往后,需要学习和掌握的东西就会越来越多以下是网络渗透需要学习的内容:
在这里插入图片描述

需要体系化学习资料的朋友,可以加我V获取:vip204888 (备注网络安全)

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化资料的朋友,可以点击这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

docker命令
#docker帮助命令
docker -help
#查看docker版本
docker -v
#开启docker
systemctl start docker
#停止docker
systemctl stop docker
#重启docker
systemctl restart docker
#设置docker开机自启动
systemctl enable docker
#查看docker状态
systemctl status docker

docker容器命令
#查看docker镜像列表
docker images
#查看正在运行的docker容器
docker ps
#查看所有docker容器
docker ps -a
#开启docker容器
docker-compose up -d
#停止docker容器
docker-compose down
#开启/停止/删除docker指定容器
docker start/stop/rm 容器ID
#删除已停止docker容器
docker rm $(docker ps -a -q)
#删除所有docker容器
docker rmi $(docker images -q)
#进入交互docker
docker exec -it 容器ID /bin/bash


### 下载vulfocus


* **执行命令下载vulfocus,该命令会自动进入vulfocus-master文件夹,如未进入则需手动进入以配置后面端口信息;(注:这里演示的是`vps`搭建,也可本地`kali`搭建)**



wget https://github.com/fofapro/vulfocus/archive/refs/heads/master.zip && unzip master.zip && cd vulfocus-master


![在这里插入图片描述](https://img-blog.csdnimg.cn/6931f96cb7a94bcca13faf8498c1cf8b.png#pic_center)


### 配置信息


* **默认的`80`端口可能会冲突,可修改为其他端口,这里修改为`8081`端口,其次就是修改IP为搭建环境的IP(`两处`);**



vi docker-compose.yaml


![在这里插入图片描述](https://img-blog.csdnimg.cn/72a92d44c05c4fbb8a8ce74c57906293.png#pic_center)


* **执行命令拉取vulfocus镜像;**



docker-compose up -d


![在这里插入图片描述](https://img-blog.csdnimg.cn/8a91a7937ec64fda8b86428f4285c6bb.png#pic_center)


* **查看正在运行的容器,看到成功将本地的`80`端口映射到`8081`端口了;**



docker ps


![在这里插入图片描述](https://img-blog.csdnimg.cn/a8ebb0ec52904442a03c4fcdaeecfc51.png#pic_center)


### vulfocus


* **访问`vps-ip+端口`,用户和密码默认都是`admin`;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/61d79bb623314fa7b3d9d79fdf0183c3.png#pic_center)


* **来到镜像管理,可一键同步所有的靶场镜像;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/d015e195f012462590af187c17d09bab.png#pic_center)


* **搜索想要拉取的镜像,下载即可;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/a468d78eefa943d79abd32e33bc17139.png#pic_center)


* **返回到首页查看拉取的镜像,启动访问即可;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/dfd5f6a5f72349698234c57b30dac37d.png#pic_center)


* **当然,也可以添加场景,根据自己的想法来设置,不错不错😆;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/abfa386e6847467e986ac701389e6cc5.png#pic_center)


#### 编排模式


* **创建编排模式,注意只能创建拉取下载了的镜像哟;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/39a926e113424b33923e1a1bc208ebd6.png#pic_center)


* **点击右上角保存,然后输入信息;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/b6d2ce87cb174005840914a03dfdd1d8.png#pic_center)


* **将创建的镜像发布出去,然后来到场景位置启动环境就可以开启打靶之路啦;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/188949bf2faf4f4593397243087daa89.png#pic_center)  
 ![在这里插入图片描述](https://img-blog.csdnimg.cn/05c037fd59bd4b329105d2c38113d695.png#pic_center)


#### 计时模式


* **选择计时模式,然后填写漏洞信息,设置适合的时长及其计时类型;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/00469cf61f864897b694f5c7bfe5f25d.png#pic_center)


* **下一步继续输入后点击完成,还是一样的回到场景启动环境即可;**


![在这里插入图片描述](https://img-blog.csdnimg.cn/57629efac65243048d345196cccdd108.png#pic_center)


![在这里插入图片描述](https://img-blog.csdnimg.cn/1c65184566bc4596a043a39960720ec9.png#pic_center)  
 **上一篇 > [vulhub靶场环境搭建]( )**


以上内容就是vulfocus手把手环境搭建全过程呢,如有还不太理解或有其他想法的小伙伴们都可以私信我或评论区打出来哟,如有写的不好的地方也请大家多多包涵一下,我也会慢慢去改进和提高的,请各位小伙伴多多支持,走之前别忘了点个赞哟😁!


**`Joker零安全`微信公众号后续也会慢慢更新文章,希望各位小伙伴多多支持哟~~**




### 给大家的福利


**零基础入门**


对于从来没有接触过网络安全的同学,我们帮你准备了详细的学习成长路线图。可以说是最科学最系统的学习路线,大家跟着这个大的方向学习准没问题。


![](https://img-blog.csdnimg.cn/img_convert/95608e9062782d28f4f04f821405d99a.png)


同时每个成长路线对应的板块都有配套的视频提供:


![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/a91b9e8100834e9291cfcf1695d8cd42.png#pic_center)

因篇幅有限,仅展示部分资料

**需要体系化学习资料的朋友,可以加我V获取:vip204888 (备注网络安全)**

**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**

**[需要这份系统化资料的朋友,可以点击这里获取](https://bbs.csdn.net/topics/618540462)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

  • 7
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
greenplum-db-6.2.1-rhel7-x86_64.rpm Pivotal Greenplum 6.2 Release Notes This document contains pertinent release information about Pivotal Greenplum Database 6.2 releases. For previous versions of the release notes for Greenplum Database, go to Pivotal Greenplum Database Documentation. For information about Greenplum Database end of life, see Pivotal Greenplum Database end of life policy. Pivotal Greenplum 6 software is available for download from the Pivotal Greenplum page on Pivotal Network. Pivotal Greenplum 6 is based on the open source Greenplum Database project code. Important: Pivotal Support does not provide support for open source versions of Greenplum Database. Only Pivotal Greenplum Database is supported by Pivotal Support. Release 6.2.1 Release Date: 2019-12-12 Pivotal Greenplum 6.2.1 is a minor release that includes new features and resolves several issues. New Features Greenplum Database 6.2.1 includes these new features: Greenplum Database supports materialized views. Materialized views are similar to views. A materialized view enables you to save a frequently used or complex query, then access the query results in a SELECT statement as if they were a table. Materialized views persist the query results in a table-like form. Materialized view data cannot be directly updated. To refresh the materialized view data, use the REFRESH MATERIALIZED VIEW command. See Creating and Managing Materialized Views. Note: Known Issues and Limitations describes a limitation of materialized view support in Greenplum 6.2.1. The gpinitsystem utility supports the --ignore-warnings option. The option controls the value returned by gpinitsystem when warnings or an error occurs. If you specify this option, gpinitsystem returns 0 if warnings occurred during system initialization, and returns a non-zero value if a fatal error occurs. If this option is not specified, gpinitsystem returns 1 if initialization completes with warnings, and returns value of 2 or greater if a fatal error occurs. PXF version 5.10.0 is included, which introduces several new and changed features and bug fixes. See PXF Version 5.10.0 below. PXF Version 5.10.0 PXF 5.10.0 includes the following new and changed features: PXF has improved its performance when reading a large number of files from HDFS or an object store. PXF bundles newer tomcat and jackson libraries. The PXF JDBC Connector now supports pushdown of OR and NOT logical filter operators when specified in a JDBC named query or in an external table query filter condition. PXF supports writing Avro-format data to Hadoop and object stores. Refer to Reading and Writing HDFS Avro Data for more information about this feature. PXF is now certified with Hadoop 2.x and 3.1.x and Hive Server 2.x and 3.1, and bundles new and upgraded Hadoop libraries to support these versions. PXF supports Kerberos authentication to Hive Server 2.x and 3.1.x. PXF supports per-server user impersonation configuration. PXF supports concurrent access to multiple Kerberized Hadoop clusters. In previous releases of Greenplum Database, PXF supported accessing a single Hadoop cluster secured with Kerberos, and this Hadoop cluster must have been configured as the default PXF server. PXF introduces a new template file, pxf-site.xml, to specify the Kerberos and impersonation property settings for a Hadoop or JDBC server configuration. Refer to About Kerberos and User Impersonation Configuration (pxf-site.xml) for more information about this file. PXF now supports connecting to Hadoop with a configurable Hadoop user identity. PXF previously supported only proxy access to Hadoop via the gpadmin Greenplum user. PXF version 5.10.0 deprecates the following configuration properties. Note: These property settings continue to work. The PXF_USER_IMPERSONATION, PXF_PRINCIPAL, and PXF_KEYTAB settings in the pxf-env.sh file. You can use the pxf-site.xml file to configure Kerberos and impersonation settings for your new Hadoop server configurations. The pxf.impersonation.jdbc property setting in the jdbc-site.xml file. You can use the pxf.service.user.impersonation property to configure user impersonation for a new JDBC server configuration. Note: If you have previously configured a PXF JDBC server to access Kerberos-secured Hive, you must upgrade the server definition. See Upgrading PXF in Greenplum 6.x for more information. Changed Features Greenplum Database 6.2.1 includes these changed features: Greenplum Stream Server version 1.3.1 is included in the Greenplum distribution. Resolved Issues Pivotal Greenplum 6.2.1 is a minor release that resolves these issues: 29454 - gpstart During Greenplum Database start up, the gpstart utility did not report when a segment instance failed to start. The utility always displayed 0 skipped segment starts. This issue has been resolved. gpstart output was also enhanced to provide additional warnings and summary information about the number of skipped segments. For example: [WARNING]:-********

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值