📄 recentscans.py
字号:
#!/usr/bin/env python# -*- coding: utf-8 -*-# Copyright (C) 2007 Adriano Monteiro Marques.## Author: Adriano Monteiro Marques <py.adriano@gmail.com>## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USAfrom os import access, R_OK, W_OKfrom os.path import dirnamefrom zenmapCore.Paths import Pathclass RecentScans(object): def __init__(self): self.temp_list = [] try: self.recents_scans_file = Path.recent_scans except: self.recents_scans_file = False if self.recents_scans_file and \ (access(self.recents_scans_file, R_OK and W_OK) or \ access(dirname(self.recents_scans_file), R_OK and W_OK)): self.using_file = True # Recovering saved targets recent_file = open(self.recents_scans_file, "r") self.temp_list = [t for t in recent_file.read().split(";") \ if t != "" and t != "\n"] recent_file.close() else: self.using_file = False def __del__(self): self.save() def save(self): if self.using_file: recent_file = open(self.recents_scans_file, "w") recent_file.write(";".join(self.temp_list)) recent_file.close() def add_recent_scan(self, recent_scan): if recent_scan in self.temp_list: return self.temp_list.append(recent_scan) self.save() def clean_list(self): del self.temp_list self.temp_list = [] self.save() def get_recent_scans_list(self): t = self.temp_list[:] t.reverse() return trecent_scans = RecentScans()if __name__ == "__main__": import sys from os.path import split Path.set_umit_conf(split(sys.argv[0])[0]) r = RecentScans() print ">>> Getting empty list:", r.get_recent_scans_list() print ">>> Adding recent scan bla:", r.add_recent_scan("bla") print ">>> Getting recent scan list:", r.get_recent_scans_list() del r
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -