Learn how the file system works in Trickest Editor
amass
: Uses the amass
tool to perform subdomain enumeration.cat-all-in
: Uses the cat-all-in
script to concatenate outputs.httpx
: Uses the httpx
tool to check HTTP status of the discovered subdomains.amass
Tool Executionout/output.txt
, and output type is file
.
cat-all-in
scriptout/output.txt
) is used as input for cat-all-in
.
When connecting amass
to cat-all-in
in the workflow editor, the input path in cat-all-in
is automatically set to in/amass-1/output.txt
. The execution result is that cat-all-in
concatenates the input files and saves the result in out/output.txt
.
cat-all-in
to httpx
cat-all-in
s output is used to as input to httpx
. Input path in httpx
is in/cat-all-in-0/output.txt
. The execution result is that httpx
processes the input file to check HTTP status and outputs the results in out/output.txt
.
in/
directory, performs its task, and outputs the results to the out/
directory. This setup allows you to create complex workflows by chaining nodes together and managing data efficiently.
in
and out
folders is hive/in
and hive/out
respectively.out/
directory with the following structure:
splitter
node splits the input file into three parts, and each part is processed by the connected tool.
folder
output, it will break the splitter chain and aggregate all outputs in the structure mentioned above.out/
directory with the following structure:
file
output will continue the chain of the splitter and distribute the tasks to the next node.