These options are accessible only via users with respective administration privileges. (See User management)
Screenshots
Administration dashboard showing statistics and all its functionalities (sidebar)
This is the multi-page printable view of this section. Click here to print.
These options are accessible only via users with respective administration privileges. (See User management)
Administration dashboard showing statistics and all its functionalities (sidebar)
Organizations can be added with following parameters defining them: name, description, address.
Define roles with certain permissions.
Manage users and assign them a role, permissions and an organization.
Add new Organization
Edit basic user role
Add new User
To get started there is list of RSS sources we worked with: Initial setup_
Word lists can have the following functionalities (displayed under “usage”):
To activate include or exclude lists, they need to be added to the default source group.
It has to be mentioned, that this include/exclude filtering happens during the news item collection. Therefore, only filtered news items will be stored in the database and displayed in “Assess”.
After the collection, it is possible to adapt news items.
Therefore, following bots are currently available:
CRUD: Bots can be created, updated and deleted.
Index: Decides the order of bots
RUN_AFTER_COLLECTOR: Indicates if bot is active after collection
After all settings are made, sources can be collected. Either collect all sources by clicking on the “collect sources” button, or collect single sources.
Sources for gathering data are set in the OSINTSources. It is possible to:
Select Import and choose desired JSON file for import. (See Initial Setup)
Select Export to download a JSON file containing your established collectors.
Select Collect Sources to aggregate information from all established OSINT sources.
When creating new Reports, one of the created report types have to be selected (see Analyze).
Desired attributes need to be created first. Then they can be managed by the admin user. Besides name, description and default value also type, validator and validator parameter can be set.
Add new Attribute
Report Types - Create new Report Type
Report Types - Add new Attribute Group
Report Types - Select new Attribute from list
The administration view now allows users to use the Preview feature to see the result of the configuration without the items being processed further for the Assess view. This feature is available for RSS, Simple Web and RT collector.
RSS Collector enables Taranis AI to collect data from a user-defined RSS feed (See RSS feeds details).
json
] (can be used to add additional headers, not all headers work as expected)Summary
field of RSS feed)The RSS Collector supports the use of XPath for locating elements. (See Simple Web Collector Advanced configuration)
{ "AUTHORIZATION": "Bearer Token1234", "X-API-KEY": "12345", "Cookie": "firstcookie=1234; second-cookie=4321", }
Simple Web Collector enables Taranis AI to collect data using web URLs and XPaths.
The simplest way to use this collector is to use the WEB_URL field only. By using only the WEB_URL field, Taranis-AI autonomously determines the content to be collected. Even though it is mostly reliable, sometimes it is not perfect.
When content cannot be reliably collected using the Basic configuration, adding the attribute XPATH (See tutorial how to find it), can be useful. It is crucial to specify the XPath of the precise element containing the desired data.
To set up an RSS Collector for collecting posts from a Mastodon hashtag or user, follow these steps:
Finding the Mastodon RSS Feed URL:
.rss
to the hashtag URL. For example, to collect posts tagged with #cybersecurity:
https://mastodon.social/tags/cybersecurity.rss
.rss
to the user’s profile URL. Example:
https://mastodon.social/@username.rss
Creating a New RSS Source with Required Parameters: When creating the new RSS source, configure it with the following parameters. Here’s an example of how to fill out the fields:
https://mastodon.social/tags/cybersecurity.rss
)."summary"
to specify the main content location within each RSS entry."false"
since we’re not splitting entries into multiple items.RT Collector enables Taranis AI to collect data from a user-defined Request Tracker instance.
Required fields:
localhost
).Optional fields:
Digest Splitting is a feature that allows the user to split all available URLs in the located element into individual News Items. The Digest Splitting Limit is the maximum number of URLs that will be split into individual News Items. If the limit is reached, the remaining URLs are dropped. The Digest Splitting Limit is set to 30 News Items by default but can be adjusted by the administrator. Useful in case of timeouts during collection of too many News Items.
Collectors will fail if the web page content is only available with JavaScript. In that case it is possible to turn on the Browser Mode. All requests will have JavaScript enabled, therefore, it is slower and can use more resources.
The Email Publisher allows sending out Products.
Note: The EMAIL_SENDER and EMAIL_RECIPIENT parameters are used to construct the message envelope used by the transport agents. Message headers are not modified by these parameters in any way.
Required fields are marked with a *.
Once the publisher is created, it becomes available in the “Publish” section of each product. To send out a product via email, the product must be “Rendered” first. To render a product, use the option available in the product’s view.
All crucial fields are editable, with the most important being Type, Template, and Report Types.
While there are several prebuilt product types available, users also have the option to create their own product types using custom templates.
It can be beneficial to create custom Product Types to meet desired results with the publishers.
This is an example to render arbitrary values and loop over attributes.
src/core/core/static/presenter_templates
,TITLE: {{ data.report_items[0].get('title') | default('No title provided', true) }}<br>
DATE CREATED: {{ data.report_items[0].get('created') | default('Not available', true) }}<br>
LAST UPDATED: {{ data.report_items[0].get('last_updated') | default('Not available', true) }}<br>
{% for name, attribute in data.report_items[0].get('attributes').items() %}
{{ name }}: {{ attribute }}<br>
{% endfor %}
If one is interested in creating own templates, it is a good to start to render the object {{ data }}
first, to understand how to parse the object properly.
It is also possible to copy src/core/core/static/presenter_templates/<new-custom-template.txt>
to a dynamic folder src/core/taranis_data/presenter_templates
so the restart is not necessary.
If needed, templates can be utilized for more complex renderings by leveraging custom attributes.
Currently, this functionality is demonstrated in the text_template.txt
file, where the attribute omission
of type “Omit Keys” allows for the exclusion of unnecessary attributes from publication. To employ this feature, the administrator simply needs to add this attribute to the relevant report type. Then, within a specific report (Analyze View), they can specify the attributes to omit by listing them as comma-separated strings.
It is essential to ensure that the “Name” used for the report type attribute matches exactly with the key used in the template.
The admin user can access the Taranis API through Swagger UI. Swagger UI displays OpenAPI specifications as an interactive API documentation.
see: Swagger UI
Taranis instance is alive