Bash
Scripts are used to automate and extend the functionality of the workflow. Scripts can be written in [Python] or [Bash] and can be used to perform a wide range of tasks, from simple to complex.
Scripts in Trickest platform are used for plethora of functionalities. They are used to:
- Parse different tools outputs to make it compatible with the other tools input
- Extract relevant information from the tool to make it more clear what is important
- Create custom reports, images or files from the other tools outputs
- And much more.
In this section, we are going to cover how we can parse ffuf
output and extract relevant information from it which we covered in Tools section.
Tools Output
In the previous section, we’ve created ffuf
node with certain inputs. Let’s execute it locally first, to check how it’s output looks like.
This JSON output is very big and we don’t need all of this data. We are interested in what URLs are found with additional data around them. These are url
, status
, content-type
, length
, words
, redirectlocation
.
Let’s create a simple bash
script which will extract this data, and learn how to use this script in Trickest Platform to parse it whenever we want to brute-force different web server.
Let’s execute and see the output
Using Scripts in Trickest Platform
Now, let’s take a look how Trickest is handling scripts nodes. If you remember from Tools section, they have their inputs parameters, configurations and file and folder outputs. Scripts are slightly different.
Think about Scripts as a little virtual machines that are spinning up and executing the code you provided. They have their own inputs and outputs, and they can be connected to the other nodes as well.
In the Left Sidebar, we can search for custom-script
and drag & drop it to the canvas.
Python Script Node example
file
output from bash scripts outputs and connect it to other nodes, that file must be in out/output.txt
pathThe difference between the tools and scripts is that scripts don’t have input parameters. They have file
and folder
inputs and file
and folder
outputs.
Using Scripts to parse ffuf
output
Now, let’s get back to our ffuf
workflow and add custom bash script. We are also going to connect ffuf
output to the custom-script
input.
Connecting Custom Script to `ffuf`
Now, let’s copy the script we created above and paste it in the custom-script
node.
Pasting the script
Now, the paths in the script we’ve created are not right. In Trickest, paths inside of scripts nodes are generated based on the nodes that are connected to them.
They go in a pattern similar to this
-
For
File
inputs -
For
Folder
inputs
Generated Paths
If we take a look at our particular example, the generated input from ffuf
is
in/ffuf-1/output.txt
These paths are generated automatically based on the node-id
every node has.
In our example ffuf
node has ffuf-1
as node-id
,
and python-script
node has python-script-1
as node-id
.
Changing the script
In our example we need to change path we used to test out the script, to the generated path in Trickest.
Now, everything should be ready for execution.