一、git下载与安装 百度git官网,下载链接,根据自己电脑系统下载相应的安装包,下载最新版本,点击红框或篮筐处即可 点击下载好的安装包安装这个软件 一直点击next,直到出现install,点击install,安装完成后点击finish: 安装好后在桌面界面点击鼠标右键,会出现如下界面 检查git ...
分类:
其他好文 时间:
2020-12-11 11:55:13
阅读次数:
7
###初步使用 判断是否有注入点 -u "http://www.target.com/vuln.php?id=1" ,若存在注入点,则会显示web容器的一些信息 获取数据库 -u "http://www.target.com/vuln.php?id=1" --dbs 查看当前应用程序所用的数据库 - ...
分类:
数据库 时间:
2020-12-10 11:30:09
阅读次数:
5
# POST 使用表单数据 http --form POST http://127.0.0.1:8000/snippets/ code="print 123" { "id": 3, "title": "", "code": "print 123", "linenos": false, "langua ...
分类:
Web程序 时间:
2020-12-10 11:13:15
阅读次数:
5
考试复习 查询所有角色 SELECT r.* FROM employee_role e LEFT JOIN role r ON e.role_id=r.id WHERE e.employee_id = #{id} 查询权限列表 select p.expression from employee_ro ...
分类:
其他好文 时间:
2020-12-10 11:09:55
阅读次数:
3
maven设置 <profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.sour ...
分类:
编程语言 时间:
2020-12-10 10:40:51
阅读次数:
7
1.urlparse() 作用:实现url的识别和分段。 代码: from urllib.parse import urlparse result=urlparse('http://www.baidu.com/index.html;user?id=5#comment') print(type(res ...
分类:
Web程序 时间:
2020-12-10 10:32:05
阅读次数:
6
<template> <div> <div v-for="(item,index) in this.titleVisibleData"> <div class="title">{{item}}</div> </div> <div> <button @click="moveLeft"><</butto ...
分类:
其他好文 时间:
2020-12-09 12:26:34
阅读次数:
8
在布局根节点加上下面三行 android:id="@+id/view_parent" android:clickable="true" android:focusableInTouchMode="true" 在代码中监听view_parent的FocusChangeListener事件 view_p ...
分类:
移动开发 时间:
2020-12-09 12:22:44
阅读次数:
17
1.新增host配置到/etc/ansible/hosts文件中 [docker] 192.168.43.95 2.配置无密码登录 # 配置ssh,默认rsa加密,保存目录(公钥)~/.ssh/id_rsa.pub ssh-keygen -t rsa # 配置无密码登陆,这里需要分别4次发送至4台服 ...
分类:
其他好文 时间:
2020-12-09 12:17:15
阅读次数:
4
通用链接(Universal Links)早在iOS 9中就已经引入了,是一种能够方便的通过传统 HTTP 链接来启动 app的技术。实现通用链接需要以下几步:一、为App ID勾选Associated Domains功能登录苹果开发网站,找到你的应用包名App ID,勾选上Associated D ...
分类:
移动开发 时间:
2020-12-09 12:02:28
阅读次数:
10