Kali Linux detection

This commit is contained in:
erwanlr
2013-06-26 01:15:51 +03:00
parent 87d7657dec
commit d3362bac75

View File

@@ -138,4 +138,8 @@ def get_equal_string_end(stringarray = [''])
end end
end end
already_found already_found
end end
def kali_linux?
%x{uname -a}.match(/linux kali/i) ? true : false
end