Improve parser using REGEX capturing group

This commit is contained in:
2024-11-12 19:20:15 +01:00
parent 0fdd5c5fba
commit 5e51fa1454

View File

@ -18,27 +18,17 @@ class StealerParser
*/
public function parse(): array{
$lines = explode("\n", $this->content);
$items = explode("===============\n", $this->content);
$credentials = [];
$current = [];
foreach ($lines as $line) {
if (str_starts_with($line, 'URL:')) {
if (!empty($current)) {
$credentials[] = $current;
}
$current = ['url' => trim(substr($line, 4))];
} elseif (str_starts_with($line, 'Username:')) {
$current['username'] = trim(substr($line, 9));
} elseif (str_starts_with($line, 'Password:')) {
$current['password'] = trim(substr($line, 9));
} elseif (str_starts_with($line, 'Application:')) {
$current['application'] = trim(substr($line, 12));
}
}
if (!empty($current)) {
$credentials[] = $current;
foreach ($items as $item) {
preg_match_all('/URL:\s(.*)\nUsername:\s(.*)\nPassword:\s(.*)\nApplication:\s(.*)\n/m',$item,$matches);
$credentials[] = [
'url' => trim($matches[1][0] ?? ''),
'username' => trim($matches[2][0] ?? ''),
'password' => trim($matches[3][0] ?? ''),
'application' => trim($matches[4][0] ?? '')
];
}
return $credentials;