Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Co-authored-by: Md Azam <mdazam@ca.ibm.com
  • Loading branch information
delliott90 authored and AmitHaim1 committed Sep 26, 2022
1 parent a0038cd commit bfcb2f2
Show file tree
Hide file tree
Showing 12 changed files with 2,222 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ coverage.xml
venv/
ENV/
virtualenv*/
labenv/
labenv*/

# mkdocs documentation
/site
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,12 @@ We are thrilled you are considering contributing! We welcome all contributors.

Please read our [guidelines for contributing](https://github.com/opencybersecurityalliance/stix-shifter/blob/develop/CONTRIBUTING.md).

## Guide for creating new connectors
## Developer Guides

If you want to create a new connector for STIX-shifter, see the [developer guide](https://github.com/opencybersecurityalliance/stix-shifter/blob/develop/adapter-guide/develop-stix-adapter.md)

There are also a few [Jupyter Notebook labs](https://github.com/opencybersecurityalliance/stix-shifter/blob/develop/lab) that cover the CLI commands and dev process.

## Licensing

Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
3 changes: 3 additions & 0 deletions deployment/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Connector Deployment Scripts

This folder contains scripts that deploy connectors into specific security products that use STIX-shifter.
863 changes: 863 additions & 0 deletions lab/STIX-Shifter Connector Tutorial.ipynb

Large diffs are not rendered by default.

1,067 changes: 1,067 additions & 0 deletions lab/STIX-shifter CLI Quick Lab.ipynb

Large diffs are not rendered by default.

238 changes: 238 additions & 0 deletions lab/connector_coding_lab.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,238 @@
# Connector Coding Lab

This is a hands on lab to start implementing a connector module in STIX-shifter from scratch. The main purpose of this lab is to give developers experience developing a functional connector. You will basically recreate an already existing connector. We will mostly copy and paste required code blocks and functions. We chose the MySQL connector since its coding complexity is simpler than most of the existing connectors. 


## Prerequisites

* Github account
* Basic knowledge of Git such as forking, committing, branching, pulling, and merging
* Working knowledge of the Python programming language. This lab will use Python 3.6
* An IDE to write Python code, such as VS Code.

## Steps

### 1. Open stix-shifter folder in VS Code IDE
### 2. Open a terminal in VS code
### 3. Make sure you are in `stix-shifter/` parent directory
### 4. Create a python virtual environment

```
virtualenv -p python3 virtualenv && source virtualenv/bin/activate
python3 -m pip install --upgrade pip
INSTALL_REQUIREMENTS_ONLY=1 python3 setup.py install
```

### 5. Make a copy of the `stix_shifter_modules/synchronous_template` module
### 6. Change the name to `lab_connector`

* You should have a connector module skeleton for the new connector named lab_connector
### 7. Implement `EntryPoint()` class in `stix_shifter_modules/lab_connector/entry_point.py`

```
from stix_shifter_utils.utils.base_entry_point import BaseEntryPoint
class EntryPoint(BaseEntryPoint):
def __init__(self, connection={}, configuration={}, options={}):
super().__init__(connection, configuration, options)
self.set_async(False)
if connection:
self.setup_transmission_basic(connection, configuration)
self.setup_translation_simple(dialect_default='default')
```

### 8. Implement input configuration of the connector in `stix_shifter_modules/lab_connector/configuration`

* Implement connection and configuration of the connector in config.json file. you can copy the content from https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/configuration/config.json for this lab

* You can also implement the language definition of the input configuration for the UI label and description in lang_en.json(for English) file. you can copy the content from https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/configuration/lang_en.json for this lab.

### 9. Implement stix to query translation

* Go to `stix_shifter_modules/lab_connector/stix_translation`

* Update `stix_shifter_modules/lab_connector/stix_translation/json/from_stix_map.json` file with the content of https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/stix_translation/json/from_stix_map.json

* If data source API offers one schema type the dialect prefix can be removed

* Update `stix_shifter_modules/lab_connector/stix_translation/json/operators.json` with the content of https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/stix_translation/json/operators.json

* QueryTranslator() class can be left as it `stix_shifter_modules/mysql/stix_translation/query_translator.py`
* Update `stix_shifter_modules/lab_connector/stix_translation/query_constructor.py` with the content of https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/stix_translation/query_constructor.py

* You can now run the basic query translation CLI command from your workspace to tests

### 10. Implement stix transmission module.

* You need to implement four functionalities of the transmission module which are `ping`, `query`, `status` and `results`
* First create a class called `APIClient()` in `stix_shifter_modules/lab_connector/stix_transmission/api_client.py`. This is where you initialize the connection and configurations needed for the data source API requests. This class also includes the utility functions needed for the major functionalities of the connector. Add the following code to the top of the API client:

```
import mysql.connector
from mysql.connector import errorcode
class APIClient():
def __init__(self, connection, configuration):
auth = configuration.get('auth')
self.user = auth.get('username')
self.password = auth.get('password')
self.timeout = connection['options'].get('timeout')
self.result_limit = connection['options'].get('result_limit')
self.host = connection.get("host")
self.database = connection.get("database")
self.table = connection['options'].get("table")
self.port = connection.get("port")
self.auth_plugin = 'mysql_native_password'
```

* Create a file called `connector.py` if it doesn't yet exist and add the following code to the top of the file:

```
import datetime
import json
from stix_shifter_utils.modules.base.stix_transmission.base_sync_connector import BaseSyncConnector
from .api_client import APIClient
from stix_shifter_utils.utils.error_response import ErrorResponder
from stix_shifter_utils.utils import logger
class Connector(BaseSyncConnector):
def __init__(self, connection, configuration):
self.api_client = APIClient(connection, configuration)
self.logger = logger.set_logger(__name__)
self.connector = __name__.split('.')[1]
```
* Now we can add the required transmission functions

### Ping

* Define and implement a function named `ping_connection(self)` inside `stix_shifter_modules/lab_connector/stix_transmission/connector.py` 

```
def ping_connection(self):
response = self.api_client.ping_data_source()
response_code = response.get('code')
response_txt = response.get('message')
return_obj = dict()
return_obj['success'] = False
if len(response) > 0 and response_code == 200:
return_obj['success'] = True
else:
ErrorResponder.fill_error(return_obj, response, ['message'], error=response_txt, connector=self.connector)
return return_obj
```

* Define and implement the `ping_data_source()` function inside `APIClient()`:

```
def ping_data_source(self):
# Pings the data source
response = {"code": 200, "message": "All Good!"}
try:
cnx = mysql.connector.connect(user=self.user, password=self.password,
host=self.host, database=self.database,
port=self.port, auth_plugin=self.auth_plugin)
except mysql.connector.Error as err:
response["code"] = err.errno
if err.errno == errorcode.ER_ACCESS_DENIED_ERROR:
response["message"] = "Something is wrong with your user name or password"
elif err.errno == errorcode.ER_BAD_DB_ERROR:
response["message"] = "Database does not exist"
else:
response["message"] = err
else:
cnx.close()
return response
```

### Query

* As a synchronous connector, it doesn't require any API request to start or create the query. Therefore no need to define and implement the functions of the query function. `self.setup_transmission_basic(connection, configuration)` statement inside entry point class `EntryPoint()` takes care of that automatically.

### Status

* Same as query, a synchronous connector doesn't return any status from the data source hence no action is needed.

### Results

* Define and implement a function named `create_results_connection(self, query, offset, length)` inside `stix_shifter_modules/lab_connector/stix_transmission/connector.py`

```
def create_results_connection(self, query, offset, length):
return_obj = dict()
response = self.api_client.run_search(query, start=offset, rows=length)
response_code = response.get('code')
response_txt = response.get('message')
if response_code == 200:
return_obj['success'] = True
return_obj['data'] = response.get('result')
else:
ErrorResponder.fill_error(return_obj, response, ['message'], error=response_txt, connector=self.connector)
return return_obj
```

* Define and implement a function named `run_search(self, query, offset, length)`  in `APIClient()` class.

* Copy the code block https://github.com/opencybersecurityalliance/stix-shifter/blob/8ae2cf2a0196531b8e0daf8f5ff141b4251ec201/stix_shifter_modules/mysql/stix_transmission/api_client.py#L40

* You can now run all the transmission CLI commands from your terminal:

#### Ping CLI Command

```
python main.py transmit mysql '{"host": "localhost", "database":"demo_db", "options": {"table":"demo_table"}}' '{"auth": {"username":"root", "password":"Giv3@m@n@fish"}}' ping
```

#### Query CLI Command

```
python main.py transmit mysql '{"host": "localhost", "database":"demo_db", "options": {"table":"demo_table"}}' '{"auth": {"username":"root", "password":"Giv3@m@n@fish"}}' query "SELECT * FROM demo_table WHERE source_ipaddr = '10.0.0.9'"
```

#### Status CLI Command

```
python main.py transmit mysql '{"host": "localhost", "database":"demo_db", "options": {"table":"demo_table"}}' '{"auth": {"username":"root", "password":"Giv3@m@n@fish"}}' status "SELECT * FROM demo_table WHERE source_ipaddr = '10.0.0.9'"
```

#### Results CLI Command

```
python main.py transmit mysql '{"host": "localhost", "database":"demo_db", "options": {"table":"demo_table"}}' '{"auth": {"username":"root", "password":"Giv3@m@n@fish"}}' results "SELECT * FROM demo_table WHERE source_ipaddr = '10.0.0.9'" 0 100
```

## Results Translation

### 11. Implement data source results to STIX translation

* Make sure the data source returns the results in JSON format
* Implement the `ResultsTranslator(JSONToStix)` class in `results_translator.py`

```
from stix_shifter_utils.stix_translation.src.json_to_stix.json_to_stix import JSONToStix
class ResultsTranslator(JSONToStix):
pass
```
* The parent utility class JSONToStix automatically translates the results into STIX.

### 12. Implement the `ErrorMapper()` class in `stix_shifter_modules/lab_connector/stix_transmission/error_mapper.py`

* This is where you map any API specific error code messages for the return object. You can use the same error mapper content that is used in the MySQL connector: https://raw.githubusercontent.com/opencybersecurityalliance/stix-shifter/develop/stix_shifter_modules/mysql/stix_transmission/error_mapper.py

### 13. Add any data source specific dependency to the `stix_shifter_modules/lab_connector/requirements.txt`
* In this case add `mysql-connector-python==8.0.25`

### 14. The entire end-to-end query flow can now be tested with the CLI `execute` command:

```
python main.py execute mysql mysql '{"type": "identity","id": "identity--f431f809-377b-45e0-aa1c-6a4751cae5ff","name": "mysql","identity_class": "system"}' '{"host": "localhost", "database":"demo_db", "options": {"table":"demo_table", "stix_2.1": true}}' '{"auth": {"username":"root", "password":"Giv3@m@n@fish"}}' "[ipv4-addr:value = '10.0.0.9']"
```
14 changes: 14 additions & 0 deletions lab/data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
source_ipaddr,dest_ipaddr,url,filename,sha256hash,md5hash,file_path,username,source_port,dest_port,protocol,entry_time,system_name,severity,magnitude
varchar(100),varchar(100),varchar(100),varchar(100),varchar(100),varchar(100),varchar(100),varchar(100),int,int,varchar(100),double,varchar(100),int,int
192.168.16.4,213.213.142.5,www.example.org,photos.exe,2bc21ad4860422599ef29e6d23d354625a67a53d1ff8e09f7ce392ce7e779dc4,276134d96a0648c24505b455150cb41a,C:/PHOTOS,97bd1036example.org,143,8080,udp,1617123877,demo_system,8,5
10.0.0.9,192.168.16.4,www.example.com,calendar.doc,a2c0dd1eeed012132907c1cc8dcca1f77a12c537d7d875f3627c440502f295c2,60f7ec355f60c768bc684ccf718d48d7,user/preferences/lib,root,143,8080,udp,1617123877,demo_system,2,1
172.16.25.9,10.0.0.9,www.example.net,photos.exe,b0795d1f264efa26bf464612a95bba710c10d3de594d888b6282c48f15690459,276134d96a0648c24505b455150cb41a,usr/bin,root,143,8080,udp,1617123877,demo_system,7,4
10.0.0.9,10.0.0.9,www.example.com,calendar.doc,d502e7541b1a79ba77a010634beb6eedd178f1110535bc73f96a50c891eed1ef,60f7ec355f60c768bc684ccf718d48d7,user/preferences/lib,1eeb5a46example.org,143,8080,udp,1617123877,demo_system,2,1
192.168.16.4,10.0.0.9,www.example.com,appointment.xml,fe095939f684e9c3d3c5d9aa15436e1b1de9c22cee23afa8332e226560ea2b2f,9affc3c0175130f9ac80b086d7949291,C:/PHOTOS,root,143,8080,udp,1617123877,demo_system,6,5
172.16.25.9,172.16.25.9,www.example.org,photos.exe,3be262c0c7a91818a3795a814cda5efaae0a759f77b8050921b5aea099093357,276134d96a0648c24505b455150cb41a,user/preferences/lib,15e6d6f7example.org,143,8080,udp,1617123877,demo_system,3,2
10.0.0.9,213.213.142.5,www.example.net,calendar.doc,a8db77b872512df0fd15943a79efb4e16c745cd8122efaf948b3c56d463e4b70,60f7ec355f60c768bc684ccf718d48d7,user/preferences/lib,user,143,8080,udp,1617123877,demo_system,2,1
192.168.16.4,10.0.0.9,www.example.com,calendar.doc,63fcbaa237eb8d9a3f32ecf850831fd283512b30ece26ee8bc43ec013edf2210,60f7ec355f60c768bc684ccf718d48d7,C:/PHOTOS,admin,143,8080,udp,1617123877,demo_system,6,5
172.16.25.9,192.168.16.4,www.example.net,appointment.xml,e2df00798b677eaba24393c340913de955d16b0920af6e5a5f1d3a1b4f8669e5,9affc3c0175130f9ac80b086d7949291,C:/PHOTOS,user,143,8080,tcp,1617123877,demo_system,1,1
10.0.0.9,192.168.16.4,www.example.net,photos.exe,efe833b6172b3eb4be1e73dfe56f589f7b1ad86493b8a1b3ec5f018fb037d7c6,276134d96a0648c24505b455150cb41a,C:/PHOTOS,root,143,8080,udp,1617123877,demo_system,4,3
172.16.25.9,10.0.0.9,www.example.com,photos.exe,3be262c0c7a91818a3795a814cda5efaae0a759f77b8050921b5aea099093357,276134d96a0648c24505b455150cb41a,user/preferences/lib,admin,143,8080,tcp,1617123877,demo_system,6,4
10.0.0.9,10.0.0.9,www.example.org,spreadsheet.doc,b0795d1f264efa26bf464612a95bba710c10d3de594d888b6282c48f15690459,0a556fbb7d3c184fad0a625afccd2b62,C:/PHOTOS,root,143,8080,udp,1617123877,demo_system,2,1
Binary file added lab/set_virtual_env.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bfcb2f2

Please sign in to comment.