上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 68 下一页
摘要: 1. 下载dosbox安装程序:DOSBox0.74-win32-installer.exe 链接:https://pan.baidu.com/s/1gXPKTT-xKb6BpjOJdhmudA 密码:khqs 2. 安装。注意它是32位的。我装在了C盘program files(X86)。 3. 阅读全文
posted @ 2019-05-12 01:42 anobscureretreat 阅读(5187) 评论(2) 推荐(0)
摘要: Windows (开机)读软盘第一个扇区的读法的具体表格 Hello World汇编版 就是将16进制编写的代码使用汇编语言编写出来 将这个文件保存为cherryOS.asm,使用nasm生成cherryOS.img 使用QEMU运行我们的系统 效果图: 代码说明 书中使用的是NASK,我们使用的是 阅读全文
posted @ 2019-05-11 22:24 anobscureretreat 阅读(1078) 评论(0) 推荐(0)
摘要: 下载nasm 以管理员身份运行安装。 阅读全文
posted @ 2019-05-11 21:43 anobscureretreat 阅读(4252) 评论(0) 推荐(0)
摘要: 1.下载qemu: https://www.cnblogs.com/sea-stream/p/10849382.html 2.制作软盘镜像 使用010editor,新建文件 图2 另保存为cherryOS.img. 原理 我们现在在使用16进制手动编写一个软盘格式的文件。一个软盘的大小就是14745 阅读全文
posted @ 2019-05-11 21:25 anobscureretreat 阅读(570) 评论(0) 推荐(0)
摘要: 结构: 划分: 簇:磁盘驱动器在向磁盘读取和写入数据时,要以扇区为单位。在磁盘上,DOS操作系统是以“簇”为单位为文件分配磁盘空间的。硬盘的簇通常为多个扇区,与磁盘的种类、DOS 版本及硬盘分区的大小有关。每个簇只能由一个文件占用,即使这个文件中有几个字节,决不允许两个以上的文件共用一个簇,否则会造 阅读全文
posted @ 2019-05-11 20:50 anobscureretreat 阅读(1582) 评论(0) 推荐(0)
摘要: 下载地址:https://qemu.weilnetz.de/w64/ 安装完成后,将安装目录加入到系统环境变量。 阅读全文
posted @ 2019-05-11 17:38 anobscureretreat 阅读(1679) 评论(0) 推荐(0)
摘要: http://www.eecanalyzer.net/downloads 阅读全文
posted @ 2019-05-10 02:23 anobscureretreat 阅读(985) 评论(0) 推荐(0)
摘要: 解决方法: 在Python程序最前面加上以下语句: 阅读全文
posted @ 2019-05-09 00:01 anobscureretreat 阅读(2326) 评论(0) 推荐(0)
摘要: uniq选项与参数-i:忽略大小写-c:进行计数[zhang@localhost ~]$ cat 2.txt helloHelloWOrldabcabcABChello1 对2.txt进行sort后,进行uniq。[zhang@localhost ~]$ cat 2.txt | sort | uni 阅读全文
posted @ 2019-05-08 22:34 anobscureretreat 阅读(2694) 评论(0) 推荐(0)
摘要: 选项与-f:忽略大小写的差异-b:忽略最前面的空格部分-M:以月份的名字来排序-n:使用纯数字进行排序-r:反向排序-u:就是uniq,相同的数据中,仅出现一行代表-t:分隔符,预设是用tab键来分隔-k:以那个区间filed来进行排序[zhang@localhost ~]$ cat 1.txt | 阅读全文
posted @ 2019-05-08 22:31 anobscureretreat 阅读(157) 评论(0) 推荐(0)
摘要: grep选项与参数: -a:将binary档案以text档案的方式搜寻数据 -c:计算找到’搜寻字符串’的次数 -i:忽略大小写 -n:顺便输出行号 -v:反向选择,亦即显示出没有’搜寻字符串’内容的那一行 --color=auto:可以将找到的关键字部分加上颜色显示。color有三种参数(auto,always,never) 如果加上--color=never可以去掉颜色 [zhang@l... 阅读全文
posted @ 2019-05-08 22:28 anobscureretreat 阅读(2066) 评论(0) 推荐(0)
摘要: 如果我们想知道1.txt中有多少行,多少个单词,多少个字符。我们可以使用wc命令。选项与参数-l:今列出行-w:今列出多少字(英文单词)-m:多少字符[zhang@localhost ~]$ cat 1.txt hello worldabcdefg hijklmnopqrst uvwxyzabche 阅读全文
posted @ 2019-05-08 22:27 anobscureretreat 阅读(3149) 评论(0) 推荐(0)
摘要: 0、1和2分别表示标准输入、标准输出和标准错误信息输出,可以用来指定需要重定向的标准输入或输出,比如 2>a.txt 表示将错误信息输出到文件a.txt中。 #将1,2输出转发给/dev/null设备 [chengmo@centos5 shell]$ ls test.sh test1.sh 2>/dev/null 1>/dev/null #将错误输出2绑定给 正确输出 1,然后将 正确... 阅读全文
posted @ 2019-05-08 22:25 anobscureretreat 阅读(382) 评论(0) 推荐(0)
摘要: cut 选项与参数 -d:后面接分隔字符。与-f一起使用。 -f:依据-d的分隔字符将一段信息分隔数段,用-f取出第几段的意思。 -c:以字符的单位取出固定字符区间 [zhang@localhost ~]$ echo "hello world" | cut -d "o" -f 1 hell [zhang@localhost ~]$ echo "hello world" | cut -d "o... 阅读全文
posted @ 2019-05-08 22:23 anobscureretreat 阅读(2897) 评论(0) 推荐(0)
摘要: MacdeMacBook-Pro:test macname$ ls -al | more total 40 drwxr-xr-x 3 macname staff 96 4 3 18:49 . drwxr-xr-x+ 76 macname staff 2432 5 7 14:25 .. -rw-r--r-- 1 root staff 18691 4 ... 阅读全文
posted @ 2019-05-08 22:22 anobscureretreat 阅读(292) 评论(0) 推荐(0)
摘要: 当后台命令使用管道符,并采用nohup命令时,必须对管道符后的每个命令分别使用nohup命令,如nohup ls -R|nohup grep dt>/tmp/lsdt.out&如果没有这样正确使用nohup命令时,当用户推出系统时,没有带hohup命令的进程将会被迫结束,管道符也不起作用。 阅读全文
posted @ 2019-05-08 22:20 anobscureretreat 阅读(892) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-08 22:19 anobscureretreat 阅读(311) 评论(0) 推荐(0)
摘要: #显示最后两行 tail -n -2 filename > newfilename #从开头显示到倒数第二行 head -n -2 filename > newfilename 阅读全文
posted @ 2019-05-08 22:18 anobscureretreat 阅读(880) 评论(0) 推荐(0)
摘要: sed实现显示行: sed -n '1'p filename // 显示filename第一行 sed -n '$'p filename // 显示filename最后一行 sed -n '1,3'p filename // 显示filename的第1行至第3行 sed -n '3,$'p filename // 显示filename的第3行至最后一行 sed -n '/nam... 阅读全文
posted @ 2019-05-08 22:17 anobscureretreat 阅读(359) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-07 00:21 anobscureretreat 阅读(170) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 23:43 anobscureretreat 阅读(245) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 23:07 anobscureretreat 阅读(2707) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 21:59 anobscureretreat 阅读(1961) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-05-06 21:20 anobscureretreat 阅读(718) 评论(0) 推荐(0)
摘要: brew install nmap 阅读全文
posted @ 2019-05-06 12:55 anobscureretreat 阅读(1894) 评论(0) 推荐(0)
摘要: #coding = utf-8 import os,os.path import threading import time lock = threading.RLock() def action(ip): result = "ip.txt" return1 = os.system('ping -n 2 -w 1 %s' % ip) # 每个ip ping2次,等待时间为... 阅读全文
posted @ 2019-05-06 12:50 anobscureretreat 阅读(320) 评论(0) 推荐(0)
摘要: import math def deal(yaw): if(yaw<0): print(-(abs(yaw)/math.pi)*180) print(math.degrees(yaw)) else: print((abs(yaw)/math.pi)*180) ... 阅读全文
posted @ 2019-05-06 11:12 anobscureretreat 阅读(790) 评论(0) 推荐(0)
摘要: -a或-all 显示目录中个别文件的大小。 -b或-bytes 显示目录或文件大小时,以byte为单位。 -c或--total 除了显示个别目录或文件的大小外,同时也显示所有目录或文件的总和。 -D或--dereference-args 显示指定符号连接的源文件大小。 -h或--human-readable 以K,M,G为单位,提高信息的可读性。 -H或--si 与-h参数相同,但是K,M,... 阅读全文
posted @ 2019-05-05 15:56 anobscureretreat 阅读(280) 评论(0) 推荐(0)
摘要: Traceback (most recent call last): File "/usr/lib/python2.7/logging/__init__.py", line 875, in emit self.flush() File "/usr/lib/python2.7/logging/__init__.py", line 835, in flush self.s... 阅读全文
posted @ 2019-05-05 11:04 anobscureretreat 阅读(266) 评论(0) 推荐(0)
摘要: ooo 阅读全文
posted @ 2019-05-05 00:34 anobscureretreat 阅读(678) 评论(0) 推荐(0)
摘要: 1.内存数据修改挂。通过修改游戏的内存数据,来达到破坏游戏及游戏平衡的目的 2.CALL调用挂。CALL是一个汇编的术语,意思可以理解为一个子程序的调用。在很多时候,C语言里的一个函数就表示一个CALL。一些CALL调用挂可以去调用游戏的一些函数,比如打坐,喝血,打怪,卖装备等,来实现一些自动挂机的 阅读全文
posted @ 2019-05-04 23:59 anobscureretreat 阅读(705) 评论(0) 推荐(0)
摘要: nProtect是设计用于保护个人电脑终端不被病毒和黑客程序感染的新概念的基于网络的反黑客和反病毒的工具。 他帮助确保所有输入个人电脑终端的信息在网络上不落入黑客手中。 在最终用户在执行电子贸易时,可以通过将nProtect配置在那些提供电子商务、进口贸易,电子贸易的金融机构的网站上,来提高安全等级 阅读全文
posted @ 2019-05-04 23:50 anobscureretreat 阅读(442) 评论(0) 推荐(0)
摘要: 启动第一步--加载BIOS当你打开计算机电源,计算机会首先加载BIOS信息,BIOS信息是如此的重要,以至于计算机必须在最开始就找到它。这是因为BIOS中包含了CPU的相关信息、设备启动顺序信息、硬盘信息、内存信息、时钟信息、PnP特性等等。在此之后,计算机心里就有谱了,知道应该去读取哪个硬件设备了 阅读全文
posted @ 2019-05-04 21:28 anobscureretreat 阅读(126) 评论(0) 推荐(0)
摘要: 链接:https://pan.baidu.com/s/1wfh5VQfNgbDr-glezL4faQ 提取码:y507 阅读全文
posted @ 2019-05-04 18:11 anobscureretreat 阅读(2674) 评论(0) 推荐(0)
摘要: LoadLibrary(C:\soft\IDA 7.0\IDA 7.0\plugins\python64.dll) error: 找不到指定的模块。 C:\soft\IDA 7.0\IDA 7.0\plugins\python64.dll: can't load file LoadLibrary(C 阅读全文
posted @ 2019-05-04 14:49 anobscureretreat 阅读(5646) 评论(0) 推荐(0)
摘要: 下载:https://www.python.org/downloads/release/python-2716/ 安装即可。 设置环境变量 进入C:\Python27,修改python.exe 为python2.exe 在命令行输入: 显示python3, 再次输入 显示python2.7 参考: 阅读全文
posted @ 2019-05-04 14:43 anobscureretreat 阅读(4123) 评论(0) 推荐(0)
摘要: 链接:https://pan.baidu.com/s/1Rs2UOSfroBGf_MIkJv0cGw 提取码:kjqd 官网:https://www.hex-rays.com/updida.shtml 阅读全文
posted @ 2019-05-04 12:52 anobscureretreat 阅读(1481) 评论(0) 推荐(0)
摘要: @echo off mode con lines=30 cols=60 %1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit cd /d "%~dp0" %cd%\OLLYDBG.EXE 阅读全文
posted @ 2019-05-04 02:31 anobscureretreat 阅读(2556) 评论(0) 推荐(0)
摘要: http://www.ollydbg.de/ 阅读全文
posted @ 2019-05-04 02:10 anobscureretreat 阅读(394) 评论(0) 推荐(0)
摘要: 一、下载: masmplus链接: 阅读全文
posted @ 2019-05-04 02:00 anobscureretreat 阅读(685) 评论(0) 推荐(0)
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 68 下一页