⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 np_imgs.py

📁 该软件根据网络数据生成NetFlow记录。NetFlow可用于网络规划、负载均衡、安全监控等
💻 PY
字号:
#! /usr/bin/env python################################################################################                                                                             ##   Copyright 2005 University of Cambridge Computer Laboratory.               ##                                                                             ##   This file is part of Nprobe.                                              ##                                                                             ##   Nprobe 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.                                       ##                                                                             ##   Nprobe 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 Nprobe; if not, write to the Free Software                     ##   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA ##                                                                             ################################################################################## Investigate usage of in-line images buffers# import stringimport globimport osimport sysimport nprobefrom sys import argvimport getoptimport np_util#############################################################################def cmp_by_key(a, b):    if a[0] > b[0]:	return 1    elif a[0] < b[0]:	return -1    else:	return 0#############################################################################openfilelist, counters = np_util.get_files(sys.argv[1:])#openfilelist, counters = np_util.get_files(args)counters.printself("")connrec = nprobe.tcp_conn()nchars_dist = {}tottrans = 0tottrans2 = 0totbufs = 0for file in openfilelist:    i = 0    #print file.counters.nrecords    while i < file.counters.nrecords:	i = i + 1	connrec.getconn(file)	if connrec.is_http():	    connrec.get_trans_chain(file)	    ntrans = connrec.ntrans()	    tottrans = tottrans + ntrans	    j = 0	    trans = connrec.su.http.trans	    while j < ntrans:		j = j + 1		#tottrans = tottrans + 1		if connrec.server_seen() and not trans.isdummy():		    n_imgchars = trans.inner.il_imagechars_indx		    if n_imgchars == 0:			continue		    if n_imgchars > 16386:			trans.printself(connrec)		    totbufs = totbufs + 1		    if not nchars_dist.has_key(n_imgchars):			nchars_dist[n_imgchars] = 0		    nchars_dist[n_imgchars] = nchars_dist[n_imgchars] + 1		    trans = trans.next	    connrec.free_trans_chain()distlist = nchars_dist.items()distlist.sort(cmp_by_key)accum = 0cd = 0.0pdf = open("./imgchars.pdf", "w")cdf = open("./imgchars.cdf", "w")print "total transactions ", tottransfor item in distlist:    print "%8d %8d" % (item[0], item[1]),    accum = accum + item[1]    cd = (accum*100)/totbufs    print "%.2f" % (cd)    pdf.write("%8d %8d\n" % (item[0], item[1]))    cdf.write("%8d %.2f\n" % (item[0], cd))    tottrans2 = tottrans2 + item[1]print "total transactions ", tottrans2pdf.close()cdf.close()

⌨️ 快捷键说明

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