As a repository owner, you want to receive specific notifications, including security alerts, for an individual repository. Which repository notification setting should you use?
A.
Ignore
B.
Participating and @mentions
C.
All Activity
D.
Custom
Correct Answer: D
Explanation:
This setting is configurable per repository and allows users to stay aware of critical issues while minimizing notification noise. Page 6 Using the Custom setting allows you to subscribe to specific event types, such as Dependabot alerts or vulnerability notifications, without being overwhelmed by all repository activity. This is essential for repository maintainers who need fine-grained control over what kinds of events trigger noti ficati ons.
Question #2 (Topic: demo questions)
What is a security policy?
A.
An automatic detection of security vulnerabilities and coding errors in new or modified code
B.
B. A security alert issued to a community in response to a vulnerability
C.
A file in a GitHub repository that provides instructions to users about how to report a security vulnerability
D.
An alert about dependencies that are known to contain security vulnerabilities Adding this file also enables a “Report a vulnerability” button in the repository’s Security tab.
Correct Answer: C
Explanation:
A security policy is defined by a SECURITY.md file in the root of your repository or .github/ directory. This file informs contributors and security researchers about how to responsibly report vulnerabilities. It improves your project’s transparency and ensures timely communication and mitigation of any reported issues.A security policy is defined by a SECURITY.md file in the root of your repository or .github/ directory. This file informs contributors and security researchers about how to responsibly report vulnerabilities. It improves your project’s transparency and ensures timely communication and mitigation of any reported issues.A security policy is defined by a SECURITY.md file in the root of your repository or .github/ directory. This file informs contributors and security researchers about how to responsibly report vulnerabilities. It improves your project’s transparency and ensures timely communication and mitigation of any reported issues.
Question #3 (Topic: demo questions)
Which of the following is the most complete method for Dependabot to find vulnerabilities in thirdparty dependencies?
A.
An automatic detection of security vulnerabilities and coding errors in new or modified code
B.
CodeQL analyzes the code and raises vulnerabilities in third-party dependencies
C.
A dependency graph is created, and Dependabot compares the graph to the GitHub Advisory database
D.
The build tool finds the vulnerable dependencies and calls the Dependabot API
Correct Answer: C
Explanation:
Dependabot builds a dependency graph by analyzing package manifests and lockfiles in your repository. This graph includes both direct and transitive dependencies. It then compares this graph against the GitHub Advisory Database, which includes curated, security-reviewed advisories.
This method provides a comprehensive and automated way to discover all known vulnerabilities across your dependency tree.
Question #4 (Topic: demo questions)
When does Dependabot alert you of a vulnerability in your software development process?
A.
When a pull request adding a vulnerable dependency is opened
B.
As soon as a vulnerable dependency is detected
C.
As soon as a pull request is opened by a contributor
D.
When Dependabot opens a pull request to update a vulnerable dependency
Correct Answer: B
Explanation:
Dependabot alerts are generated as soon as GitHub detects a known vulnerability in one of your dependencies. GitHub does this by analyzing your repository’s dependency graph and matching it against vulnerabilities listed in the GitHub Advisory Database. Once a match is found, the system raises an alert automatically without waiting for a PR or manual action. This allows organizations to proactively mitigate vulnerabilities as early as possible, based on realtime detection.
Question #5 (Topic: demo questions)
When does Dependabot alert you of a vulnerability in your software development process?
A.
When a pull request adding a vulnerable dependency is opened
B.
As soon as a vulnerable dependency is detected
C.
As soon as a pull request is opened by a contributor
D.
When Dependabot opens a pull request to update a vulnerable dependency
Dependabot alerts are generated as soon as GitHub detects a known vulnerability in one of your dependencies. GitHub does this by analyzing your repository’s dependency graph and matching it against vulnerabilities listed in the GitHub Advisory Database. Once a match is found, the system raises an alert automatically without waiting for a PR or manual action. This allows organizations to proactively mitigate vulnerabilities as early as possible, based on realtime detection.