📄 dump.inc
字号:
## (C) Tenable Network Security# ## An earlier iteration of this file was written by George Dagousset (2002)## This include file is released under the terms of the GPLv2#function line2string (line, linenumber){ local_var tmp, pos; line = line*16; tmp = raw_string ( (line >> 24) & 0xFF, (line >> 16) & 0xFF, (line >> 8) & 0xFF, (line ) & 0xFF ); if (linenumber < 256) pos = 3; else if (linenumber < 65536) pos = 2; else if (linenumber < 16777216) pos = 1; else pos = 0; return string ("0x", toupper(hexstr(substr (tmp, pos, 3))), ": ");}function isprint (c){ if ( (ord(c) >= 0x20) && (ord(c) <= 0x7E) ) return TRUE; return FALSE;}function hexdump (ddata){ local_var tmp, i, j, line, linenumber, len, data, c; len = strlen (ddata); linenumber = len / 16; for (i = 0; i <= linenumber; i++) { line = line2string (line:i, linenumber:len); data = ""; for (j = 0; j < 16; j++) { if ( (i*16+j) < len ) { line += string (" ", toupper (hexstr(ddata[i*16+j])) ); c = ddata[i*16+j]; if (isprint (c:c)) data += c; else data += "."; } else { line += " "; data += " "; } } tmp += string (line, " ", data, "\n"); } return tmp;} function dump( dtitle, ddata ){ if( ! isnull( dtitle ) ) display('---[ ' + dtitle + ' ]---\n' ); display(hexdump(ddata:ddata));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -