-
-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
graphql: Add tech detection for GraphQL Engines
- CHANGELOG > Added note. - build file > Added dependency. - GraphQlFingerprinter > Updated to add Technology matches when GraphQL engines are fingerprinted. - ExtensionTechDetection > Added to facilitate optional dependence. - ExtensionTechDetectionUnitTest > Tests :) - Messages.properties > Added key/value pairs to support the optional dependency. - alert.html > Added note about the new functionality. Signed-off-by: kingthorin <kingthorin@users.noreply.github.com>
- Loading branch information
1 parent
e0c058b
commit d8a916e
Showing
9 changed files
with
247 additions
and
10 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
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
103 changes: 103 additions & 0 deletions
103
.../src/main/java/org/zaproxy/addon/graphql/techdetection/ExtensionTechDetectionGraphQl.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,103 @@ | ||
/* | ||
* Zed Attack Proxy (ZAP) and its related class files. | ||
* | ||
* ZAP is an HTTP/HTTPS proxy for assessing web application security. | ||
* | ||
* Copyright 2024 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.addon.graphql.techdetection; | ||
|
||
import java.util.List; | ||
import org.apache.commons.httpclient.URI; | ||
import org.parosproxy.paros.Constant; | ||
import org.parosproxy.paros.control.Control; | ||
import org.parosproxy.paros.extension.Extension; | ||
import org.parosproxy.paros.extension.ExtensionAdaptor; | ||
import org.parosproxy.paros.extension.ExtensionHook; | ||
import org.zaproxy.addon.graphql.GraphQlFingerprinter; | ||
import org.zaproxy.addon.graphql.GraphQlFingerprinter.Engine; | ||
import org.zaproxy.zap.extension.wappalyzer.Application; | ||
import org.zaproxy.zap.extension.wappalyzer.ApplicationMatch; | ||
import org.zaproxy.zap.extension.wappalyzer.ExtensionWappalyzer; | ||
|
||
public class ExtensionTechDetectionGraphQl extends ExtensionAdaptor { | ||
|
||
public static final String NAME = "ExtensionTechDetectionGraphQl"; | ||
|
||
private static final List<Class<? extends Extension>> DEPENDENCIES = | ||
List.of(ExtensionWappalyzer.class); | ||
|
||
private static ExtensionWappalyzer extTech; | ||
|
||
public ExtensionTechDetectionGraphQl() { | ||
super(NAME); | ||
} | ||
|
||
@Override | ||
public String getUIName() { | ||
return Constant.messages.getString("graphql.techdetection.name"); | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return Constant.messages.getString("graphql.techdetection.desc"); | ||
} | ||
|
||
@Override | ||
public List<Class<? extends Extension>> getDependencies() { | ||
return DEPENDENCIES; | ||
} | ||
|
||
@Override | ||
public void hook(ExtensionHook extensionHook) { | ||
super.hook(extensionHook); | ||
GraphQlFingerprinter.setAppConsumer( | ||
(site, engine) -> ExtensionTechDetectionGraphQl.addApp(site, engine)); | ||
} | ||
|
||
@Override | ||
public boolean canUnload() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public void unload() { | ||
GraphQlFingerprinter.setAppConsumer(null); | ||
} | ||
|
||
private static ApplicationMatch getAppForEngine(Engine engine) { | ||
Application gqlEgine = new Application(); | ||
gqlEgine.setName(engine.getName()); | ||
gqlEgine.setCategories(List.of("GraphQL Engine")); | ||
gqlEgine.setWebsite(engine.getDocsUrl()); | ||
gqlEgine.setImplies(List.of(engine.getTechnologies())); | ||
|
||
return new ApplicationMatch(gqlEgine); | ||
} | ||
|
||
private static void addApp(URI uri, Engine engine) { | ||
getExtTech().addApplicationsToSite(uri, getAppForEngine(engine)); | ||
} | ||
|
||
private static ExtensionWappalyzer getExtTech() { | ||
if (extTech == null) { | ||
extTech = | ||
Control.getSingleton() | ||
.getExtensionLoader() | ||
.getExtension(ExtensionWappalyzer.class); | ||
} | ||
return extTech; | ||
} | ||
} |
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
57 changes: 57 additions & 0 deletions
57
...src/test/java/org/zaproxy/addon/graphql/techdetection/ExtensionTechDetectionUnitTest.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,57 @@ | ||
/* | ||
* Zed Attack Proxy (ZAP) and its related class files. | ||
* | ||
* ZAP is an HTTP/HTTPS proxy for assessing web application security. | ||
* | ||
* Copyright 2024 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.addon.graphql.techdetection; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.is; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.zaproxy.addon.graphql.ExtensionGraphQl; | ||
import org.zaproxy.zap.testutils.TestUtils; | ||
|
||
class ExtensionTechDetectionUnitTest extends TestUtils { | ||
|
||
@Test | ||
void shouldHaveName() { | ||
// Given | ||
ExtensionTechDetectionGraphQl td = new ExtensionTechDetectionGraphQl(); | ||
mockMessages(new ExtensionGraphQl()); | ||
// When / Then | ||
assertThat(td.getName(), is(equalTo("ExtensionTechDetectionGraphQl"))); | ||
} | ||
|
||
@Test | ||
void shouldHaveUiName() { | ||
// Given | ||
ExtensionTechDetectionGraphQl td = new ExtensionTechDetectionGraphQl(); | ||
mockMessages(new ExtensionGraphQl()); | ||
// When / Then | ||
assertThat(td.getUIName(), is(equalTo("GraphQL Tech Detection"))); | ||
} | ||
|
||
@Test | ||
void shouldBeUnloadable() { | ||
// Given | ||
ExtensionTechDetectionGraphQl td = new ExtensionTechDetectionGraphQl(); | ||
// When / Then | ||
assertThat(td.canUnload(), is(equalTo(true))); | ||
} | ||
} |
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