Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ COPY --from=builder ./scb-scanprocesses/nikto-process/target/nikto-process-0.0.1
COPY --from=builder ./scb-scanprocesses/nmap-process/target/nmap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/zap-process/target/zap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/combined-amass-nmap-process/target/combined-amass-nmap-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/combined-nmap-nikto-scanprocess/target/combined-nmap-nikto-scanprocess-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/combined-nmap-nikto-process/target/combined-nmap-nikto-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/sslyze-process/target/sslyze-process-0.0.1-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/arachni-process/target/arachni-process-1.0-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/subdomain-scanner-process/target/subdomain-scanner-process-1.0-SNAPSHOT.jar /scb-engine/lib/
COPY --from=builder ./scb-scanprocesses/amass-process/target/amass-process-1.0-SNAPSHOT.jar /scb-engine/lib/

COPY --from=builder ./scb-persistenceproviders/elasticsearch-persistenceprovider/target/elasticsearch-persistenceprovider-0.0.1-SNAPSHOT-jar-with-dependencies.jar /scb-engine/lib/
COPY --from=builder ./scb-persistenceproviders/s3-persistenceprovider/target/s3-persistenceprovider-0.0.1-SNAPSHOT-jar-with-dependencies.jar /scb-engine/lib/
Expand Down
4 changes: 2 additions & 2 deletions scb-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@
</dependency>
<dependency>
<groupId>io.securecodebox.scanprocesses</groupId>
<artifactId>subdomain-scanner-process</artifactId>
<artifactId>amass-process</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.securecodebox.scanprocesses</groupId>
<artifactId>combined-nmap-nikto-scanprocess</artifactId>
<artifactId>combined-nmap-nikto-process</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</parent>

<groupId>io.securecodebox.scanprocesses</groupId>
<artifactId>subdomain-scanner-process</artifactId>
<artifactId>amass-process</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
*/

@RunWith(SpringJUnit4ClassRunner.class)
@Deployment(resources = "bpmn/subdomain_scanner_process.bpmn")
@Deployment(resources = "bpmn/amass_process.bpmn")
@Ignore("Ignored until problems with camunda testing frameworks are handled. Introduces via update to camunda 7.10")
public class SubdomainScannerProcessTest {

Expand Down Expand Up @@ -127,7 +127,7 @@ If you have the path to your executable code (the class for delegate) as delegat
then this guide is helpful:
https://blog.akquinet.de/2016/11/04/camunda-bpm-test-your-processes-based-on-plain-old-java-delegates/
*/
autoMock("bpmn/subdomain_scanner_process.bpmn");
autoMock("bpmn/amass_process.bpmn");

/*
Here we define a default behaviour for all the tasks in the BPMN model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>combined-nmap-nikto-scanprocess</artifactId>
<artifactId>combined-nmap-nikto-process</artifactId>
<version>0.0.1-SNAPSHOT</version>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions scb-scanprocesses/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<module>nikto-process</module>
<module>zap-process</module>
<module>sslyze-process</module>
<module>combined-nmap-nikto-scanprocess</module>
<module>combined-nmap-nikto-process</module>
<module>combined-amass-nmap-process</module>
<module>arachni-process</module>
<module>subdomain-scanner-process</module>
<module>amass-process</module>
</modules>

</project>