Codebase list python-minidump / run/469cac5c-71d7-448a-a8e3-2b7236e04c7b/main
New upstream snapshot. Kali Janitor 1 year, 6 months ago
6 changed file(s) with 17 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 Metadata-Version: 1.2
0 Metadata-Version: 2.1
11 Name: minidump
22 Version: 0.0.21
33 Summary: Python library to parse Windows minidump file format
44 Home-page: https://github.com/skelsec/minidump
55 Author: Tamas Jos
66 Author-email: [email protected]
7 License: UNKNOWN
8 Description: Python library to parse Windows minidump file format
9 Platform: UNKNOWN
107 Classifier: Programming Language :: Python :: 3.6
118 Classifier: License :: OSI Approved :: MIT License
129 Classifier: Operating System :: OS Independent
1310 Requires-Python: >=3.6
11 License-File: LICENSE
12
13 Python library to parse Windows minidump file format
0 python-minidump (0.0.21+git20221011.1.d60ae27-0kali1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Kali Janitor <[email protected]> Sun, 13 Nov 2022 07:55:10 -0000
5
06 python-minidump (0.0.21-0kali1) kali-dev; urgency=medium
17
28 [ Kali Janitor ]
2929 self.chunks = []
3030
3131 def inrange(self, position):
32 return self.start_address <= position <= self.end_address
32 return self.start_address <= position < self.end_address
3333
3434 def remaining_len(self, position):
3535 if not self.inrange(position):
3030 self.chunks = []
3131
3232 def inrange(self, position):
33 return self.start_address <= position <= self.end_address
33 return self.start_address <= position < self.end_address
3434
3535 def remaining_len(self, position):
3636 if not self.inrange(position):
182182 return self.current_segment.read(self.reader.file_handle, old_new_pos - self.current_segment.start_address, None)
183183
184184 t = self.current_position + size
185 if not self.current_segment.inrange(t):
185 if not self.current_segment.inrange(t - 1):
186186 raise Exception('Would read over segment boundaries!')
187187
188188 old_new_pos = self.current_position
0 Metadata-Version: 1.2
0 Metadata-Version: 2.1
11 Name: minidump
22 Version: 0.0.21
33 Summary: Python library to parse Windows minidump file format
44 Home-page: https://github.com/skelsec/minidump
55 Author: Tamas Jos
66 Author-email: [email protected]
7 License: UNKNOWN
8 Description: Python library to parse Windows minidump file format
9 Platform: UNKNOWN
107 Classifier: Programming Language :: Python :: 3.6
118 Classifier: License :: OSI Approved :: MIT License
129 Classifier: Operating System :: OS Independent
1310 Requires-Python: >=3.6
11 License-File: LICENSE
12
13 Python library to parse Windows minidump file format
00 [console_scripts]
11 minidump = minidump.__main__:run
2