0x00知识点 没有过滤file 使用php的file伪协议去读取文件 0x01解题 打开网站存在跳转。抓包,访问 http://152518b2 d342 4872 8adc b5bcec554a4d.node3.buuoj.cn/secr3t.php 给了我们源代码 直接使用file伪协议读 b ...
分类:
其他好文 时间:
2020-01-12 22:21:33
阅读次数:
438
依赖dependencies、dependency、artifactId、groupId、version 配置properties、自定义version 依赖dependencyManagement 打包插件build、plugins 仓库repositories 多版本profiles ...
分类:
其他好文 时间:
2020-01-12 18:33:24
阅读次数:
96
Sequence – SV contention Table of Contents Waits for cached sequence when sequence is used from multiple instance Waits for UNCACHED sequences when us ...
分类:
其他好文 时间:
2020-01-12 18:13:31
阅读次数:
85
spring学习5:基于注解实现spring的aop 上一节学习了spring aop的基本概念和如何基于xml配置来实现aop功能。这一节来学习下如何用注解实现aop [TOC] 一、基于注解+xml实现 上节中虽然也使用的是注解+xml,但只是把bean的配置用注解来实现,aop相关的切面,切入 ...
分类:
编程语言 时间:
2020-01-12 15:00:29
阅读次数:
91
什么是热部署? 热部署,就是在应用正在运行的时候升级软件,却不需要重新启动应用。在平时编写代码的时候,你会发现我们只是简单把打印信息改变了,就需要重新部署,如果要改变这样的方式,就需要用到热部署springloaded。 使用方式,在项目中的pom.xml中plugin里添加依赖: <depende ...
分类:
编程语言 时间:
2020-01-12 13:42:07
阅读次数:
96
大部分远程仓库无须认证就可以访问,但有时候出于安全方面的考虑,我们需要提供认证信息才能访问一些远程仓库。 认证信息必须配置在settings.xml文件中 : <servers> <server> <id>my-proj</id> <username>repo-user</username> <pa ...
分类:
其他好文 时间:
2020-01-12 13:40:08
阅读次数:
67
一番百度: spring-boot-starter-parent引用失败 原因:因为RELEASE版本是不稳定的,于是需要指定spring的仓库,在pom.xml后面添加如下代码,然后保存pom.xml文件,就会重新从repo.spring.io中引入jar包 <repositories> <rep ...
分类:
移动开发 时间:
2020-01-12 13:11:51
阅读次数:
161
1.在github中创建一个账号:https://github.com/join?source=header-home 2.下载并安装git:https://git-scm.com/downloads 3.安装成功后打开Git Bash,输入下列命令,设置git全局用户名和邮箱 1 2 $ git ...
分类:
Web程序 时间:
2020-01-11 13:15:29
阅读次数:
90
Start a GIT Repository The first step in creating a GIT repository is finding where to actually create it. You can either create the repository on you ...
分类:
其他好文 时间:
2020-01-11 09:59:40
阅读次数:
79
先来理解一下git的工作流程 git add新增or修改 git commit 暂存区的目录树写到版本库(对象库)中,master 分支会做相应的更新,即 master 指向的目录树就是提交时暂存区的目录树。 git reset HEAD暂存区的目录树被 master 分支指向的目录树所替换 git ...
分类:
其他好文 时间:
2020-01-11 00:12:58
阅读次数:
83