tainted.pl

来自「MSYS在windows下模拟了一个类unix的终端」· PL 代码 · 共 10 行

PL
10
字号
# This subroutine returns true if its argument is tainted, false otherwise.sub tainted {    local($@);    eval { kill 0 * $_[0] };    $@ =~ /^Insecure/;}1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?