repo
stringlengths
2
99
file
stringlengths
13
225
code
stringlengths
0
18.3M
file_length
int64
0
18.3M
avg_line_length
float64
0
1.36M
max_line_length
int64
0
4.26M
extension_type
stringclasses
1 value
pyrebox
pyrebox-master/mw_monitor2/coverage.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
10,212
36.547794
124
py
pyrebox
pyrebox-master/mw_monitor2/__init__.py
0
0
0
py
pyrebox
pyrebox-master/mw_monitor2/interproc.py
# ------------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/...
24,147
33.946454
115
py
pyrebox
pyrebox-master/mw_monitor2/generic_unpacker.py
# ------------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/...
20,966
34.779863
219
py
pyrebox
pyrebox-master/mw_monitor2/vads.py
# ------------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/...
5,203
37.835821
113
py
pyrebox
pyrebox-master/mw_monitor2/third_party/msdn_parser/zynamics_msdn_crawler.py
# zynamics msdn-crawler (http://github.com/zynamics/msdn-crawler) # Copyright (C) 2010 # # This program 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) an...
11,716
39.264605
152
py
pyrebox
pyrebox-master/mw_monitor2/ida_scripts/mw_monitor_coverage.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
2,093
33.9
75
py
pyrebox
pyrebox-master/mw_monitor2/ida_scripts/coverage_reader_32.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
1,673
29.436364
75
py
pyrebox
pyrebox-master/mw_monitor2/ida_scripts/coverage_reader_64.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
1,677
29.509091
75
py
pyrebox
pyrebox-master/mw_monitor2/ida_scripts/mw_monitor_binary_log_reader.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
1,419
32.023256
75
py
pyrebox
pyrebox-master/mw_monitor2/ida_scripts/mw_monitor_ida_functions_rename.py
# ------------------------------------------------------------------------- # # Copyright (C) 2018 Cisco Talos Security Intelligence and Research Group # # PyREBox: Python scriptable Reverse Engineering Sandbox # Author: Xabier Ugarte-Pedrero # # This program is free software; you can redistribute it and/or mod...
24,943
37.553323
124
py
pyrebox
pyrebox-master/volatility/setup.py
#!/usr/bin/env python # Volatility # # Authors: # AAron Walters <awalters@4tphi.net> # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 ...
3,606
35.806122
157
py
pyrebox
pyrebox-master/volatility/vol.py
#!/usr/bin/env python # -*- mode: python; -*- # # Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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;...
6,517
31.59
104
py
pyrebox
pyrebox-master/volatility/tools/vtype_diff.py
#!/usr/bin/env python # -*- mode: python; -*- # # Volatility # Authors: # Brendan Dolan-Gavitt # Mike Auty # # This file is part of Volatility. # # Volatility 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 Foundatio...
7,414
32.858447
142
py
pyrebox
pyrebox-master/volatility/tools/mac/generate_profile_list.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
3,305
30.788462
99
py
pyrebox
pyrebox-master/volatility/tools/mac/convert.py
#!/usr/bin/env python import os, sys, re class DWARFParser(object): """A parser for DWARF files.""" # Nasty, but appears to parse the lines we need dwarf_header_regex = re.compile( r'<(?P<level>\d+)><(?P<statement_id>[0-9+]+)><(?P<kind>\w+)>') dwarf_key_val_regex = re.compile( '\s*(?P...
20,612
32.246774
108
py
pyrebox
pyrebox-master/volatility/tools/mac/mac_create_all_profiles.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
5,635
36.573333
170
py
pyrebox
pyrebox-master/volatility/tools/mac/parse_pbzx2.py
# # parse_pbzx.py # Useful for extracting "Payload" files from newer Kernel Debug Kits # you can then decompress that with cpio -i < Payload.part00.cpio.xz # # Taken from https://gist.github.com/pudquick/ff412bcb29c9c1fa4b8d # # Original notes: # # v2 pbzx stream handler # My personal writeup on the differences he...
3,121
34.477273
111
py
pyrebox
pyrebox-master/volatility/tools/doxygen/d3/createtree.py
import os import json ''' Author: Gleeda <jamie@memoryanalysis.net> modified from: http://stackoverflow.com/questions/25226208/represent-directory-tree-as-json Quick and Dirty. Run from the Volatility root directory and redirect: python createtree.py > OUTPUT/d3/vol.json ''' link = "https://github.com/volatili...
875
25.545455
106
py
pyrebox
pyrebox-master/volatility/tools/windows/parsesummary.py
import json import sys import os """ Author: Gleeda <jamie.levy@gmail.com> This program 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. pa...
2,256
31.710145
118
py
pyrebox
pyrebox-master/volatility/pyinstaller/hook-distorm3.py
# Distorm3 hook # # This currently contains the hardcoded location for the standard distorm3.dll install # It could be improved by carrying out a search, or using sys.path # # This also requires the distorm3 module to be modified with the following patch: # import sys # if hasattr(sys, '_MEIPASS'): # _distorm_path...
692
29.130435
86
py
pyrebox
pyrebox-master/volatility/pyinstaller/hook-yara.py
import os import sys datas = [] for path in sys.path: if os.path.exists(os.path.join(path, "yara.pyd")): datas.append((os.path.join(path, "yara.pyd"), ".")) if os.path.exists(os.path.join(path, "yara.so")): datas.append((os.path.join(path, "yara.so"), "."))
284
24.909091
59
py
pyrebox
pyrebox-master/volatility/pyinstaller/hook-openpyxl.py
# Openpyxl hook # # This currently contains the hardcoded location for the .constants.json file # It could be improved by carrying out a search, or using sys.path # # This also requires the openpyxl module to be modified with the following patch: # import sys # if hasattr(sys, '_MEIPASS'): # here = sys._MEIPASS i...
528
25.45
81
py
pyrebox
pyrebox-master/volatility/pyinstaller/hook-volatility.py
import os projpath = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) modules = set(['volatility.plugins']) for dirpath, _dirnames, filenames in os.walk(os.path.join(projpath, 'volatility', 'plugins')): dirpath = dirpath[len(os.path.join(projpath, 'volatility', 'plugins')):] if dirpath and dirpat...
729
28.2
94
py
pyrebox
pyrebox-master/volatility/contrib/__init__.py
0
0
0
py
pyrebox
pyrebox-master/volatility/contrib/plugins/example.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
2,769
39.735294
110
py
pyrebox
pyrebox-master/volatility/contrib/plugins/disablewarnings.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
1,244
33.583333
78
py
pyrebox
pyrebox-master/volatility/contrib/plugins/__init__.py
0
0
0
py
pyrebox
pyrebox-master/volatility/contrib/library_example/libapi.py
# Volatility # Copyright (c) 2015 Michael Ligh (michael.ligh@mnin.org) # # This file is part of Volatility. # # Volatility 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 # ...
1,478
35.073171
71
py
pyrebox
pyrebox-master/volatility/contrib/library_example/pslist_json.py
# Volatility # Copyright (c) 2015 Michael Ligh (michael.ligh@mnin.org) # # This file is part of Volatility. # # Volatility 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 # ...
1,698
35.934783
85
py
pyrebox
pyrebox-master/volatility/volatility/protos.py
protos = { 0:"HOPOPT", 1:"ICMP", 2:"IGMP", 3:"GGP", 4:"IPv4", 5:"ST", 6:"TCP", 7:"CBT", 8:"EGP", 9:"IGP", 10:"BBN-RCC-MON", 11:"NVP-II", 12:"PUP", 13:"ARGUS", 14:"EMCON",...
6,418
23.688462
32
py
pyrebox
pyrebox-master/volatility/volatility/poolscan.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
15,371
37.720403
156
py
pyrebox
pyrebox-master/volatility/volatility/timefmt.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
4,565
35.238095
139
py
pyrebox
pyrebox-master/volatility/volatility/exceptions.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
1,764
38.222222
109
py
pyrebox
pyrebox-master/volatility/volatility/scan.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Derived from source in PyFlag developed by: # Copyright 2004: Commonwealth of Australia. # Michael Cohen <scudette@users.sourceforge.net> # David Collett <daveco@users.sourceforge.net> # # This file is part of Volatility. # # Volatility is free software;...
6,848
38.362069
112
py
pyrebox
pyrebox-master/volatility/volatility/fmtspec.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
3,516
31.266055
133
py
pyrebox
pyrebox-master/volatility/volatility/constants.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
1,154
29.394737
70
py
pyrebox
pyrebox-master/volatility/volatility/validity.py
""" Created on 4 May 2013 @author: mike """ class ValidityRoutines(object): """Class to hold all validation routines, such as type checking""" def type_check(self, value, valid_type): """Checks that value is an instance of valid_type, and returns value if it is, or throws a TypeError otherwise ...
1,587
38.7
119
py
pyrebox
pyrebox-master/volatility/volatility/addrspace.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Original Source: # Copyright (C) 2004,2005,2006 4tphi Research # Author: {npetroni,awalters}@4tphi.net (Nick Petroni and AAron Walters) # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under ...
15,615
37.36855
203
py
pyrebox
pyrebox-master/volatility/volatility/registry.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Derived from source in PyFlag developed by: # Copyright 2004: Commonwealth of Australia. # Michael Cohen <scudette@users.sourceforge.net> # David Collett <daveco@users.sourceforge.net> # # Subclassing plugin code developed by: # # Mike Auty <mike.auty@gm...
6,699
40.875
117
py
pyrebox
pyrebox-master/volatility/volatility/utils.py
# Volatility # # Authors: # Michael Cohen <scudette@users.sourceforge.net> # # This file is part of Volatility. # # Volatility 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, o...
5,469
37.794326
108
py
pyrebox
pyrebox-master/volatility/volatility/dwarf.py
# Volatility # Copyright (C) 2010 Brendan Dolan-Gavitt # Copyright (c) 2011 Michael Cohen <scudette@gmail.com> # # This file is part of Volatility. # # Volatility 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...
14,114
35.567358
126
py
pyrebox
pyrebox-master/volatility/volatility/obj.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Copyright (C) 2005,2006 4tphi Research # Author: {npetroni,awalters}@4tphi.net (Nick Petroni and AAron Walters) # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU Gen...
47,149
36.184543
159
py
pyrebox
pyrebox-master/volatility/volatility/commands.py
# Volatility # Copyright (C) 2008-2015 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
13,114
38.622356
191
py
pyrebox
pyrebox-master/volatility/volatility/cache.py
# This file is part of Volatility. # # Volatility 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. # # Volatility is distributed in the ...
24,520
37.434169
122
py
pyrebox
pyrebox-master/volatility/volatility/__init__.py
1
0
0
py
pyrebox
pyrebox-master/volatility/volatility/conf.py
## This file was taken from PyFlag http://www.pyflag.net/ # Michael Cohen <scudette@users.sourceforge.net> # David Collett <daveco@users.sourceforge.net> # # ****************************************************** # Version: FLAG $Version: 0.87-pre1 Date: Thu Jun 12 00:48:38 EST 2008$ # ********************************...
15,386
31.808102
167
py
pyrebox
pyrebox-master/volatility/volatility/debug.py
# Volatility # # Authors: # Michael Cohen <scudette@users.sourceforge.net> # # This file is part of Volatility. # # Volatility 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, o...
2,716
27.010309
83
py
pyrebox
pyrebox-master/volatility/volatility/win32/hive.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
10,333
33.446667
137
py
pyrebox
pyrebox-master/volatility/volatility/win32/domcachedump.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
5,295
32.732484
114
py
pyrebox
pyrebox-master/volatility/volatility/win32/lsasecrets.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
5,787
28.989637
82
py
pyrebox
pyrebox-master/volatility/volatility/win32/modules.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
1,117
30.942857
70
py
pyrebox
pyrebox-master/volatility/volatility/win32/network.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
7,152
31.6621
111
py
pyrebox
pyrebox-master/volatility/volatility/win32/hashdump.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
11,295
30.819718
93
py
pyrebox
pyrebox-master/volatility/volatility/win32/xpress.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
5,368
37.35
102
py
pyrebox
pyrebox-master/volatility/volatility/win32/rawreg.py
# Volatility # Copyright (c) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
6,479
31.238806
121
py
pyrebox
pyrebox-master/volatility/volatility/win32/crashdump.py
# Volatility # Copyright (c) 2007-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
28,101
40.387334
111
py
pyrebox
pyrebox-master/volatility/volatility/win32/__init__.py
0
0
0
py
pyrebox
pyrebox-master/volatility/volatility/win32/tasks.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
4,264
33.959016
103
py
pyrebox
pyrebox-master/volatility/volatility/plugins/iehistory.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (c) 2010, 2011, 2012 Michael Ligh <michael.ligh@mnin.org> # # This file is part of Volatility. # # Volatility 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...
11,800
41.44964
175
py
pyrebox
pyrebox-master/volatility/volatility/plugins/heaps.py
# Volatility # # This program 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. # # This program is distributed in the hope that it will ...
1,322
37.911765
113
py
pyrebox
pyrebox-master/volatility/volatility/plugins/vadinfo.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Authors: # Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public Lice...
21,178
43.215031
172
py
pyrebox
pyrebox-master/volatility/volatility/plugins/netscan.py
# Volatility # # Authors: # Michael Hale Ligh <michael.hale@gmail.com> # # This file is part of Volatility. # # Volatility 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 # ...
10,794
35.224832
95
py
pyrebox
pyrebox-master/volatility/volatility/plugins/sockscan.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
4,498
36.491667
81
py
pyrebox
pyrebox-master/volatility/volatility/plugins/tcaudit.py
# Volatility # Copyright (c) 2008-2014 Volatility Foundation # Copyright (c) 2013,2014 Michael Ligh (michael.ligh@mnin.org) # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License Version 2 as # published by the F...
31,276
45.131268
107
py
pyrebox
pyrebox-master/volatility/volatility/plugins/kpcrscan.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
7,363
39.911111
110
py
pyrebox
pyrebox-master/volatility/volatility/plugins/fileparam.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
1,840
37.354167
96
py
pyrebox
pyrebox-master/volatility/volatility/plugins/pooltracker.py
# Volatility # Copyright (C) Michael Ligh <michael.ligh@mnin.org> # # This program 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. # # ...
9,890
37.940945
98
py
pyrebox
pyrebox-master/volatility/volatility/plugins/moddump.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # Additional Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of...
5,425
42.063492
162
py
pyrebox
pyrebox-master/volatility/volatility/plugins/dumpfiles.py
# Volatility # Copyright (C) 2012-13 Volatility Foundation # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribute...
58,987
45.0484
216
py
pyrebox
pyrebox-master/volatility/volatility/plugins/mftparser.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # Copyright (C) 2011 Jamie Levy (Gleeda) <jamie@memoryanalysis.net> # # This file is part of Volatility. # # Volatility 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 S...
44,150
40.888994
174
py
pyrebox
pyrebox-master/volatility/volatility/plugins/hibinfo.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
2,990
35.036145
127
py
pyrebox
pyrebox-master/volatility/volatility/plugins/handles.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Additional Authors: # Michael Ligh <michael.ligh@mnin.org> # # This file is part of Volatility. # # Volatility 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 Softwa...
5,757
41.651852
110
py
pyrebox
pyrebox-master/volatility/volatility/plugins/cmdline.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
2,759
39.588235
109
py
pyrebox
pyrebox-master/volatility/volatility/plugins/taskmods.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Additional Authors: # Michael Cohen <scudette@users.sourceforge.net> # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Publ...
16,359
41.827225
152
py
pyrebox
pyrebox-master/volatility/volatility/plugins/verinfo.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
5,886
42.932836
110
py
pyrebox
pyrebox-master/volatility/volatility/plugins/notepad.py
# Volatility # # Authors: # Michael Hale Ligh <michael@memoryanalysis.net> # # This file is part of Volatility. # # Volatility 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, o...
9,186
34.886719
92
py
pyrebox
pyrebox-master/volatility/volatility/plugins/modules.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
4,730
35.960938
101
py
pyrebox
pyrebox-master/volatility/volatility/plugins/ssdt.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
16,294
46.095376
131
py
pyrebox
pyrebox-master/volatility/volatility/plugins/mbrparser.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # Copyright (C) 2011 Jamie Levy (Gleeda) <jamie@memoryanalysis.net> # # This file is part of Volatility. # # Volatility 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 S...
22,759
43.980237
174
py
pyrebox
pyrebox-master/volatility/volatility/plugins/raw2dmp.py
# Volatility # Copyright (C) 2009-2013 Volatility Foundation # Copyright (C) Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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; ...
7,601
41.469274
96
py
pyrebox
pyrebox-master/volatility/volatility/plugins/procdump.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # Additional Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of...
6,795
43.12987
134
py
pyrebox
pyrebox-master/volatility/volatility/plugins/hpakinfo.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
2,123
38.333333
87
py
pyrebox
pyrebox-master/volatility/volatility/plugins/sockets.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
3,980
37.650485
82
py
pyrebox
pyrebox-master/volatility/volatility/plugins/envars.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (c) 2012 Michael Ligh <michael.ligh@mnin.org> # # This file is part of Volatility. # # Volatility 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 Fo...
5,382
39.171642
92
py
pyrebox
pyrebox-master/volatility/volatility/plugins/connections.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
3,953
38.939394
81
py
pyrebox
pyrebox-master/volatility/volatility/plugins/bioskbd.py
# Volatility # # Authors: # Adam Boileau <metlstorm@storm.net.nz> # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 ve...
2,916
36.883117
115
py
pyrebox
pyrebox-master/volatility/volatility/plugins/pstree.py
# Volatility # # Authors # Michael Cohen <scudette@users.sourceforge.net> # # This file is part of Volatility. # # Volatility 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...
6,760
37.19774
143
py
pyrebox
pyrebox-master/volatility/volatility/plugins/imageinfo.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
5,461
37.195804
110
py
pyrebox
pyrebox-master/volatility/volatility/plugins/vmwareinfo.py
# Volatility # Copyright (C) 2009-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
4,983
42.719298
100
py
pyrebox
pyrebox-master/volatility/volatility/plugins/volshell.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
23,522
41.61413
244
py
pyrebox
pyrebox-master/volatility/volatility/plugins/drivermodule.py
# Volatility # Copyright (c) 2008-2015 Volatility Foundation # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
4,416
41.471154
124
py
pyrebox
pyrebox-master/volatility/volatility/plugins/modscan.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # Copyright (c) 2008 Brendan Dolan-Gavitt <bdolangavitt@wesleyan.edu> # # This file is part of Volatility. # # Volatility 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...
6,152
35.844311
85
py
pyrebox
pyrebox-master/volatility/volatility/plugins/imagecopy.py
# Volatility # # Authors: # Mike Auty <mike.auty@gmail.com> # # This file is part of Volatility. # # Volatility 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 op...
4,509
41.952381
121
py
pyrebox
pyrebox-master/volatility/volatility/plugins/machoinfo.py
# Volatility # Copyright (C) 2009-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
1,502
35.658537
83
py
pyrebox
pyrebox-master/volatility/volatility/plugins/timeliner.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # Copyright (C) 2011 Jamie Levy (Gleeda) <jamie@memoryanalysis.net> # # This file is part of Volatility. # # Volatility 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 S...
28,134
47.094017
157
py
pyrebox
pyrebox-master/volatility/volatility/plugins/objtypescan.py
# Volatility # # This file is part of Volatility. # # Volatility 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. # # Volatility is dist...
3,659
38.354839
86
py
pyrebox
pyrebox-master/volatility/volatility/plugins/crashinfo.py
# Volatility # Copyright (C) 2009-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 o...
8,288
43.326203
134
py
pyrebox
pyrebox-master/volatility/volatility/plugins/common.py
# Volatility # # Authors: # Michael Cohen <scudette@users.sourceforge.net> # # This file is part of Volatility. # # Volatility 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, o...
3,759
40.777778
87
py
pyrebox
pyrebox-master/volatility/volatility/plugins/filescan.py
# fileobjscan.py # Copyright 2009 Andreas Schuster <a.schuster@yendor.net> # Copyright (C) 2009-2013 Volatility Foundation # # This file is part of Volatility. # # Volatility 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 Softwa...
17,270
38.521739
101
py