0%

网络安全学习路线

p9iwnpt.jpg

一、BurpSuite学习

1、使用浏览器给burp代理,进行拦截,获得数据,然后改文件名字或者MIME,达到符合前后端的过滤要求,等文件成功传输到后端,再用菜刀链接。

图解HTTP

HTTP协议的职责(客户端)

生成针对目标web服务器的HTTP请求报文

TCP协议的职责(客户端)

为了方便通信,将HTTP请求报文分割成报文段按序号分成多个报文段,把每个报文段可靠地传给对方

IP协议的职责(路由器)

搜索对方的地址,一边中转一边传送

Vue学习笔记

一、二维数组尝试

1
2
3
4
5
6
7
var vm = new Vue({
	el: "#app",
	data: {
	huilv:[
	[6.8540, 132.9787, 1298.7013, 1.3278],
	[6.8540, 132.9787, 1298.7013, 1.3278]
		],}

二、watch监听实现

1
2
3
4
5
6
7
8
watch: {
			first: function(newValue) {
	  this.second = newValue * this.huilv[Number(this.firstbutton - 1)][Number(this.secondbutton -1)];
					},
			second: function(newValue) {
		this.first = newValue / this.huilv[Number(this.firstbutton - 1)][Number(this.secondbutton -1)];
					}
				}

三、数组的更新检测

#变更方法

Vue 将被侦听的数组的变更方法进行了包裹,所以它们也将会触发视图更新。这些被包裹过的方法包括: