@inject('widgetHelper', '\App\Helpers\OnDemandReportWidgetHelper')
@include('reports.on-demand.templates.incl_style')
@php
$topCases = \App\Models\Cases::whereIn('status', [\App\Models\Cases::STATUS_OPEN, \App\Models\Cases::STATUS_INFORMATIVE])
->select('id', 'name', 'priority', 'updated_at', 'organization_id', 'control')
->where('organization_id', account()->id)
->where('control', 'Client')
->orderBy('priority', 'desc')
->orderBy('updated_at', 'desc')
->limit(10)
->get();
$totalCasesOpened = \App\Models\Cases::where('organization_id', account()->id)
->where('status', \App\Models\Cases::STATUS_OPEN)
->where('control', 'Client')
->count();
$totalCasesAnswered = \App\Models\Cases::where('organization_id', account()->id)
->whereIn('status', [\App\Models\Cases::STATUS_INFORMATIVE, \App\Models\Cases::STATUS_CLOSED, \App\Models\Cases::STATUS_SUSPENDED])
->whereDate('updated_at', '>', \Carbon\Carbon::today()->subDays(30))
->where('control', 'Client')
->with('caseTrackTimeMetrics')
->count();
$caseTypeRemediation = \App\Models\SubTypeOfCase::where('name', 'REMEDIATION')->where('gmp_visibility',1)->first();
$caseTypeRemediation=$caseTypeRemediation?$caseTypeRemediation->id:null;
$total=[];
@endphp
This on-demand report provides a consolidated view of cybersecurity indicators and operational indicators for
the organization during a period of time.
TLP AMBER
CYBERSECURITY SITUATION APPRAISAL REPORT
Notable Event Type | How Many # |
---|---|
{{ $type }} | {{ $qty }} |
N/A |
Open: {{ $totalCasesOpened }}
Answered: {{ $totalCasesAnswered }}
Divisions | Address, H | Respond, H |
---|---|---|
{{ $division->name }} | {{ time_to_h($division->casesRespondTime(true)) }} | {{ time_to_h($division->casesRespondTime()) }} |
n/a
@foreach(\App\Models\CAD\AssetDivision::getForAccount() as $division) | {{$division->name}} | @endforeach
---|---|
{{$stage->name}} | @foreach(\App\Models\CAD\AssetDivision::getForAccount() as $division){{$s=$division->getCases($caseTypeRemediation)->where('stage_id',$stage->id)->count()}} | @php $total[$loop->index]=(isset($total[$loop->index])?$total[$loop->index]:0)+$s; @endphp @endforeach
Total | @foreach(\App\Models\CAD\AssetDivision::getForAccount() as $division){{$total[$loop->index]}} | @endforeach
= Limited disclosure, restricted to
participants’ organizations.
Sources may use TLP:AMBER when information requires support to be effectively acted upon, yet
carries risks to privacy, reputation, or operations if shared outside of the organizations involved.
Recipients may only share TLP:AMBER information with members of their own organization, and
with clients or customers who need to know the information to protect themselves or prevent
further harm. Sources are at liberty to specify additional intended limits of the sharing: these
must be adhered to.