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/volatility/volatility/plugins/dumpcerts.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # # Authors: # Michael Hale Ligh <michael.ligh@mnin.org> # # Contributors/References: # ## Based on sslkeyfinder: http://www.trapkit.de/research/sslkeyfinder/ # # This file is part of Volatility. # # Volatility is free software; you can redistribute it and/...
10,953
36.132203
97
py
pyrebox
pyrebox-master/volatility/volatility/plugins/patchguard.py
import struct def rol(value, count): """A rotate-left instruction in Python""" for y in range(count): value *= 2 if (value > 0xFFFFFFFFFFFFFFFF): value -= 0x10000000000000000 value += 1 return value def bswap(value): """A byte-swap instruction in Python""" ...
408
23.058824
59
py
pyrebox
pyrebox-master/volatility/volatility/plugins/evtlogs.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...
13,656
44.372093
173
py
pyrebox
pyrebox-master/volatility/volatility/plugins/multiscan.py
import volatility.plugins.common as common import volatility.utils as utils import volatility.plugins.filescan as filescan import volatility.plugins.modscan as modscan import volatility.plugins.gui.atoms as atoms import volatility.plugins.gui.windowstations as windowstations import volatility.plugins.sockscan as socksc...
2,273
37.542373
74
py
pyrebox
pyrebox-master/volatility/volatility/plugins/__init__.py
import volatility.conf as conf import volatility.constants as constants import os import sys config = conf.ConfObject() help_prefix = "" plugin_separator = ":" # Make a platform-dependent decision on plugin path separators # The separator is now in keeping with the PATH environment variable if sys.platform.startswith...
1,067
34.6
101
py
pyrebox
pyrebox-master/volatility/volatility/plugins/getservicesids.py
# Volatility # Copyright (C) 2011-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...
41,003
72.352415
105
py
pyrebox
pyrebox-master/volatility/volatility/plugins/bigpagepools.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. # # ...
8,892
38.176211
597
py
pyrebox
pyrebox-master/volatility/volatility/plugins/patcher.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...
8,283
35.982143
101
py
pyrebox
pyrebox-master/volatility/volatility/plugins/joblinks.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...
6,448
39.816456
105
py
pyrebox
pyrebox-master/volatility/volatility/plugins/kdbgscan.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...
11,872
44.490421
144
py
pyrebox
pyrebox-master/volatility/volatility/plugins/dlldump.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,282
42.631944
194
py
pyrebox
pyrebox-master/volatility/volatility/plugins/strings.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2009 Timothy D. Morgan (strings optimization) # # 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 Softwar...
11,094
37.929825
115
py
pyrebox
pyrebox-master/volatility/volatility/plugins/connscan.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...
3,640
35.777778
89
py
pyrebox
pyrebox-master/volatility/volatility/plugins/win10cookie.py
# Volatility # Copyright (C) 2007-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...
1,830
34.901961
104
py
pyrebox
pyrebox-master/volatility/volatility/plugins/getsids.py
# Volatility # Copyright (C) 2008-2013 Volatility Foundation # # 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 the GNU General Public License as published by # the Free Software Fo...
10,343
38.938224
121
py
pyrebox
pyrebox-master/volatility/volatility/plugins/privileges.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (c) 2012, 2013 Cem Gurkok <cemgurkok@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 ...
8,306
44.146739
96
py
pyrebox
pyrebox-master/volatility/volatility/plugins/vboxinfo.py
# Volatility # Copyright (C) 2009-2012 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,227
34.935484
70
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/win32k_core.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
35,724
35.905992
278
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/desktops.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
5,500
42.65873
95
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/eventhooks.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
2,622
34.931507
97
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/constants.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale Ligh <michael.ligh@mnin.org> # Copyright (C) 2009 Brendan Dolan-Gavitt # # 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...
8,456
31.034091
86
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/gahti.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
2,736
35.986486
92
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/editbox.py
# Volatility EditBox plugin # # Author: Bridgey the Geek <bridgeythegeek@gmail.com> # # This plugin is free software; you can redistribute it and/or modify # it under the terms of GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later ...
19,270
37.160396
116
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/clipboard.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
7,405
37.572917
91
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/windowstations.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
4,640
39.008621
93
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/messagehooks.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
11,453
41.738806
103
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/gditimers.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
3,051
36.219512
74
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/sessions.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
4,306
38.513761
105
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/windows.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
4,862
44.877358
88
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/__init__.py
0
0
0
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/atoms.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
8,545
34.907563
88
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/userhandles.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 ...
3,646
36.989583
140
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/screenshot.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale Ligh <michael.ligh@mnin.org> # Copyright (C) 2009 Brendan Dolan-Gavitt # # 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...
3,878
36.660194
105
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win7.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
8,200
37.867299
119
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win7_sp1_x64_vtypes_gui.py
win32k_types = { '_HANDLEENTRY': [0x18, { 'pOwner': [8, ['pointer64', ['void']]], 'phead': [0, ['pointer64', ['_HEAD']]], 'bFlags': [17, ['unsigned char']], 'wUniq': [18, ['unsigned short']], 'bType': [16, ['unsigned char']], }], 'tagTOUCHINPUTINFO': [0x50, { 'dwcInputs': [24, ['unsigned lon...
137,547
58.185886
3,788
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win10.py
# Volatility # Copyright (C) 2007-2017 Volatility Foundation # Copyright (C) 2017 Michael Hale 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...
4,119
42.368421
113
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win7_sp0_x64_vtypes_gui.py
win32k_types = { '_HANDLEENTRY': [0x18, { 'pOwner': [8, ['pointer64', ['void']]], 'phead': [0, ['pointer64', ['_HEAD']]], 'bFlags': [17, ['unsigned char']], 'wUniq': [18, ['unsigned short']], 'bType': [16, ['unsigned char']], }], 'tagTOUCHINPUTINFO': [0x50, { 'dwcInputs': [24, ['unsigned lon...
137,579
58.174194
3,788
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win8.py
# Volatility # Copyright (C) 2007-2014 Volatility Foundation # Copyright (C) 2014 Michael Hale 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...
7,917
34.990909
119
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win7_sp0_x86_vtypes_gui.py
win32k_types = { '_HANDLEENTRY': [0xc, { 'pOwner': [4, ['pointer', ['void']]], 'phead': [0, ['pointer', ['_HEAD']]], 'bFlags': [9, ['unsigned char']], 'wUniq': [10, ['unsigned short']], 'bType': [8, ['unsigned char']], }], 'tagTOUCHINPUTINFO': [0x3c, { 'dwcInputs': [12, ['unsigned long']], ...
121,571
52.936114
3,788
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win2003.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
2,168
37.052632
76
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/vista.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
4,880
41.815789
116
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/win7_sp1_x86_vtypes_gui.py
win32k_types = { '_HANDLEENTRY': [0xc, { 'pOwner': [4, ['pointer', ['void']]], 'phead': [0, ['pointer', ['_HEAD']]], 'bFlags': [9, ['unsigned char']], 'wUniq': [10, ['unsigned short']], 'bType': [8, ['unsigned char']], }], 'tagTOUCHINPUTINFO': [0x3c, { 'dwcInputs': [12, ['unsigned long']], ...
122,182
53.183149
3,788
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/__init__.py
0
0
0
py
pyrebox
pyrebox-master/volatility/volatility/plugins/gui/vtypes/xp.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2010,2011,2012 Michael Hale 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 F...
16,283
46.2
130
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/process_info.py
# # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,...
26,549
32.951407
176
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/find_file.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distrib...
14,240
33.233173
135
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/ldrmodules.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
2,663
35
80
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/arp.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,511
32.176471
135
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/bash_hash.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
6,322
33.36413
163
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/process_hollow.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
4,604
36.137097
155
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/netscan.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,393
32.037594
140
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/threads.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 ...
3,427
37.516854
100
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/linux_truecrypt.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,951
33.388889
86
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/apihooks.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...
3,082
34.436782
121
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/ld_env.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
1,532
32.326087
72
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/cpuinfo.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,830
33.021127
141
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/pkt_queues.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...
3,457
32.901961
160
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/pslist.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,523
37.387755
109
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/malfind.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
2,845
32.482353
94
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/list_raw.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
4,800
34.043796
96
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/psaux.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,817
35.36
133
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/linux_yarascan.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...
5,145
39.84127
152
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/tmpfs.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...
5,718
35.196203
152
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/elfs.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2014 CrowdStrike, Inc. # # 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,718
36.763889
115
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/linux_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...
3,600
38.571429
115
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/keyboard_notifiers.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribute this program under any other version of the G...
2,364
33.779412
93
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/proc_maps.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...
3,546
34.118812
72
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/tty_check.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...
2,842
35.922078
120
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/dentry_cache.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,513
32.078947
129
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/procdump.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
2,335
36.677419
138
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/dump_map.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...
3,166
39.088608
148
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/aslr_shift.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,381
30.409091
115
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/lsmod.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
24,028
36.545313
158
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/recover_filesystem.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
3,681
32.779817
138
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/netstat.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,139
38.807692
169
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/linux_strings.py
# Volatility # Copyright (C) 2007,2008 Volatile Systems # Copyright (C) 2009 Timothy D. Morgan (strings optimization) # # 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 Li...
3,684
31.610619
86
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/pidhashtable.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...
13,043
32.532134
170
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/psxview.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 Version 2 as # published b...
5,933
40.208333
130
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/dmesg.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...
3,262
30.679612
117
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/librarydump.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
2,953
37.363636
156
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/pstree.py
# This file is part of Volatility. # Copyright (C) 2007-2013 Volatility Foundation # # 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 late...
3,458
37.433333
127
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_inline_kernel.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
13,088
39.649068
150
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_creds.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,845
32.093023
76
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/hidden_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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
4,763
35.930233
130
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/lsof.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,137
35.237288
131
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_afinfo.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...
3,463
37.488889
128
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/mount.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...
8,324
31.905138
127
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_idt.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,747
33.656934
129
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
3,088
37.135802
153
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/enumerate_files.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,031
35.285714
102
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/kernel_opened_files.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
4,675
32.884058
136
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/common.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 Version 2 as # published by the Free Software Foundation. You may not use, modify or # distribu...
9,766
30.405145
162
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/vma_cache.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,724
28.619565
103
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/plthook.py
# Volatility # Copyright (C) 2007-2013 Volatility Foundation # Copyright (C) 2014 CrowdStrike, Inc. # # 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,857
38.694444
109
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_evt_arm.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,261
38.780488
109
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/psscan.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,709
32.04878
102
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/library_list.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 ...
2,354
34.681818
100
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/check_syscall_arm.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...
4,200
35.215517
131
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/info_regs.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 ...
4,080
26.574324
90
py
pyrebox
pyrebox-master/volatility/volatility/plugins/linux/flags.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,831
24.09589
70
py