摘要: 2章. 2.1 information storage A machine-level program views memory as a very large arrayof bytes,referred to as virtual memory.Every byte of memory is i 阅读全文
posted @ 2016-09-23 22:49 孤灯下的守护者 阅读(255) 评论(0) 推荐(0) 编辑
摘要: of df if sf zf af pf cf 标志位为1 ov dn ei ng zr ac pe cy标志位为0 nv up di pl nz na po nc 阅读全文
posted @ 2016-08-31 04:22 孤灯下的守护者 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 可算是写出来了, assume cs:code,ds:data data segment db '1975','1976','1977','1978','1979' db '1980','1981','1982','1983','1984' db '1985','1986','1987','1988 阅读全文
posted @ 2016-08-19 19:38 孤灯下的守护者 阅读(159) 评论(0) 推荐(0) 编辑
摘要: r: 显示\修改 寄存器内容d: 例如: d 1000:0 9 显示内存内容e: 改写内存内容u: 显示汇编命令t:执行cs:ip指向的命令a:以汇编指令的形式在内存中写入机器指令 如: a 1000:0g 0012: 立即执行到程序第12行,跳到第n行去执行p:当执行到 int 21h时候 用p命 阅读全文
posted @ 2016-08-17 03:21 孤灯下的守护者 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: partprobe fdisk fdisk -l free(内存查看) : free -m swapon drivename swapon -s (查看交换分区设备) mkswap: 格式化 du -sh df -h mkfs.格式: 如 mkfs.ext3 mkfs.xfs ..... 支持: c 阅读全文
posted @ 2016-08-05 02:37 孤灯下的守护者 阅读(193) 评论(0) 推荐(0) 编辑
摘要: fflush 函数: int fflush(FILE *stream); fseek fgetc getc getchar fputc putc putchar fgets gets printf fprintf sprintf (for file string) %g double %% outp 阅读全文
posted @ 2016-07-02 05:55 孤灯下的守护者 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 查看木马程序建立的会话: netstat -n netstat -nb netstat -an netstat -anb | find "3389" 找端口号. arp 协议: 将ip地址解析成mac地址 arp -a 查看当前缓存的mac地址 arp -s ip地址 mac地址 修改mac地址 欺 阅读全文
posted @ 2016-06-16 01:56 孤灯下的守护者 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 Memory Address: a. Logical address consists of a segment(16bits) and an offset(32bits) b.Linear address(virtual address) A single 32-bit unsigned in 阅读全文
posted @ 2016-06-12 20:23 孤灯下的守护者 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 引用即别名 引用必须初始化因为其是常量 引用是常量 不能定义引用的引用 只能绑定常量,不能和常量(字面值)及表达式绑定 const定义之后就不能更改,所以定义时就要初始化 int i; const int j = i; //合法 默认 const 的值只在文件内有效 对于const变量定义和声明都使 阅读全文
posted @ 2016-05-22 21:17 孤灯下的守护者 阅读(462) 评论(0) 推荐(0) 编辑
摘要: yum install gcc-c++ 阅读全文
posted @ 2016-05-16 19:46 孤灯下的守护者 阅读(124) 评论(0) 推荐(0) 编辑