Skip to content
#

assessment

Here are 241 public repositories matching this topic...

Prowler is a security tool to perform AWS security best practices assessments, audits, incident response, continuous monitoring, hardening and forensics readiness. It contains all CIS controls listed here https://d0.awsstatic.com/whitepapers/compliance/AWS_CIS_Foundations_Benchmark.pdf and more than 100 additional checks that help on GDPR, HIPAA and other security requirements.

  • Updated Feb 9, 2021
  • Shell
hl8-coder
hl8-coder commented Jan 27, 2021

Q34. Which code snippet demonstrates encapsulation?

  • class Cow extends Animal {
    private $milk;
    }

  • class Cow {
    public $milk;
    }

      $daisy = new Cow();
      $daisy->milk = "creamy";
    
  • class Cow {
    public $milk;

          function getMilk() {
              return $this->milk;
          }
      }
    
ultrasaurus
ultrasaurus commented Feb 18, 2021

Description: as discussed in Feb 16 TOC meeting (TBD toc issue), take a look at incubated/graduated projects and check to what degree projects have documented policies for users to report security vulnerabilities and how known vulnerabilities are communicated

Impact: support TOC in evaluating proposed criteria to validate requirement which is already part of CII badge requirement

Scope: tak

christianp
christianp commented Jan 5, 2021

This would be a nice function to have, instead of having to rewrite it each time I write a question that needs it.

u is a scalar multiple of v if there is a scalar k such that u = k*v. You could find this k by computing the ratio u_i / v_i for each non-zero component i, then check that the ratios are all equal. This should work similarly to isclose, allowing given relative and a

INGInious
ogoletti
ogoletti commented Oct 5, 2017

A student should be able to get an anonymised link of their submission so that they could share it (e.g. on social network). The view would be a readonly view with the feedback of the submission still visible. The link should only contain the submission id.
There should be an option in the task conf to allow or not this feature on a par-task basis.
If an admin follow such a link, he should be r

Improve this page

Add a description, image, and links to the assessment topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the assessment topic, visit your repo's landing page and select "manage topics."

Learn more