Hacking Articles Tips Tricks Videos Tutorials
471 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Dark Reading: Attacks/Breaches
New Startup OpsHelm Tackles Cloud Misconfigurations

The company emerges from stealth with an automated security remediation product identifies and remediates cloud misconfigurations.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Dismember : Scan Memory For Secrets And More

Dismember is a command-line toolkit for Linux that can be used to scan the memory of all processes (or particular ones) for common secrets and custom regular expressions, among other things.

It will eventually become a full /proctoolkit.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIt3XUHmPvC1JI47DZz5Q-RZOlehIeLAFxptwg8kYelD1VNPT0cUC3Gf0s9yGzAyKdzdgh1EeDKiiWO-HM1LIOoIuEwcRSPeQoBEML7un4TKoT_JgFfDrxawJf52LVxw9Av-VwjueccZbXtfvRUbC5DHs-wPyaIuZK9yBtgi-8JkreAcq3XhZL76mQ/s1573/demo.gif
Using the grepcommand, it can match a regular expression across all memory for all (accessible) processes. This could be used to find sensitive data in memory, identify a process by something included in its memory, or to interrogate a processes’ memory for interesting information.

There are many built-in patterns included via the scancommand, which effectively works as a secret scanner against the memory on your machine.

Dismember can be used to search memory of all processes it has access to, so running it as root is the most effective method.

Commands are also included to list processes, explore process status and related information, draw process trees, and more…

Main Commands
CommandDescriptiongrepSearch process memory for a given string or regexscanSearch process memory for a set of predefined secret patterns
Utility Commands
CommandDescriptionfilesShow a list of files being accessed by a processfindFind a PID given a process name. If multiple processes match, the first one is returned.infoShow information about a processkernelShow information about the kernelkillKill a process (or processes) using SIGKILLlistList all processes currently available on the systemresumeResume a suspended process using SIGCONTsuspendSuspend a process using SIGSTOP (use ‘dismember resume’ to leave suspension)treeShow a tree diagram of a process and all children (defaults to PID 1).
Installation

Grab a binary from the latest release and add it to your path.

Usage Examples

Search for a pattern in a process by PID
# search memory owned by process 1234
dismember grep -p 1234 'the password is .*'
Search for a pattern in a process by name
# search memory owned by processes named "nginx" for a login form submission
dismember grep -n nginx 'username=liamg&password=.*'
Search for a pattern across all processes
# find a github api token across all processes
dismember grep 'gh[pousr]_[0-9a-zA-Z]{36}'
Search for secrets in memory across all processes
# search all accessible memory for common secrets
dismember scan

Click Here To Download

___________________________
@hacking_Attack
@Hacking_Video
Root detection analysis and bypass — Rootbeer Library |Beginner | Part 1

For those who don’t know, I am Ashish (co-founder of Bluefire redteam), We engage with many real-world cybersecurity challenges, and this…Continue reading on Medium »
Read more...