loading
loading
Utilities
Deprecated. Downloaded Trickest workflow node outputs by id.
overview
get-trickest-output downloaded one workflow node's results to a local folder. Select the run with -wf and -wf_version, the producer with -node, and authenticate with -token or -config.
The library marks it deprecated. It does not track newer export paths, so new graphs should not wire it in. Keep this page for reading older workflows that still call it.
Trickest lists it as a legacy Utilities node. Prefer the maintained Trickest CLI or get-bucket-data for current exports. Add -all only when every matching run must land on disk, not just the latest.
use cases
Download the output files a specific node produced so you can grep, diff, or hand them to a local script. This is the core job the node did before the maintained CLI took it over.
With -all, download the output of every matching run of a node rather than the single most recent one, which helps when comparing results across executions or auditing a pipeline's history.
If an older workflow still wires in get-trickest-output, this page explains what the node did and what each input meant so you can follow the graph.
Find where a workflow fetched outputs by node id, then swap that step for the maintained Trickest CLI or an export node before you re-run.
reference
| Name | Type | Flag | Description |
|---|---|---|---|
| node_id | STRING | -node | Id of the workflow node whose output you want to download. |
| token | STRING | -token | Trickest API token, taken from your dashboard account settings. |
| config-file | FILE | -config | YAML config file that holds the API token, so you do not pass it on the command line. |
| workflow_id | STRING | -wf | Id of the workflow the target node belongs to. |
| workflow_version | STRING | -wf_version | Name of the workflow version to read the node from. |
| all-outputs | BOOLEAN | -all | Download the output of every matching run, not only the most recent. |
Showing key inputs. get-trickest-output exposes 6 inputs in total.
example
# download the most recent output of one workflow node into ./outputget-trickest-output -token $TRICKEST_TOKEN -wf recon-pipeline -node httpx-probeFetching output for workflow "recon-pipeline" (version v1.4)Node httpx-probe: downloading most recent output output/httpx-probe/hosts.txt ok output/httpx-probe/urls.txt okNode httpx-probe: 2 files saved to ./output/httpx-probeDone: outputs written under ./outputguidance
Do not use get-trickest-output in new work. It is deprecated; the Trickest CLI and platform export paths cover the same job. Open this page only to understand legacy workflows that still call it.
Maintained CLI for running workflows and pulling outputs. Prefer this over the deprecated node.
Fetches stored data from a bucket when results already sit outside a node-id download.
faq
related
Spider a URL and return a wordlist for password crackers.
Wordlist and mined-word subdomain permutation.
Import, export, and upsert workflow data against an Airtable base.
Decode Android APK files into smali sources and resources.
Check a file's values against conditions and exit with a matching code.
Authenticated Route53 hosted-zone inventory.
A node id feeds get-trickest-output, which downloads that node's results into a folder. The node is deprecated, so prefer the Trickest CLI for new workflows.
Facts on this page come from the live Trickest tool library.