Skip to content

Instantly share code, notes, and snippets.

@ValtteriL
ValtteriL / opalopc-report-202403101334056538.sarif
Created March 10, 2024 13:31
OPC UA Vulnerability Scan Report in SARIF format
{
"$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.6.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"guid": "9ff60239-60d4-4715-afa8-bfe993f72824",
"name": "OpalOPC",
"shortDescription": {
@ValtteriL
ValtteriL / Dockerfile.opalopc
Last active April 11, 2024 17:25
OPC UA DAST testing with Jenkins and OpalOPC
FROM ubuntu:jammy
# Install dependencies
RUN apt-get update && apt-get install -y \
curl \
libicu70
# Install opalopc http://opalopc.com/docs/get-started/install
RUN curl -LO "https://dl.opalopc.com/release/$(curl -L -s https://dl.opalopc.com/release/stable.txt)/bin/linux/amd64/opalopc" \
&& install -o root -g root -m 0755 opalopc /usr/local/bin/opalopc