1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.InputStream; 4 import java.io.StringWriter; 5 import java.math.BigInteger; 6... ...
分类:
其他好文 时间:
2017-11-20 19:08:55
阅读次数:
1107
一,关于我们子页面如何通过两表联查弄出以下效果, <?phprequire_once(dirname(__FILE__).'/include/config.inc.php'); //初始化参数检测正确性$cid = empty($cid) ? 2 : intval($cid);$id = empty ...
分类:
Web程序 时间:
2017-11-12 18:33:14
阅读次数:
470
一、动手实验:继承条件下的构造方法调用 class Grandparent { public Grandparent() { System.out.println("GrandParent Created."); } public Grandparent(String string) { Syste ...
分类:
其他好文 时间:
2017-11-10 16:59:54
阅读次数:
115
工具与环境: IDA7.0 JEB2.2.5 Nexus 5 Android 4.4 目录: 一:app简单分析与java层反编译 二: compatible.so反调试与反反调试 三: compatible.so注册jni函数分析 四: stub.so反调试与反反调试 五: stub.so注册jn ...
分类:
移动开发 时间:
2017-11-01 13:38:15
阅读次数:
400
漏洞触发点search.php 211-213行,文中38-40行 跟进parseIf 函数 ./include/main.class.php 这里要注意 21行的位置,可以看到未做任何处理的eval 这里我们要注意触发的条件 1.if(intval($searchtype)==5) 2.if (s ...
分类:
系统相关 时间:
2017-11-01 13:33:09
阅读次数:
205
1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * a... ...
分类:
编程语言 时间:
2017-10-26 22:51:04
阅读次数:
178
php 代码public function init() { $where='';//条件 $page = $_GET['page'] ? intval($_GET['page']) : '1'; $infos = $this->listinfo($where,'', $page, 10);//查询 ...
分类:
Web程序 时间:
2017-10-26 18:56:57
阅读次数:
377
intval -- 获取变量的整数值 floatval -- 获取变量的浮点值 <?php $a = 26; $b = 4; $a/=$b; echo intval($a);//6 echo floatval($a);//6.5 ?> intval -- 获取变量的整数值 floatval -- 获 ...
分类:
Web程序 时间:
2017-10-26 13:47:26
阅读次数:
590
$where = "('1=1')";$where .= 'and FIND_IN_SET(' . intval($request->get('city')) . ',city)';$uids = CompanyArea::whereRaw($where)->get();return $uids;处 ...
分类:
Web程序 时间:
2017-10-25 19:51:38
阅读次数:
1145
作业一: package 创建对象的个数; public class main { public static void main(String[] agrs){ Check c1=new Check(); Check c2=new Check(); Check c3=new Check(); Sy ...
分类:
其他好文 时间:
2017-10-20 10:07:49
阅读次数:
119