All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zaproxy.zap.spider.DomainAlwaysInScopeMatcher Maven / Gradle / Ivy

Go to download

The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.

There is a newer version: 2.15.0
Show newest version
/*
 * Zed Attack Proxy (ZAP) and its related class files.
 *
 * ZAP is an HTTP/HTTPS proxy for assessing web application security.
 *
 * Copyright 2014 The ZAP Development Team
 *
 * 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 org.zaproxy.zap.spider;

import java.util.regex.Pattern;
import org.zaproxy.zap.utils.Enableable;

/**
 * Class that contains rules to checks if a domain is in scope.
 *
 * 

It supports both plain text and regular expression checks. * * @see #matches(String) */ public class DomainAlwaysInScopeMatcher extends Enableable { private final Pattern pattern; private final String domain; private final boolean regex; public DomainAlwaysInScopeMatcher(Pattern pattern) { super(true); if (pattern == null) { throw new IllegalArgumentException("Parameter pattern must not be null."); } this.pattern = pattern; this.regex = true; this.domain = null; } public DomainAlwaysInScopeMatcher(String domain) { super(true); if (domain == null || domain.isEmpty()) { throw new IllegalArgumentException("Parameter domain must not be null or empty."); } this.domain = domain; this.regex = false; this.pattern = null; } public DomainAlwaysInScopeMatcher(DomainAlwaysInScopeMatcher other) { super(other.isEnabled()); this.domain = other.domain; this.regex = other.regex; this.pattern = other.pattern; } public String getValue() { if (isRegex()) { return pattern.pattern(); } return domain; } public boolean isRegex() { return regex; } /** * Tells whether or not the given domain is considered always in scope. * * @param domain the domain that will be checked * @return {@code true} if the domain is considered always in scope, {@code false} otherwise. */ public boolean matches(String domain) { if (pattern != null) { return pattern.matcher(domain).matches(); } return this.domain.equals(domain); } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + ((domain == null) ? 0 : domain.hashCode()); result = prime * result + ((pattern == null) ? 0 : pattern.pattern().hashCode()); return result; } @Override public boolean equals(Object object) { if (this == object) { return true; } if (!super.equals(object)) { return false; } if (getClass() != object.getClass()) { return false; } DomainAlwaysInScopeMatcher other = (DomainAlwaysInScopeMatcher) object; if (domain == null) { if (other.domain != null) { return false; } } else if (!domain.equals(other.domain)) { return false; } if (pattern == null) { if (other.pattern != null) { return false; } } else if (!pattern.pattern().equals(other.pattern.pattern())) { return false; } return true; } public static Pattern createPattern(String regex) { return Pattern.compile(regex, Pattern.CASE_INSENSITIVE); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy