FingerprintCIMethod class
Detection method that checks for CI/CD artifacts in device fingerprint.
This method examines the device's fingerprint property for continuous integration artifacts, specifically looking for "jenkins" which is commonly found in automated build environments and emulators used for testing.
Reliability: High (80-90%)
- Very specific indicator for CI/CD environments and test emulators
- Low false positive rate as "jenkins" is rarely found in production devices
- Indicates automated testing or development environment usage
Score: 10 points when CI artifacts are detected in fingerprint
Performance: Fast - only checks string property
- Inheritance
-
- Object
- EmulatorDetectionMethod
- FingerprintCIMethod
Constructors
- FingerprintCIMethod.new({double score = 10, String? reason = "Fingerprint contains CI artifact"})
Properties
Methods
-
execute(
) → Future< ({String? reason, double score})> -
Executes the method and returns a score between 0 and 100
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited