Skip to content

Commit 5ebe68e

Browse files
MDA2AVjoanhey
andauthored
Fix/data link (#111)
* Add Workerman * Update Dockerfile * Try to fix * Again * Large path :/ * Again * Try again * Change name * Fix dockerfile.. * adjust docker * Fix data link, add Workerman page --------- Co-authored-by: joanhey <joanhey@kumbiaphp.com>
1 parent 39a6d5c commit 5ebe68e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+515
-417
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ The [Probe workflow](.github/workflows/probe.yml) runs on PRs and `workflow_disp
8585

8686
## Results
8787

88-
See the [live comparison](https://MDA2AV.github.io/Http11Probe/probe-results/) across all servers, or browse the [test glossary](https://MDA2AV.github.io/Http11Probe/docs/) for per-test RFC references and explanations.
88+
See the [live comparison](https://www.http-probe.com/probe-results/) across all servers, or browse the [test glossary](https://www.http-probe.com/docs/) for per-test RFC references and explanations.

docs/content/add-a-test.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Pick the suite that matches your test's category and add a `yield return new Tes
1010

1111
| Category | File |
1212
|----------|------|
13-
| Compliance | `src/Http11Probe/TestCases/Suites/ComplianceSuite.cs` |
14-
| Smuggling | `src/Http11Probe/TestCases/Suites/SmugglingSuite.cs` |
15-
| Malformed Input | `src/Http11Probe/TestCases/Suites/MalformedInputSuite.cs` |
16-
| Normalization | `src/Http11Probe/TestCases/Suites/NormalizationSuite.cs` |
17-
| Cookies | `src/Http11Probe/TestCases/Suites/CookieSuite.cs` |
13+
| Compliance | `src/TestCases/Suites/ComplianceSuite.cs` |
14+
| Smuggling | `src/TestCases/Suites/SmugglingSuite.cs` |
15+
| Malformed Input | `src/TestCases/Suites/MalformedInputSuite.cs` |
16+
| Normalization | `src/TestCases/Suites/NormalizationSuite.cs` |
17+
| Cookies | `src/TestCases/Suites/CookieSuite.cs` |
1818

1919
```csharp
2020
yield return new TestCase

docs/content/add-with-ai-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Add with AI Agent
33
---
44

5-
Use an AI coding agent (Claude Code, Cursor, Copilot, etc.) to add a new test or framework to Http11Probe. The repository includes a machine-readable contribution guide at [`AGENTS.md`](https://github.com/MDA2AV/Http11Probe/blob/main/AGENTS.md) designed specifically for LLM consumption.
5+
Use an AI coding agent (Claude Code, Cursor, Copilot, etc.) to add a new test or framework to Http11Probe. The repository includes a machine-readable contribution guide at [`AGENTS.md`](https://github.com/MDA2AV/blob/main/AGENTS.md) designed specifically for LLM consumption.
66

77
## How to use it
88

docs/content/caching/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ These tests probe optional HTTP features that servers may or may not implement.
2222
</div>
2323
<div id="table-caching"><p><em>Loading...</em></p></div>
2424

25-
<script src="/Http11Probe/probe/data.js"></script>
26-
<script src="/Http11Probe/probe/render.js"></script>
25+
<script src="/probe/data.js"></script>
26+
<script src="/probe/render.js"></script>
2727
<script>
2828
(function () {
2929
if (!window.PROBE_DATA) {

docs/content/compliance/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Each test sends a request that violates a specific **MUST** or **MUST NOT** requ
2424
</div>
2525
<div id="table-compliance"><p><em>Loading...</em></p></div>
2626

27-
<script src="/Http11Probe/probe/data.js"></script>
28-
<script src="/Http11Probe/probe/render.js"></script>
27+
<script src="/probe/data.js"></script>
28+
<script src="/probe/render.js"></script>
2929
<script>
3030
(function () {
3131
if (!window.PROBE_DATA) {

docs/content/cookies/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ These tests check how servers and frameworks handle adversarial `Cookie` headers
2222
</div>
2323
<div id="table-cookies"><p><em>Loading...</em></p></div>
2424

25-
<script src="/Http11Probe/probe/data.js"></script>
26-
<script src="/Http11Probe/probe/render.js"></script>
25+
<script src="/probe/data.js"></script>
26+
<script src="/probe/render.js"></script>
2727
<script>
2828
(function () {
2929
if (!window.PROBE_DATA) {

docs/content/docs/smuggling/tecl-conn-close.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ weight: 11
1616

1717
## What it does
1818

19-
This is a **sequence test** — it sends multiple requests on the same TCP connection to verify server behavior across the full exchange. It is a mirror of [CLTE-CONN-CLOSE](/Http11Probe/docs/smuggling/clte-conn-close/) with the header order reversed.
19+
This is a **sequence test** — it sends multiple requests on the same TCP connection to verify server behavior across the full exchange. It is a mirror of [CLTE-CONN-CLOSE](/docs/smuggling/clte-conn-close/) with the header order reversed.
2020

2121
### Step 1: Ambiguous POST (TE+CL)
2222

docs/content/malformed-input/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ A well-implemented server should respond with `400 Bad Request`, `414 URI Too Lo
2424
</div>
2525
<div id="table-malformed"><p><em>Loading...</em></p></div>
2626

27-
<script src="/Http11Probe/probe/data.js"></script>
28-
<script src="/Http11Probe/probe/render.js"></script>
27+
<script src="/probe/data.js"></script>
28+
<script src="/probe/render.js"></script>
2929
<script>
3030
(function () {
3131
if (!window.PROBE_DATA) {

docs/content/normalization/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Some tests are **unscored** (marked with `*`). These cover behaviors like case n
3030
</div>
3131
<div id="table-normalization"><p><em>Loading...</em></p></div>
3232

33-
<script src="/Http11Probe/probe/data.js"></script>
34-
<script src="/Http11Probe/probe/render.js"></script>
33+
<script src="/probe/data.js"></script>
34+
<script src="/probe/render.js"></script>
3535
<script>
3636
(function () {
3737
if (!window.PROBE_DATA) {

docs/content/probe-results/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ These results are from CI runs (`ubuntu-latest`). Click a **server name** to vie
3131

3232
**Unscored** — tests marked with `*` in the detail tables. These cover RFC language that uses "MAY" or permits multiple valid behaviors, so there is no single correct answer to score against. They are still run and displayed for visibility, but do not count toward the pass/fail score.
3333

34-
<script src="/Http11Probe/probe/data.js"></script>
35-
<script src="/Http11Probe/probe/render.js"></script>
34+
<script src="/probe/data.js"></script>
35+
<script src="/probe/render.js"></script>
3636
<script>
3737
(function () {
3838
if (!window.PROBE_DATA) {

0 commit comments

Comments
 (0)