Writing Reports PEN TEST REPORT Communicate findings AND recommendations Primary recommendations Only change to make your points Digest of all activit ...
分类:
Web程序 时间:
2020-12-21 11:11:34
阅读次数:
0
SpringBoot整合Filter有两种方式: 方式一:通过扫描注解方式完成Filter组件注册 步骤一:创建一个Filter package com.shiqp.test.filter; import java.io.IOException; import javax.servlet.Filte ...
分类:
编程语言 时间:
2020-12-21 11:09:40
阅读次数:
0
一、Spring部分 1、Spring的运行流程 第一步:加载配置文件ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml");,ApplicationContext接口,它由BeanFactory接口派生而来,因 ...
分类:
其他好文 时间:
2020-12-21 11:09:13
阅读次数:
0
1.分离视频音频流 ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流 ffmpeg -i input_file -acodec copy -vn output_file_audio //分离音频流 2.视频解复用 ffmp ...
分类:
其他好文 时间:
2020-12-19 13:22:49
阅读次数:
1
故事背景 这段时间在做一个nginx + uwsgi + python的项目,有个需求是需要在服务运行过程中可以改变配置并生效,可以理解为热重载. 之前这些配置都是写死在项目的配置文件中的基础配置,一般就是python项目中的config.py文件. 现在配置变更使用了开源的apollo作为管理端, ...
分类:
编程语言 时间:
2020-12-19 13:12:39
阅读次数:
1
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <!--serv ...
分类:
其他好文 时间:
2020-12-19 12:48:33
阅读次数:
1
# 基本操作from selenium import webdriverimport timedriver = webdriver.Chrome() # 指定webdriver的位置driver.get('https://www.baidu.com') # 打开指定的网址time.sleep(3)d ...
分类:
其他好文 时间:
2020-12-18 13:17:38
阅读次数:
3
let obj={ name:'金毛' } function test(){ console.log(123,this) } test.call(obj,'123') //手写 Function.prototype.myCall=function(thisObj,arr){ let Fn = thi ...
分类:
其他好文 时间:
2020-12-18 12:55:04
阅读次数:
3
Ruby Script Demo Portscan.rb #!/usr/bin/ruby require 'socket' TARGET = ARGV[0] || '192.168.2.22' MINPORT = ARGV[1] || 22 MAXPORT = ARGV[2] || 80 $i = ...
分类:
Web程序 时间:
2020-12-18 12:51:30
阅读次数:
4
1 type testName = 'lx' | 'bj' | 'cd' | 1; 2 3 function testFun(arg1: testName){ 4 5 } 6 testFun('lx'); //正确 7 testFun(1); //正确 8 testFun('ll'); //错误 ...
分类:
其他好文 时间:
2020-12-18 12:35:08
阅读次数:
2