上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: Virtual Environments and Packages 1.介绍 python常常使用非标准库中的模块。在开发Python应用程序的时候,系统安装的Python3只有一个版本:python3.7。所有第三方的包都会被pip安装到Python3的site-packages目录下。 当一个工 阅读全文
posted @ 2021-09-09 15:13 菜就多练forever 阅读(1625) 评论(0) 推荐(0) 编辑
摘要: 常见的敏感信息路径: Windows系统 c:\boot.ini // 查看系统版本 c:\windows\system32\inetsrv\MetaBase.xml // IIS配置文件 c:\windows\repair\sam // 存储Windows系统初次安装的密码 c:\ProgramF 阅读全文
posted @ 2021-09-04 19:13 菜就多练forever 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 原理 @app.route('/test/') def test(): code = request.args.get('id') html = ''' <h3>%s</h3> '''%(code) return render_template_string(html) code变量可控,可以进行x 阅读全文
posted @ 2021-08-25 00:52 菜就多练forever 阅读(272) 评论(0) 推荐(0) 编辑
摘要: windows windows与linux共享目录 samba服务 MAC 1.JDK多版本切换 网络 1.github加速 GitHub 镜像访问 这里提供两个最常用的镜像地址: https://github.com.cnpmjs.org https://hub.fastgit.org 也就是说上 阅读全文
posted @ 2021-08-23 00:45 菜就多练forever 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 监测主机存活python小脚本 @(coding)[python,笔记] 此脚本用于监测主机存活性。原理:通过向目标主机发送icmp数据包测试,通过python循环和定时任务来完成,很简单。IP替换为监测主机ip,3是设置的时间,每三秒监测一次。 # --*-- coding:utf-8 --*-- 阅读全文
posted @ 2021-08-22 23:30 菜就多练forever 阅读(260) 评论(0) 推荐(0) 编辑
摘要: vulhub4下载地址自己搜索。 信息搜集 扫描靶机ip,netdiscover -i eth0,找到靶机ip为192.168.136.140 root@w0rk:~# dirb http://192.168.79.132/ root@w0rk:~# searchsploit phpmail 获取w 阅读全文
posted @ 2021-01-07 16:43 菜就多练forever 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 1HTTP简介 2http工作原理 3 HTTP请求报文 3.1 请求行信息 request method请求方法。在HTML文档中书写get和post,大小写都可以,但在HTTP协议中的GET和POST只能是大写形式。 3.2 协议版本 http1.1和http1.0区别 在HTTP1.0协议中, 阅读全文
posted @ 2020-11-19 00:12 菜就多练forever 阅读(146) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-07-17 23:35 菜就多练forever 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 做资产盘点或者信息搜集时经常需要查询IP的的位置和运营商,故造轮子。 使用接口http://ip.taobao.com 优点:查询返回json格式字符串,便于处理,对新手友好 缺点:无法使用域名查询 # 查询IP import requests def cha(ip): url = 'http:// 阅读全文
posted @ 2020-07-06 22:00 菜就多练forever 阅读(455) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-03-03 18:56 菜就多练forever 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页