摘要: ## 答案: 1. 任务1:What Nmap scanning switch employs the use of default scripts during a scan? `-sC` ![image](https://img2023.cnblogs.com/blog/1367845/2023 阅读全文
posted @ 2023-06-28 16:32 弟弟救我啊 阅读(40) 评论(0) 推荐(0) 编辑
摘要: ## 答案 1. 任务1:During our scan, which port do we find serving MySQL? `3306` ![image](https://img2023.cnblogs.com/blog/1367845/202306/1367845-20230628121 阅读全文
posted @ 2023-06-28 14:40 弟弟救我啊 阅读(34) 评论(0) 推荐(0) 编辑
摘要: ## 答案 1. 任务1:What does the acronym SQL stand for? `Structured Query Language` ![image](https://img2023.cnblogs.com/blog/1367845/202306/1367845-2023062 阅读全文
posted @ 2023-06-27 17:34 弟弟救我啊 阅读(119) 评论(0) 推荐(0) 编辑
摘要: ## 答案 1. 任务1:`6379` ![image](https://img2023.cnblogs.com/blog/1367845/202306/1367845-20230623221511350-1254846936.png) 2. 任务2:`redis` ![image](https:/ 阅读全文
posted @ 2023-06-23 22:49 弟弟救我啊 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ## 答案 1. 任务1:`Server Message Block` ![image](https://img2023.cnblogs.com/blog/1367845/202306/1367845-20230622203421894-44586413.png) 2. 任务2:`445` ![im 阅读全文
posted @ 2023-06-22 23:22 弟弟救我啊 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ## 答案 1. 任务1: `File Transfer Protocol` ![image](https://img2023.cnblogs.com/blog/1367845/202306/1367845-20230622004311684-831580175.png) 2. 任务2:`21` ! 阅读全文
posted @ 2023-06-22 01:31 弟弟救我啊 阅读(13) 评论(0) 推荐(0) 编辑
摘要: ## 环境准备 1. 注册 Hack The Box Lab账号 2. 安装Kali虚拟机 ## 入门 1. 连接到VPN 1.1 选择第一个, OpenVPN 1.2 点击“下载”按钮, 1.3 下载完成后,将文件复制到你的Kali中(位置你随意),这里我直接放在了桌面 ![image](http 阅读全文
posted @ 2023-06-22 00:35 弟弟救我啊 阅读(36) 评论(0) 推荐(1) 编辑
摘要: 上传链接上传文件前的准备: 一句话木马php文件 Example 1 1. 将准备好的文件直接上传进行测试。 2. 发现可以上传成功,根据页面提示点击here。 3.发现上传的后的文件在下图中的路径中。 4. 利用菜刀连接成功 Example 2 1. 利用上面的直接上传php文件后,返回提示 NO 阅读全文
posted @ 2019-04-04 11:04 弟弟救我啊 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 变量作用域- 变量按照作用域分类 - 全局变量: 在函数外部定义 - 局部变量:在函数内部定义- 变量的作用范围 - 全局变量:在整个全局都可以用,在局部也可以使用 - 局部变量只能在所在的函数内部使用,例如形参- LEGB原则 - L(local) 局部 - E(Elclosing function locale) 外部嵌套函数作用域 - G(Global module) 函数定义所在模... 阅读全文
posted @ 2018-09-10 17:51 弟弟救我啊 阅读(371) 评论(0) 推荐(0) 编辑
摘要: append() => list.append(value) ,在列表的最后插入元素 insert() => list.insert(n,value) , 在第n+1个元素前面插入value del() => del list[n] , 删除第n+1个元素 pop() => value = list 阅读全文
posted @ 2018-09-10 17:49 弟弟救我啊 阅读(184) 评论(0) 推荐(0) 编辑