本文整理匯總了Python中glastopf.glastopf.GlastopfHoneypot.randomize_vdocs方法的典型用法代碼示例。如果您正苦於以下問題:Python GlastopfHoneypot.randomize_vdocs方法的具體用法?Python GlastopfHoneypot.randomize_vdocs怎麽用?Python GlastopfHoneypot.randomize_vdocs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類glastopf.glastopf.GlastopfHoneypot
的用法示例。
在下文中一共展示了GlastopfHoneypot.randomize_vdocs方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_virtualdocs
# 需要導入模塊: from glastopf.glastopf import GlastopfHoneypot [as 別名]
# 或者: from glastopf.glastopf.GlastopfHoneypot import randomize_vdocs [as 別名]
def test_virtualdocs(self):
"""Objective: Test for the creation of random files in the virtual directories
Input: Return value from GlastopfHoneypot.randomize_vdocs()
Expected Result: Two runs of GlastopfHoneypot.randomize_vdocs() have different results
Notes:"""
v_files = ("shadow", "passwd", "group")
f_dir1 = tempfile.mkdtemp()
f_dir2 = tempfile.mkdtemp()
os.makedirs(os.path.join(f_dir1, "linux/etc"))
os.makedirs(os.path.join(f_dir2, "linux/etc"))
GlastopfHoneypot.randomize_vdocs(f_dir1)
GlastopfHoneypot.randomize_vdocs(f_dir2)
for v_file in v_files:
file_1 = open(os.path.join(f_dir1, "linux/etc/", v_file), "r")
file_2 = open(os.path.join(f_dir2, "linux/etc/", v_file), "r")
md5_1 = hashlib.md5(file_1.read()).hexdigest()
md5_2 = hashlib.md5(file_2.read()).hexdigest()
file_1.close()
file_2.close()
self.assertNotEqual(md5_1, md5_2)
shutil.rmtree(f_dir1)
shutil.rmtree(f_dir2)