Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 88df293

Browse files
committed
Better approach as @cachedmethod got improved
1 parent 323f128 commit 88df293

3 files changed

Lines changed: 5 additions & 13 deletions

File tree

lib/core/common.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2058,6 +2058,7 @@ def readXmlFile(xmlFile):
20582058

20592059
return retVal
20602060

2061+
@cachedmethod
20612062
def stdev(values):
20622063
"""
20632064
Computes standard deviation of a list of numbers.
@@ -2069,19 +2070,10 @@ def stdev(values):
20692070

20702071
if not values or len(values) < 2:
20712072
return None
2072-
2073-
key = (values[0], values[-1], len(values))
2074-
2075-
if kb.get("cache") and key in kb.cache.stdev:
2076-
retVal = kb.cache.stdev[key]
20772073
else:
20782074
avg = average(values)
20792075
_ = reduce(lambda x, y: x + pow((y or 0) - avg, 2), values, 0.0)
2080-
retVal = sqrt(_ / (len(values) - 1))
2081-
if kb.get("cache"):
2082-
kb.cache.stdev[key] = retVal
2083-
2084-
return retVal
2076+
return sqrt(_ / (len(values) - 1))
20852077

20862078
def average(values):
20872079
"""

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.11.18"
22+
VERSION = "1.1.11.19"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ d2cdb9e832e18a81e936ca3348144b16 lib/controller/handler.py
2727
5fb9aaf874daa47ea2b672a22740e56b lib/controller/__init__.py
2828
fd69e56ce20a5a49ce10a7a745022378 lib/core/agent.py
2929
d55b4b58019d6dbfddd40ec919f9f172 lib/core/bigarray.py
30-
f424e35d21529dafe60c0c5564855d5f lib/core/common.py
30+
16b63aed575a43c1d406df30a9b22afe lib/core/common.py
3131
54326d3a690f8b26fe5a5da1a589b369 lib/core/convert.py
3232
90b1b08368ac8a859300e6fa6a8c796e lib/core/data.py
3333
1c14bdbf47b8dba31f73da9ad731a54a lib/core/datatype.py
@@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
85e16c1193fc5e567addc1cdb77a32d3 lib/core/settings.py
49+
5f6af60945e1b932d173d9dffe082695 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py

0 commit comments

Comments
 (0)