peass-ng / PEASS-ng

PEASS - Privilege Escalation Awesome Scripts SUITE (with colors)

Home Page:https://book.hacktricks.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Show where the passwords in config PHP files were found.

CobraColin opened this issue · comments

This is what is right now.
╔══════════╣ Searching passwords in config PHP files
$password = "complexpassword";
$password = "complexpassword";

What is suggest is something like this:
╔══════════╣ Searching passwords in config PHP files

File path:
$password = "complexpassword";
Different file path:
$password = "complexpassword";

Sometimes you also want to know where it was found because there might be other useful information in the config file such a username.

Wanted to tackle this but changes already made with commit 05f6cb7.