filter CTF 输入url http://dc1ce3ad-eed4-48fd-a068-71aef12f7654.node.vaala.ink?file=demo.php 参考题目filter php://filter:读取Php文件 ?file=php://filter/convert.b ...
分类:
其他好文 时间:
2021-04-08 13:17:42
阅读次数:
0
public class Demo04 { public static void main(String[] args) { //整数拓展 二进制0b 八进制0 十进制 十六进制0x int i1=10; int i2=010; int i3=0x11; System.out.println(i1) ...
分类:
其他好文 时间:
2021-04-08 13:03:44
阅读次数:
0
public static Object copyOf(Object a,int newLength){ Class cl = a.getClass(); if(!cl.isArray()){ return null; } Class componentType = cl.getComponentT ...
分类:
编程语言 时间:
2021-04-08 12:57:40
阅读次数:
0
比较for和while 代码比较复制代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class HelloWorld { public static void main(String[] args) { //使用while打印0到4 int i = ...
分类:
其他好文 时间:
2021-04-08 12:54:22
阅读次数:
0
static void Main(string[] args) { GetMd5(); } public static void GetMd5() { string str = "123"; //创建md5对象,是静态方法。不能new MD5 mymd5 = MD5.Create(); //comp ...
分类:
编程语言 时间:
2021-04-07 11:23:31
阅读次数:
0
package com.easyagu.liwei.list;import redis.clients.jedis.Jedis;/** * 秒杀案例 */public class SeckillDemo { public static void main(String[] args) { Secki ...
分类:
其他好文 时间:
2021-04-07 11:07:01
阅读次数:
0
常见的问题,记录操作日志中发现,getRemoteAddr取到的客户端的ip地址不是真实的ip,需要解析请求头中的信息获取正确ip。 public static String getIpAddress(HttpServletRequest request) { String ip = request ...
分类:
编程语言 时间:
2021-04-07 10:50:41
阅读次数:
0
static关键字 public class OOPDemo01 { //2:赋初值 { System.out.println("匿名代码块"); } //1:只执行一次 static{ System.out.println("静态代码块"); } //3 public OOPDemo01(){ S ...
分类:
其他好文 时间:
2021-04-07 10:49:07
阅读次数:
0
1.egg.static,访问首页,有public; 解决:default.config.js 中,增加配置,当访问到固定的路径时,返回指定的页面; config.siteFile = { '/numax':fs.readFileSync( path.join(appInfo.baseDir, 'a ...
分类:
Web程序 时间:
2021-04-07 10:39:16
阅读次数:
0
break、continue、goto break : break在任何循环语句的主体部分,均可用 break控制循环的流程。break用于强行退出循环,不执行循环中剩余的语句。(break语句在switch语句中的使用) public class Demo04 { public static vo ...
分类:
其他好文 时间:
2021-04-07 10:29:07
阅读次数:
0