码迷,mamicode.com
首页 >  
搜索关键字:remote asm instance    ( 13357个结果
滴水逆向初级-C语言(二)
2.1.C语言的汇编表示 c语言代码 int plus(int x,int y) { return 0; } void main() { __asm { mov eax,eax } //调用函数 plus(1,2); return; } 汇编代码 1: 2: int plus(int x,int y ...
分类:编程语言   时间:2021-04-10 12:50:12    阅读次数:0
java_判空工具类
package com.supermarket.common.utils;import java.lang.reflect.Field;import java.lang.reflect.Method;import java.text.SimpleDateFormat;import java.time ...
分类:编程语言   时间:2021-04-08 13:35:35    阅读次数:0
buuoj warmup_csaw_2016
放进IDA,找到gets 接收0x40位,然后查看字符串,虽然没有bin/sh,但是有能直接用的 找到所在函数和地址 exp: from pwn import * p=remote('node3.buuoj.cn',27180) sys_addr=0x40060D payload='a'*(0x40 ...
分类:其他好文   时间:2021-04-08 13:18:38    阅读次数: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
运算符
算术运算符:+ - * / %(取余) ++() --() 赋值运算符= 关系运算符 > < >= <= == !=(不等于) instance 逻辑运算符 && || ! 与 或 非 ...
分类:其他好文   时间:2021-04-08 12:55:29    阅读次数:0
ioc创建对象的几个方式
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:其他好文   时间:2021-04-07 11:44:50    阅读次数:0
git存储密码问题:push的时候报错remote: Permission to xxx/xxx.git denied to xxx.
问题原因:使用存储的旧账户访问新的git仓库 1. Linux 检查~/.git-credentials 修改或删除其中的旧的账户密码,新打开命令行窗口重新push 2. MAC 是cmd + space 搜索钥匙串访问,找到github能看到保存的账户和密码 3. WINDOWS 控制面板->所有 ...
分类:其他好文   时间:2021-04-07 11:37:54    阅读次数:0
Nginx代理之大文件下载失败问题
错误详细信息: Cloning into 'aplanmis-project'...remote: Enumerating objects: 176887, done.remote: Counting objects: 100% (176887/176887), done.remote: Compr ...
分类:其他好文   时间:2021-04-07 10:51:02    阅读次数:0
Spring MVC工程搭建
1:引入jar包 2:配置web.xml 声明DispatchServlet,监听请求 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln ...
分类:编程语言   时间:2021-04-07 10:39:48    阅读次数:0
dremio arp connector 开发
主要是为了实现类似数据联邦的功能的 参考图 代码 package com.dalong.dremio; import com.dremio.common.AutoCloseables; import com.dremio.common.util.CloseableIterator; import c ...
分类:其他好文   时间:2021-04-06 15:17:28    阅读次数:0
13357条   上一页 1 ... 10 11 12 13 14 ... 1336 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!