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
FROM node:18-alpine | |
WORKDIR /app | |
COPY package.json . | |
RUN npm install | |
COPY . . | |
EXPOSE 3000 | |
CMD ["npm", "start"] |
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
FROM golang:1.23-alpine | |
WORKDIR /app | |
COPY go.mod . | |
COPY . . | |
RUN go mod download | |
RUN go build -o websocket-server . | |
EXPOSE 8080 | |
CMD ["./websocket-server"] |
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
FROM nginx:1.22.0 | |
COPY nginx.conf /etc/nginx/nginx.conf | |
COPY sslkeylog.c /src/sslkeylog.c | |
COPY certs/nginx.crt /etc/nginx/certs/nginx.crt | |
COPY certs/nginx.key /etc/nginx/certs/nginx.key | |
RUN apt-get update && apt-get install -y gcc libssl-dev | |
RUN cc /src/sslkeylog.c -shared -o /usr/local/lib/libsslkeylog.so -fPIC -ldl |
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
guacp_packets = 0 | |
packet_no = 0 | |
local OPCODE_IMG = "332E696D672C" | |
local OPCODE_BLOB = "342E626C6F622C" | |
local OPCODE_END = "332E656E642C" | |
tap_guacp = Listener.new(nil,"guacp") | |
local guacp_instructions_f = Field.new("guacp.instructions") | |
local guacp_instruction_f = Field.new("guacp.instruction") | |
local guacp_opcode_f = Field.new("guacp.opcode") |
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
#!/bin/sh | |
PROTOCOL="http" | |
SERVER="localhost" | |
PORT=5000 | |
URL="$PROTOCOL://$SERVER:$PORT" | |
/usr/bin/time curl --silent -H "Connection: close" "$URL" \ | |
"$URL" \ | |
"$URL" \ |
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
FROM alpine:3.18.0 | |
RUN apk --no-cache add \ | |
gdb \ | |
lldb \ | |
build-base \ | |
libc-dev \ | |
elfutils \ | |
file \ | |
binutils \ |
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
ls -l --block-size=M #list files in MBs |
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
version: "3" | |
services: | |
mongo: | |
image: mongo | |
ports: | |
- 27017:27017 | |
volumes: | |
- ./db:/data/db |