查看字符串
使用rabin2 -z /home/burning/010editor/010editor | tee 22.txt 查看字符串。 6698 0x003ba380 0x007ba380 68 69 .rodata ascii The password you entered is for an earlier version of this program. 6699 0x003ba3c8 0x007ba3c8 70 71 .rodata ascii You will…
一、编写脚本
echo 取日期、时间变量值
set yy%date:~0,4%
set mm%date:~5,2%
set dd%date:~8,2%
if /i %time:~0,2% lss 10 set hh0%time:~1,1%
if /i %time:~0,2% geq 10 set hh%time:~0,2%
set mn%time:~3,2%
set ss%time:~6,2%
set date%yy%%mm%%dd%
set time%hh%%mn%%ss…