We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0bc270 commit 164378eCopy full SHA for 164378e
Evtx/Nodes.py
@@ -1469,7 +1469,7 @@ def tag_length(self):
1469
def string(self):
1470
ret = "0x"
1471
b = self.hex()[::-1]
1472
- for i in range(len(b) - 1):
+ for i in range(len(b)):
1473
ret += '{:02x}'.format(six.indexbytes(b, i))
1474
return ret
1475
@@ -1489,7 +1489,7 @@ def tag_length(self):
1489
1490
1491
1492
1493
1494
1495
0 commit comments