Files
osmedeus/test/testdata/complex-workflows/http-probing.yaml
T
j3ssie 1403d20a4d feat: add LLM step executor with vision and tool support, event workflow system, and inheritance
- Add LLM executor supporting OpenAI vision, tool calling, embeddings, and structured outputs
- Introduce event emitter/receiver workflows with deduplication and filtering (generate_event functions)
- Add workflow extends/override system enabling inheritance chains and step merge modes
- Update function naming to snake_case across all testdata (fileExists→file_exists, etc.)
- Add comprehensive test fixtures for linter, events, CDN, step dependencies, and extends workflows
2026-01-20 18:23:57 +08:00

33 lines
1.2 KiB
YAML

name: http-probing
kind: module
description: Running HTTP fingerprint technology and response with the supplied inputs
params:
- name: inputFile
default: "{{Target}}"
- name: httpFile
default: "{{Output}}/fingerprint/http-{{Workspace}}.txt"
- name: httpThreads
default: "{{ threads * 10 }}"
- name: httpTimeout
default: "10"
- name: defaultUA
default: "User-Agent: Mozilla/5.0 (compatible; Osmedeus/v4; +https://github.com/j3ssie/osmedeus)"
steps:
- name: httpx-probe
type: bash
commands:
- "echo {{inputFile}} | {{Binaries}}/httpx -nf -timeout {{httpTimeout}} -silent -t {{httpThreads}} >> {{httpFile}}"
- name: httpx-fingerprint
type: bash
pre_condition: "file_exists('{{httpFile}}')"
command: >
cat {{httpFile}} | {{Binaries}}/httpx -H '{{defaultUA}}' -timeout {{httpTimeout}}
-t {{httpThreads}} -no-fallback -no-color -silent -json -title -favicon
-hash sha256 -jarm -tech-detect -status-code -cdn -tls-grab -ztls -vhost
-follow-host-redirects -include-chain -store-response
-store-response-dir {{Output}}/fingerprint/raw-data
>> {{Output}}/fingerprint/{{Workspace}}-http-overview.txt