-
Notifications
You must be signed in to change notification settings - Fork 896
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 655093248 Change-Id: I89e1a894dac6eeaeb868fa14462310ed0fc63ee7
- Loading branch information
1 parent
6c69193
commit b4b2089
Showing
6 changed files
with
535 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
plugin/src/main/java/com/google/tsunami/plugin/annotations/ForOperatingSystemClass.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.google.tsunami.plugin.annotations; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* An annotation for marking the target operating system for a Tsunami {@link | ||
* com.google.tsunami.plugin.VulnDetector} plugin. | ||
* | ||
* <p>If annotated by this annotation, the {@link com.google.tsunami.plugin.VulnDetector} will only | ||
* be executed by the scanner when the target network service is running on the described Operating | ||
* System. | ||
* | ||
* <p>Example usage: | ||
* | ||
* <pre>{@code | ||
* {@literal @}ForOperatingSystemClass({ | ||
* vendor = "Linux", | ||
* minAccuracy = 90 | ||
* }) | ||
* public class ExamplePlugin implements VulnDetector { | ||
* // ... | ||
* } | ||
* }</pre> | ||
*/ | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.TYPE) | ||
public @interface ForOperatingSystemClass { | ||
|
||
// The vendor of the target operating system, e.g. "Microsoft" | ||
String[] vendor() default ""; | ||
|
||
// The family of the target operating system, e.g. "Windows" | ||
String[] osfamily() default ""; | ||
|
||
// The minimum accuracy of the target operating system, e.g. 90 | ||
int minAccuracy() default 0; | ||
} |
Oops, something went wrong.