摘要: nginx-ingress官网 https://github.com/kubernetes/ingress-nginx Ingress里Nginx的代理流程: 1.部署ingress-nginx-controller 下载Ingress-Nginx部署文件确定版本首先确定版本:https://git 阅读全文
posted @ 2024-06-28 17:03 大司徒 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Nessus简介 Nessus是十分强大的漏洞扫描器,内含最新的漏洞数据库,检测速度快,准确性高。 下载地址: https://www.tenable.com/downloads/nessus 一、安装 可以windows,linux,docker 等方式安装 本次采用docker方式安装 dock 阅读全文
posted @ 2024-05-09 15:00 大司徒 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 一、软件介绍 Acunetix Web Vulnerability Scanner(简称AWVS)是一款知名的Web网络漏洞扫描工具,它通过网络爬虫测试你的网站安全,检测流行安全漏洞。AWVS官方网站是:http://www.acunetix.com/ 软件有window版本,linux版本,还可以 阅读全文
posted @ 2024-05-09 14:52 大司徒 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 官网 https://www.anaconda.com/ 一、下载 https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/?C=M&O=D ubuntu系统下载 Miniconda3-latest-Linux-x86_64.sh 二、安装 执 阅读全文
posted @ 2024-05-07 16:35 大司徒 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 官网 https://waf-ce.chaitin.cn/ 1、安装雷池 在Linux系统上执行如下命令 (需要docker环境,提前把docker、docker-compose 装好) bash -c "$(curl -fsSLk https://waf-ce.chaitin.cn/release 阅读全文
posted @ 2024-03-21 15:53 大司徒 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 先简要介绍下Resin,resin是java的web服务容器,和tomcat同等产品,性能比tomcat优秀。启动服务之后,一般会存在这几个端口:1、WatchDog(监听狗 哈哈)端口, 默认:66002、Server监听端口,默认:68003、应用的Http端口(可自定义),默认:8080说明: 阅读全文
posted @ 2024-03-08 11:28 大司徒 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1、将数据库中某个数据库备份 $ mysqldump -uroot -pPassword [db_name] > [file_name] 例: mysqldump -uroot -p123456 test > test.sql 生成的test.sql包含数据结构和数据. 2.远程备份 $ mysql 阅读全文
posted @ 2024-02-23 15:54 大司徒 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1、引入spingsecurity依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> 启动项目访 阅读全文
posted @ 2024-02-05 15:24 大司徒 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1 base64编码 1.1 什么是Base64 所谓Base64,就是说选出64个字符:小写字母a-z、大写字母A-Z、数字0-9、符号"+"、"/"(再加上作为垫字的"=",实际上是使用65个字符),作为一个基本字符集。然后,其他所有符号都转换成这个字符集中的字符。 1.2 linux base 阅读全文
posted @ 2024-01-30 11:41 大司徒 阅读(15) 评论(0) 推荐(0) 编辑
摘要: swagger的使用 1、导入依赖 <!-- swagger依赖--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> 阅读全文
posted @ 2024-01-29 17:23 大司徒 阅读(5) 评论(0) 推荐(0) 编辑