上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: #1 问题描述 根据报错,是跨域的问题,一种安全策略。 网上有比较多解决方案(目标网站添加相关头部、设置anonymous等等 参考之一https://blog.csdn.net/weixin_40647516/article/details/102660374),但是只有以下这种 设置浏览器允许跨 阅读全文
posted @ 2021-04-12 21:56 Erio 阅读(395) 评论(0) 推荐(0) 编辑
摘要: CODE/COMMAND INJECTION CODE INJECTION https://www.freebuf.com/sectool/168653.html EXAMPLE1 <?php $str = “echo \”hello “. $GET_[‘name’].”!!!\”;”; .是连接 阅读全文
posted @ 2020-09-03 19:35 Erio 阅读(414) 评论(0) 推荐(0) 编辑
摘要: SQL 注入一般流程 判断有无注入 单引号判断: ?name=root' 对应语句 select * from table where name='root'' 不符合语法规范,报错,说明有注入 and,or判断....很多,网上搜 order by 判断字段数 ,order by 5可以 6不行, 阅读全文
posted @ 2020-09-03 19:26 Erio 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 用到 ** WEB FOR Pentester** 注意区分单引号双引号。 常见代码 审计工具 wamp,dwva,zvuldrill,burpsuite,seay源代码审计系统... 1 xss Web For Pantesters 的XSS例题。 example1 ?name= example2 阅读全文
posted @ 2020-09-03 19:06 Erio 阅读(145) 评论(0) 推荐(0) 编辑
摘要: title: 常见数据结构/算法模板 date: 2020-08-20 categories: acm tags: acm top: true #0. 包含一些模板和例题 技巧,STL,函数,细节,参考资料(比如背包九讲)等见 https://www.cnblogs.com/lqerio/p/134 阅读全文
posted @ 2020-08-20 16:42 Erio 阅读(379) 评论(0) 推荐(2) 编辑
摘要: title: WOJ1024 (POJ1985+POJ2631) Exploration 树/BFS date: 2020-03-20 10:43:00 categories: acm tags: [acm,woj,图论] 用到了树的 直径 1 描述 Tom is an explorer and n 阅读全文
posted @ 2020-08-11 21:46 Erio 阅读(131) 评论(0) 推荐(0) 编辑
摘要: title: centos7+腾讯云服务器搭建wordpress date: 2020-03-04 categories: web tags: [wordpress] 分两部分:1.搭建LEMP环境 2.安装 wordpress 1.搭建LEMP环境 LEMP 是 PHP 网站应用的运行环境,如果打 阅读全文
posted @ 2020-08-11 21:15 Erio 阅读(494) 评论(0) 推荐(0) 编辑
摘要: title: C++ inline与operator date: 2020-03-10 categories: c++ tags: [c++] inline修饰符,operator关键字 1.inline修饰符-内联函数 1.1为何需要inline 在 c/c++ 中,为了解决一些频繁调用的小函数大 阅读全文
posted @ 2020-08-11 21:13 Erio 阅读(2006) 评论(0) 推荐(0) 编辑
摘要: title: python = 赋值顺序 && C++ side effect date: 2020-03-17 15:00:00 categories: [python][c++] tags: 语法 先是python = 的运算顺序不清楚,然后搞明白了之后自然就想知道C++是什么样的 1 pyth 阅读全文
posted @ 2020-08-11 21:09 Erio 阅读(251) 评论(0) 推荐(0) 编辑
摘要: title: python yield && scrapy yield date: 2020-03-17 16:00:00 categories: python tags: 语法 yield 关键字用于生成器。 yield在scrapy中的运用。 1 python yield 1.1 参考 http 阅读全文
posted @ 2020-08-11 21:08 Erio 阅读(976) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页