From 6c6133e8aadfabbebdfdc3cf145d24c22bff4851 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 25 Mar 2011 20:46:37 +0000 Subject: [PATCH] revert of the last commit (i was doing some testing against a test case with lots of None(s) which drove me to the conclusion that we need that progress - in normal cases it's fine as it is) --- lib/techniques/inband/union/use.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/techniques/inband/union/use.py b/lib/techniques/inband/union/use.py index cb6bdb361..1719b8853 100644 --- a/lib/techniques/inband/union/use.py +++ b/lib/techniques/inband/union/use.py @@ -13,8 +13,6 @@ import time from lib.core.agent import agent from lib.core.common import Backend from lib.core.common import calculateDeltaSeconds -from lib.core.common import clearConsoleLine -from lib.core.common import dataToStdout from lib.core.common import extractRegexResult from lib.core.common import filterStringValue from lib.core.common import getUnicode @@ -252,15 +250,6 @@ def unionUse(expression, unpack=True, dump=False): value += output parseUnionPage(output, limitedExpr) - if conf.verbose == 1: - length = stopLimit - startLimit - count = num - startLimit + 1 - status = '%d/%d entries (%d%s)' % (count, length, round(100.0*count/length), '%') - dataToStdout("\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), status), True) - - if conf.verbose == 1: - clearConsoleLine(True) - except KeyboardInterrupt: print warnMsg = "Ctrl+C detected in dumping phase"