|
| 1 | +name: Challenge Issue |
| 2 | +description: Report problems or improvements for specific challenges (Ada Detection, Dev Fingerprinter, etc.) |
| 3 | +title: "[Challenge]: " |
| 4 | +labels: ["challenge", "triage"] |
| 5 | +assignees: |
| 6 | + - aliyuldashev |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Report issues specific to RedTeam challenges or suggest improvements. |
| 12 | +
|
| 13 | + For general bugs, please use the [Bug Report](./bug_report.yml) template instead. |
| 14 | +
|
| 15 | + - type: dropdown |
| 16 | + id: challenge-type |
| 17 | + attributes: |
| 18 | + label: Challenge Type |
| 19 | + description: Which challenge is this issue about? |
| 20 | + options: |
| 21 | + - Ada Detection Challenge |
| 22 | + - Dev Fingerprinter Challenge |
| 23 | + - Historical Fingerprinter Challenge |
| 24 | + - Challenge System (General) |
| 25 | + - New Challenge Proposal |
| 26 | + - Other (specify in description) |
| 27 | + default: 0 |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: dropdown |
| 32 | + id: issue-type |
| 33 | + attributes: |
| 34 | + label: Issue Type |
| 35 | + description: What kind of issue is this? |
| 36 | + options: |
| 37 | + - Bug/Error in Challenge |
| 38 | + - Performance Issue |
| 39 | + - Scoring Problem |
| 40 | + - False Positive/Negative |
| 41 | + - Documentation Issue |
| 42 | + - Challenge Improvement |
| 43 | + - New Test Case |
| 44 | + - Configuration Problem |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + |
| 48 | + - type: textarea |
| 49 | + id: issue-description |
| 50 | + attributes: |
| 51 | + label: Issue Description |
| 52 | + description: | |
| 53 | + Describe the issue in detail. Include: |
| 54 | + - What you were trying to do |
| 55 | + - What happened vs what you expected |
| 56 | + - How this affects challenge participants |
| 57 | + placeholder: | |
| 58 | + The Ada Detection challenge incorrectly flags legitimate browser automation |
| 59 | + as bot behavior when using specific timing patterns, leading to false positives |
| 60 | + for valid solutions. |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + |
| 64 | + - type: textarea |
| 65 | + id: reproduction-data |
| 66 | + attributes: |
| 67 | + label: Reproduction Data |
| 68 | + description: | |
| 69 | + Provide test data, inputs, or steps that reproduce this issue. |
| 70 | + **Remove any sensitive information** (tokens, private keys, personal data). |
| 71 | + placeholder: | |
| 72 | + Test payload: |
| 73 | + ```json |
| 74 | + { |
| 75 | + "browser": "chrome", |
| 76 | + "actions": [...], |
| 77 | + "timing": [100, 200, 150] |
| 78 | + } |
| 79 | + ``` |
| 80 | +
|
| 81 | + Expected score: 0.85 |
| 82 | + Actual score: 0.12 |
| 83 | + render: markdown |
| 84 | + validations: |
| 85 | + required: false |
| 86 | + |
| 87 | + - type: input |
| 88 | + id: challenge-version |
| 89 | + attributes: |
| 90 | + label: Challenge Version/Commit |
| 91 | + description: What version of the challenge are you testing against? |
| 92 | + placeholder: "v2.0.3 or commit hash: abc123def" |
| 93 | + validations: |
| 94 | + required: false |
| 95 | + |
| 96 | + - type: textarea |
| 97 | + id: environment-details |
| 98 | + attributes: |
| 99 | + label: Environment Details |
| 100 | + description: | |
| 101 | + Provide details about your testing environment |
| 102 | + placeholder: | |
| 103 | + - RedTeam Core: v4.3.1 |
| 104 | + - Challenge running in: Docker/Local/Cloud |
| 105 | + - Browser (if applicable): Chrome 120.0 |
| 106 | + - Test framework: pytest/custom |
| 107 | + - Network latency: 50ms |
| 108 | + render: text |
| 109 | + validations: |
| 110 | + required: false |
| 111 | + |
| 112 | + - type: textarea |
| 113 | + id: logs-output |
| 114 | + attributes: |
| 115 | + label: Logs and Output |
| 116 | + description: | |
| 117 | + Include relevant logs, error messages, or challenge output. |
| 118 | + Remove sensitive information. |
| 119 | + placeholder: Paste logs here... |
| 120 | + render: shell |
| 121 | + validations: |
| 122 | + required: false |
| 123 | + |
| 124 | + - type: dropdown |
| 125 | + id: impact-level |
| 126 | + attributes: |
| 127 | + label: Impact Level |
| 128 | + description: How severely does this affect challenge participants? |
| 129 | + options: |
| 130 | + - Critical (challenge unusable) |
| 131 | + - High (significant scoring issues) |
| 132 | + - Medium (affects some scenarios) |
| 133 | + - Low (minor issue) |
| 134 | + validations: |
| 135 | + required: true |
| 136 | + |
| 137 | + - type: textarea |
| 138 | + id: proposed-solution |
| 139 | + attributes: |
| 140 | + label: Proposed Solution |
| 141 | + description: | |
| 142 | + If you have ideas for fixing this issue, please describe them. |
| 143 | + Include any relevant code snippets or algorithm changes. |
| 144 | + placeholder: | |
| 145 | + Suggested fix: |
| 146 | + 1. Adjust timing threshold from 100ms to 50ms |
| 147 | + 2. Add whitelist for legitimate automation patterns |
| 148 | + 3. Improve scoring algorithm to weight behavior patterns differently |
| 149 | + validations: |
| 150 | + required: false |
| 151 | + |
| 152 | + - type: checkboxes |
| 153 | + id: testing-checklist |
| 154 | + attributes: |
| 155 | + label: Testing Checklist |
| 156 | + description: Have you verified these aspects? |
| 157 | + options: |
| 158 | + - label: I followed documentation and setup instructions in docs.theredteam.io |
| 159 | + - label: I tested with multiple browsers/environments |
| 160 | + - label: I verified this isn't a configuration issue |
| 161 | + - label: I checked the challenge documentation |
| 162 | + - label: I can reproduce this consistently |
| 163 | + |
| 164 | + - type: textarea |
| 165 | + id: additional-info |
| 166 | + attributes: |
| 167 | + label: Additional Information |
| 168 | + description: | |
| 169 | + Any other context, related issues, or helpful information? |
| 170 | + Screenshots, performance metrics, or research links are welcome. |
| 171 | + validations: |
| 172 | + required: false |
0 commit comments