Compare commits

...

2 Commits

2 changed files with 10 additions and 20 deletions

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 (strpos($line, 'URL:') === 0) {
if (!empty($current)) {
$credentials[] = $current;
}
$current = ['url' => trim(substr($line, 4))];
} elseif (strpos($line, 'Username:') === 0) {
$current['username'] = trim(substr($line, 9));
} elseif (strpos($line, 'Password:') === 0) {
$current['password'] = trim(substr($line, 9));
} elseif (strpos($line, 'Application:') === 0) {
$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;

View File

@ -5,7 +5,7 @@ services:
context: .
dockerfile: Dockerfile
ports:
- "8000:8080"
- "8000:80"
environment:
- APP_ENV=production
- DB_CONNECTION=sqlite