Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(web/param): 补上忘记的 Dockerfile #5

Merged
merged 3 commits into from
Sep 5, 2024
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
50 changes: 50 additions & 0 deletions .github/workflows/web.param.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Challenge Param

on:
push:
branches: ["main"]
paths:
- "!**/README.md"
- "challenges/web/param/build/**"
workflow_dispatch:

env:
TYPE: web
NAME: param
REGISTRY: ghcr.io

jobs:
challenge-build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ env.NAME }}
tags: |
latest

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: challenges/${{ env.TYPE }}/${{ env.NAME }}/build
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
16 changes: 16 additions & 0 deletions challenges/web/param/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Param

- 作者:-
- 参考:-
- 难度:Baby
- 分类:Web
- 镜像:-
- 端口:-

## 题目描述

<description>

## 题目解析

<analysis>
3 changes: 3 additions & 0 deletions challenges/web/param/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM ghcr.io/svuctf/base-v2/php-nginx:8.3

COPY --chown=www-data /html /var/www/html
19 changes: 19 additions & 0 deletions challenges/web/param/build/html/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

$getParam = $_GET['svu'];
$postParam = $_POST['ctf'];

if (isset($getParam) && isset($postParam)) {
if ($getParam === "a") {
echo ("POST 方式上传参数 ctf,值为 b");
if ($postParam === "b") {
echo file_get_contents("/flag");
} else {
echo ("POST 参数错误!");
}
} else {
echo ("GET 参数错误!");
}
} else {
echo ("GET 方式上传参数 svu,值为 a");
}