1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Jorijn\LaravelSecurityChecker\Console; |
4
|
|
|
|
5
|
|
|
use Enlightn\SecurityChecker\AdvisoryAnalyzer; |
6
|
|
|
use Enlightn\SecurityChecker\AdvisoryFetcher; |
7
|
|
|
use Enlightn\SecurityChecker\AdvisoryParser; |
8
|
|
|
use Enlightn\SecurityChecker\Composer; |
9
|
|
|
use Illuminate\Console\Command; |
10
|
|
|
use Illuminate\Support\Facades\Log; |
11
|
|
|
use Illuminate\Support\Facades\Notification; |
12
|
|
|
use Jorijn\LaravelSecurityChecker\Notifications\SecuritySlackNotification; |
13
|
|
|
|
14
|
|
|
class SecuritySlackCommand extends Command |
15
|
|
|
{ |
16
|
|
|
/** |
17
|
|
|
* @var string |
18
|
|
|
*/ |
19
|
|
|
protected $name = 'security-check:slack'; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @var string |
23
|
|
|
*/ |
24
|
|
|
protected $description = 'Send vulnerabilities to a Slack channel.'; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Execute the command |
28
|
|
|
*/ |
29
|
|
|
public function handle() |
30
|
|
|
{ |
31
|
|
|
// require that the user specifies a slack channel in the .env file |
32
|
|
|
if (!config('laravel-security-checker.slack_webhook_url')) { |
33
|
27 |
|
Log::error('checking for vulnerabilities using slack was requested but no hook is configured'); |
34
|
|
|
throw new \Exception('No Slack Webhook has been specified.'); |
35
|
27 |
|
} |
36
|
|
|
|
37
|
27 |
|
// get the path to composer.lock |
38
|
27 |
|
$composerLock = base_path('composer.lock'); |
39
|
|
|
|
40
|
|
|
// and feed it into the SecurityChecker |
41
|
|
|
Log::debug('about to check for vulnerabilities'); |
42
|
|
|
$parser = new AdvisoryParser((new AdvisoryFetcher)->fetchAdvisories()); |
43
|
9 |
|
$dependencies = (new Composer)->getDependencies($composerLock); |
44
|
|
|
$vulnerabilities = (new AdvisoryAnalyzer($parser->getAdvisories()))->analyzeDependencies($dependencies); |
45
|
|
|
|
46
|
9 |
|
// cancel execution here if user does not want to be notified when there are 0 vulns. |
47
|
3 |
|
$proceed = config('laravel-security-checker.notify_even_without_vulnerabilities', false); |
48
|
3 |
|
if (count($vulnerabilities) === 0 && $proceed !== true) { |
49
|
|
|
Log::info('no vulnerabilities were found, not sending a slack notification'); |
50
|
|
|
|
51
|
|
|
return 0; |
52
|
6 |
|
} |
53
|
|
|
|
54
|
|
|
Log::warning('vulnerabilities were found, sending slack notification to configured hook'); |
55
|
6 |
|
Notification::route('slack', config('laravel-security-checker.slack_webhook_url', null)) |
56
|
6 |
|
->notify(new SecuritySlackNotification($vulnerabilities, realpath($composerLock))); |
57
|
|
|
} |
58
|
|
|
} |
59
|
|
|
|