Getting started
Knowledge hub
- Overview
-
-
- 34 M Wordlist Subdomain Brute Force
- Asn Based Network Scan
- Asset Discovery and Vulnerability Scanning
- Custom Subdomain Brute Force Wordlist From Ip Ranges
- Enumerate Cloud Resources
- Full Subdomain Enumeration
- Get Ips and Cnames
- Getdns
- Github Recon and Scanner
- Hostnames S3 Bucket Finder
- Simple Content Discovery
-
-
- amass
- anew
- apkurlgrep
- assetfinder
- cent
- cero
- cewl
- cloudenum
- crosslinked
- dnsdumpster-dns-lookup
- dnsdumpster-host-search
- dnstwist
- dnsvalidator
- dsieve
- dumpsterdiver
- eyeballer
- ffuf
- find-gh-poc
- findomain
- gau
- generate-yaml-report
- get-asn-prefixes
- get-trickest-output
- gf
- github-subdomains
- goaltdns
- gospider
- gotator
- hakcheckurl
- httprobe
- httpx
- infoga
- ipinfo
- jldc-subdomains
- katana
- mapcidr
- mass-linkfinder
- masscan
- massdns
- meg
- mksub
- naabu
- notify
- nrich
- nuclei
- oneforall
- puredns
- pymeta
- s3scanner
- securitytrails-subdomains
- spiderfoot
- sslyze
- subdomainizer
- subfinder
- tlsx
- uncover
- unfurl
- uro
- vita
- webanalyze-1
- webanalyze
- x8
Tutorials
- Creating a Workflow
- Downloading a Result
- Executing a Workflow
- How Do Machines Work
- Keeping Track of a Run
- Navigating in Workflow Editor
- Overview
- Saving a Workflow and History
- Scheduling a Workflow
- Using Workflows From Library
Concepts
Using Splitters
File-splitter
This is a special kind of node that you can use to loop over a file and execute a series of steps in a workflow on each line, possibly in parallel.
To get started, use your search in Left sidebar to find file-splitter
. Connect your file (or tool) to file-splitter
’s multiple
input. You will get a string
output that you can connect to any other tool. Any tool you connect to file-splitter
(including tools further down the chain) will run once for each line in the input file.
In the example below, 2 parallel subfinder
instances will run:
subfinder -d trickest.io
And
subfinder -d trickest.com

Trickest file-splitter in action
Tips
- Every tool connected to a
file-splitter
using afile
connection (the orange one), will run separate instances for each line. To collect the outputs of every instance in one node, use afolder
connection (the yellow one) like in the example above. You can use a script likerecursively-cat-all
to merge all outputs into one file,zip-to-out
to compress the output folder (while maintaining the directory structure) into a zip archive, or write your own custom script. - Assigning more machines to a workflow will allow the
file-splitter
nodes to run in parallel, resulting in a shorter workflow runtime and faster results. - Currently, there is a 500-line limit on the
file-splitter
input. If you need more iterations, you should consider modifying the workflow structure. It could make more sense to use tools that can process files rather than individual strings. Check out the following section for more details on how to batch-process a file.
Batch-output
You can use file-splitter
long with 2 more nodes to create an even more powerful pattern. This pattern allows you to split a file into smaller files (batches) with a specific number of lines in each batch, then pass these batches to the following nodes concurrently.

Trickest batch-output
Start by dragging the required nodes (generate-line-batches
, file-splitter
, and batch-output
) from the Left sidebar and connect them as shown in the image, and connect them to your desired tool.
The way this works is as follows:
generate-line-batches
calculates line ranges based on the number of lines in the file and the specified batch size.file-splitter
passes the line ranges one by one tobatch-output.
batch-output
extracts the specified line range from the file into a batch and passes each batch concurrently to the following nodes.
Tips
- The default batch size is 100 lines. If you want to change it, edit the
BATCH_SIZE
variable at the top of thegenerate-line-batches
script. - All the file-splitter tips apply here as well. Give them a read!
Get a Video Demo
Fill out and submit this form to receive an in-depth video demo of the Trickest platform.
Talk To Sales
Fill out the form and we'll get back to you about any questions you have on our products, services, pricing, or scheduling a demo.