摘要: 一:ARP概述 ARP(Address Resolution Protocol)是地址解析协议,是一种将IP地址转化为物理地址的协议。具体来说就是将网络层地址(IP)解析为数据链路层的物理地址(一般为mac地址)。在局域网中,数据本质是根据mac地址进行传输投放。而ARP欺骗本质是利用arp协议本身 阅读全文
posted @ 2019-07-11 09:12 粑粑_real 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 1. 概述 文件上传漏洞可以说是日常渗透测试中用得最多的一个漏洞,用它获得服务器权限最快最直接。在Web程序中,经常需要用到文件上传的功能。如用户或者管理员上传图片,或者其它文件。如果没有限制上传类型或者限制不严格被绕过,就有可能造成文件上传漏洞。如果上传了可执行文件或者网页脚本,就会导致网站被控制 阅读全文
posted @ 2019-07-11 09:04 粑粑_real 阅读(2105) 评论(0) 推荐(0) 编辑
摘要: 一:c语言编写简单函数(function_example.c) 二:gcc编译 三:objdump查看C语言和对应汇编 阅读全文
posted @ 2019-06-10 09:21 粑粑_real 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 题目描述 "https://leetcode.com/problems/median of two sorted arrays/" 解决方法 一: class Solution(object): def findMedianSortedArrays(self, nums1, nums2): """ 阅读全文
posted @ 2019-06-05 17:57 粑粑_real 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 题目描述 "https://leetcode.com/problems/longest substring without repeating characters/" 解决方法 一: 阅读全文
posted @ 2019-06-05 17:55 粑粑_real 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 题目描述 "https://leetcode.com/problems/add two numbers/" 解决方法 Definition for singly linked list. class ListNode(object): def __init__(self, x): self.val 阅读全文
posted @ 2019-06-05 14:42 粑粑_real 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 题目描述 "https://leetcode.com/problems/two sum/" 解决方法 一: 复制列表内容 L = [1,2,3] LL = L.copy() 或LL = L[:] 二: class Solution(object): def twoSum(self, nums, ta 阅读全文
posted @ 2019-06-04 21:26 粑粑_real 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 一:脚本自动化安装【install.sh】 1.1 判断Linux系统位数 1.2 判断当前用户是否具有root权限,从而跳转sh的命令格式 1.3 检查安装下载所需的命令,wget、curl从而调整远程下载xunfeng库的命令 1.4 检查系统,并安装不同系统的依赖以及判断是否支持该系统 1.5 阅读全文
posted @ 2019-05-20 23:40 粑粑_real 阅读(1687) 评论(0) 推荐(0) 编辑
摘要: 一:Some index files failed to download, they have been ignored, or old ones used instead. 更换国内源,修改/etc/apt/sources.list 文件的源地址 可删除掉sources.list 文件内容或备份 阅读全文
posted @ 2019-05-20 22:16 粑粑_real 阅读(1673) 评论(0) 推荐(0) 编辑
摘要: 一:flash配合307跳转绕过 利用方式: "http://remote_ip/csrf/test.swf?jsonData=" {"status":"0","roleId":5,"name":"csrftest_2","username":"csrftest_2","password":"637 阅读全文
posted @ 2019-05-18 10:48 粑粑_real 阅读(776) 评论(0) 推荐(0) 编辑