#crontab定时任务(周一全量,周二至周日增量) 30 0 * * 1 nohup sh /data/rman/script/rmanfull.sh > /data/rman/script/rman.log &30 0 * * 0,2,3,4,5,6 nohup sh /data/rman/sc ...
分类:
数据库 时间:
2019-12-24 13:39:21
阅读次数:
98
指令码 助记符 说明0x00 nop 什么都不做0x01 aconst_null 将null推送至栈顶0x02 iconst_m1 将int型-1推送至栈顶0x03 iconst_0 将int型0推送至栈顶0x04 iconst_1 将int型1推送至栈顶0x05 iconst_2 将int型2推送 ...
分类:
其他好文 时间:
2019-12-17 14:47:02
阅读次数:
101
Trash Pwn 下载文件 1 首先使用checksec查看有什么保护 可以发现,有canary保护(Stack),堆栈不可执行(NX),地址随机化没有开启(PIE) 2 使用IDA打开看看 main函数里没有什么漏洞,注意调试时把alarm函数nop掉(计时函数) 进入Who函数 读取的s是ma ...
分类:
其他好文 时间:
2019-12-14 21:24:05
阅读次数:
147
模板技术在现代的软件开发中有着重要的地位,主要用于view层的展示,freemarker是比较流行的一种。 一、FreeMarker模板文件主要有4个部分组成 ①文本,直接输出的部分 ②注释,即<#--...-->格式不会输出 ③插值(Interpolation):即${..}或者#{..}格式的部 ...
分类:
其他好文 时间:
2019-12-12 14:59:56
阅读次数:
65
函数原型 int DrawText( HDC hDC, // 设备描述表句柄 LPCTSTR lpString, // 将要绘制的字符串 int nCount, // 字符串的长度 LPRECT lpRect, // 指向矩形结构RECT的指针 UINT uFormat // 正文的绘制选项 ); ...
分类:
其他好文 时间:
2019-12-12 00:54:19
阅读次数:
266
visudo权限配置普通用户的使用权限范围配置文件: (请根据自己公司需求配置) [root@localhost ~]# visudo ## Allow root to run any commands anywhereroot ALL=(ALL) ALL#user ALL=/usr/sbin/*, ...
分类:
系统相关 时间:
2019-12-05 10:26:59
阅读次数:
121
参考地址: https://yq.aliyun.com/articles/457140 https://www.cnblogs.com/zhangxinglong/p/5983376.html 下载地址:https://www.broadcom.com/site-search?q=LSIUtil_1 ...
分类:
其他好文 时间:
2019-12-02 10:30:57
阅读次数:
136
说明:配置之前先把域名解析到服务器IP地址上站点1:bbs.osyunwei.com程序所在目录/data/osyunwei/bbs站点2:sns.osyunwei.com程序所在目录/data/osyunwei/snschownwww.www/data/osyunwei/-R#设置目录所有者,www为nginx运行账户chmod700/data/osyunwei/-R#设置目录权限nginx配置
分类:
Web程序 时间:
2019-11-29 09:25:32
阅读次数:
100
在创建的活动中使用Toast 在onCreate方法中添加以下代码 点击按钮,效果如图 在活动中使用Menu 首先在res目录下新建一个Menu文件夹,接着在中国文件夹下创建一个名为main的菜单文件 然后在main.xml中添加以下代码 接着在FirstActivity中重写onCreateOpt ...
分类:
其他好文 时间:
2019-11-27 09:17:57
阅读次数:
86
分析下面的程序,在运行前思考:这个程序可以正确返回吗? 运行后再思考:为什么时这种结果? 通过这个程序加深对相关内容的额理解。 assume cs:codesg codesg segment mov ax,4c00h int 21h start:mov ax,0 s:nop nop mov di,o ...
分类:
其他好文 时间:
2019-11-23 09:23:21
阅读次数:
118