运行以下VBScript脚本 Dim deviceFinder Set deviceFinder = CreateObject("UPnP.UPnPDeviceFinder") Dim devices Set devices = deviceFinder.FindByType("ssdp:all", ...
分类:
其他好文 时间:
2020-01-29 23:54:46
阅读次数:
141
1.JsonPath:像xpath一样,提取json数值 2.json schema:gibhub -> jsonschema from jsonshema import validate schema = { "type":"object", "properties":{ "price":{"ty ...
分类:
其他好文 时间:
2020-01-29 21:59:07
阅读次数:
80
首先要在资源目录下新建menu目录,所有的菜单布局文件都在这个目录下 选项菜单和上下文菜单的资源文件 <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/andr ...
分类:
移动开发 时间:
2020-01-29 20:10:01
阅读次数:
134
分为注册和登陆两个页面 据大佬wp登陆页面又盲注,但我没测试 直接注册后登陆 注册后发现,会显示输入的url 根据目录扫描,发现robots.txt和flag.php robots.txt有源码备份 审计发现应该是ssrf,初想通过注册时直接通过file协议请求到flag.php 但注册限制必须是h ...
分类:
其他好文 时间:
2020-01-29 20:03:48
阅读次数:
90
采用springmvc框架实现上传 jar包支持 springMVC配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="ht ...
分类:
Web程序 时间:
2020-01-29 17:36:51
阅读次数:
72
下面开始11-20关,之前不会的关卡可以参考我这几篇文章: sql-lib闯关秘籍之1-10关,sql-lib闯关秘籍之11-20关,sql-lib闯关秘籍之21-30关, sql-lib闯关秘籍之31-40关 ,sql-lib闯关秘籍之41-50关 ,sql-lib闯关秘籍之51-60关 不管是第 ...
分类:
数据库 时间:
2020-01-28 20:55:21
阅读次数:
78
web.xml各个版本文件头: Servlet 3.1 Java EE 7 XML schema, namespace is http://xmlns.jcp.org/xml/ns/javaee/ <?xml version="1.0" encoding="UTF-8"?> <web-app xml ...
分类:
Web程序 时间:
2020-01-28 20:49:23
阅读次数:
82
SELECT CONCAT( 'ALTER TABLE ', table_name, ' RENAME TO db_', substring(table_name, 4), ';' ) FROM information_schema. TABLES WHERE table_name LIKE 'ct ...
分类:
其他好文 时间:
2020-01-28 17:23:51
阅读次数:
72
有两个隐藏事务提交时间点需要注意,第一个是 `autocommit=1` _Mysql session_ 级别的自动提交变量,所有 _ORM_ 框架中的事务提交控制都会受到这个字段影响,默认情况下当前语句会自动提交,但是如果是显示 _begin transaction_ 开启事务需要自行手动提交... ...
分类:
数据库 时间:
2020-01-27 17:42:37
阅读次数:
143
Select 'SET FOREIGN_KEY_CHECKS = 0;'unionSelect CONCAT( 'drop table ', table_name, ';' )FROM information_schema.tablesWhere table_name LIKE 'as_baiqis ...
分类:
数据库 时间:
2020-01-27 17:26:47
阅读次数:
323