__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/env python3
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""A clone of 'pmap' utility on Linux, 'vmmap' on macOS and 'procstat
-v' on BSD. Report memory map of a process.
$ python3 scripts/pmap.py 32402
Address RSS Mode Mapping
0000000000400000 1200K r-xp /usr/bin/python2.7
0000000000838000 4K r--p /usr/bin/python2.7
0000000000839000 304K rw-p /usr/bin/python2.7
00000000008ae000 68K rw-p [anon]
000000000275e000 5396K rw-p [heap]
00002b29bb1e0000 124K r-xp /lib/x86_64-linux-gnu/ld-2.17.so
00002b29bb203000 8K rw-p [anon]
00002b29bb220000 528K rw-p [anon]
00002b29bb2d8000 768K rw-p [anon]
00002b29bb402000 4K r--p /lib/x86_64-linux-gnu/ld-2.17.so
00002b29bb403000 8K rw-p /lib/x86_64-linux-gnu/ld-2.17.so
00002b29bb405000 60K r-xp /lib/x86_64-linux-gnu/libpthread-2.17.so
00002b29bb41d000 0K ---p /lib/x86_64-linux-gnu/libpthread-2.17.so
00007fff94be6000 48K rw-p [stack]
00007fff94dd1000 4K r-xp [vdso]
ffffffffff600000 0K r-xp [vsyscall]
...
"""
import sys
import psutil
from psutil._common import bytes2human
from psutil._compat import get_terminal_size
def safe_print(s):
s = s[: get_terminal_size()[0]]
try:
print(s)
except UnicodeEncodeError:
print(s.encode('ascii', 'ignore').decode())
def main():
if len(sys.argv) != 2:
sys.exit('usage: pmap <pid>')
p = psutil.Process(int(sys.argv[1]))
templ = "%-20s %10s %-7s %s"
print(templ % ("Address", "RSS", "Mode", "Mapping"))
total_rss = 0
for m in p.memory_maps(grouped=False):
total_rss += m.rss
line = templ % (
m.addr.split('-')[0].zfill(16),
bytes2human(m.rss),
m.perms,
m.path,
)
safe_print(line)
print("-" * 31)
print(templ % ("Total", bytes2human(total_rss), '', ''))
safe_print("PID = %s, name = %s" % (p.pid, p.name()))
if __name__ == '__main__':
main()
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| internal | Folder | 0755 |
|
|
| battery.py | File | 1.14 KB | 0755 |
|
| cpu_distribution.py | File | 3.86 KB | 0755 |
|
| disk_usage.py | File | 1.54 KB | 0755 |
|
| fans.py | File | 771 B | 0755 |
|
| free.py | File | 1.17 KB | 0755 |
|
| ifconfig.py | File | 3.58 KB | 0755 |
|
| iotop.py | File | 4.92 KB | 0755 |
|
| killall.py | File | 693 B | 0755 |
|
| meminfo.py | File | 1.03 KB | 0755 |
|
| netstat.py | File | 1.98 KB | 0755 |
|
| nettop.py | File | 4.32 KB | 0755 |
|
| pidof.py | File | 977 B | 0755 |
|
| pmap.py | File | 2.16 KB | 0755 |
|
| procinfo.py | File | 11.63 KB | 0755 |
|
| procsmem.py | File | 3.69 KB | 0755 |
|
| ps.py | File | 4.2 KB | 0755 |
|
| pstree.py | File | 1.65 KB | 0755 |
|
| sensors.py | File | 2.78 KB | 0755 |
|
| temperatures.py | File | 1.5 KB | 0755 |
|
| top.py | File | 7.34 KB | 0755 |
|
| who.py | File | 946 B | 0755 |
|
| winservices.py | File | 1.64 KB | 0755 |
|