找到注入点1、设置sqlmap-u地址--dbs--current-user,2、设置sqlmap-u地址--tables猜解表名,或者--dbmsmysql--tables3、设置sqlmap-u地址-Tuname(表名)--columns猜解列名4、设置sqlmap-u地址-Tuname(表名)-Clogin-name,pass,username(列名,用逗号分隔)--dump获取数据5、获取登..
分类:
数据库 时间:
2015-09-19 06:21:52
阅读次数:
272
usually we need to export the database tables to backup and others use. So we must know what to do export those data .just exmple when I export the or...
分类:
数据库 时间:
2015-09-18 18:34:17
阅读次数:
211
#数据库MySQL 6.7use sakila;#查询表名show tables;#SELECT TABLE_NAME,TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='sakila';select column_name f...
分类:
数据库 时间:
2015-09-18 13:45:52
阅读次数:
216
TABLE_SCHEMA : 数据库名TABLE_NAME:表名ENGINE:所使用的存储引擎TABLES_ROWS:记录数DATA_LENGTH:数据大小INDEX_LENGTH:索引大小SELECT TABLE_NAME,DATA_LENGTH+INDEX_LENGTH,TABLE_ROWS F...
分类:
数据库 时间:
2015-09-18 13:29:18
阅读次数:
195
方法:public static string GetJsonByDataset(DataSet ds) { if (ds == null || ds.Tables.Count <= 0 || ds.Tables[0].Rows.Count <= 0) { return null; }...
分类:
Web程序 时间:
2015-09-17 19:11:22
阅读次数:
169
进入数据库:1 mysql> use sunshine_blog;输出:2 Database changed查数据库表:1 mysql> show tables;输出:2 +-------------------------+3 | Tables_in_sunshine_blog |4 +-----...
分类:
数据库 时间:
2015-09-16 19:53:01
阅读次数:
160
最近做了一个导出的工作,在用xshell过程中,发现在自己的电脑上用cmd命令导出的dmp文件,在用xshell工具导出时报错。cmd上执行的命令:exp ***/***@oracle file=d:\tbissamt.dmp tables=(tbissamt) query=\"where tran...
分类:
数据库 时间:
2015-09-16 18:00:31
阅读次数:
198
#?Write?your?MySQL?query?statement?below
#select?a.FirstName?,?a.LastName?,?b.City?,?b.State?from?Person?as?a?,?Address?as?b?where?a.PersonId?=?b.AddressId?;
select?a.Fir...
分类:
其他好文 时间:
2015-09-16 10:58:29
阅读次数:
199
echo "210 local100" >> /etc/iproute2/rt_tables echo "220 local200" >> /etc/iproute2/rt_tables echo "230 local300" >> /etc/iproute2/rt_tables...
分类:
系统相关 时间:
2015-09-16 09:43:10
阅读次数:
268
直入代码: var ds2 = new DataSet(); if (ds.Tables.Count > 0) { var rows = ds.Tables[0].Select(" usertype '...
分类:
其他好文 时间:
2015-09-16 00:53:01
阅读次数:
142