Skip to content

Commit

Permalink
Merge pull request #348 from DigvijayBhosale1729/docs
Browse files Browse the repository at this point in the history
Docs
  • Loading branch information
adeyosemanputra authored Feb 9, 2022
2 parents 4dc63d0 + 28714d7 commit c0ad8db
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
23 changes: 16 additions & 7 deletions doc/en-US/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,11 @@ Default configuration:
"to_email": "XXXX",
"password": "XXXX"
},
"malware_analysis": {
"mode": "XXXX",
"api_key": "XXXX",
"filename": "XXXX"
},
"firewall": {
"interface": "",
"inbound_IPRule": {
Expand Down Expand Up @@ -366,13 +371,16 @@ Default configuration:
"severity_factor": 0.9,
"interface": "XXXX"
},

"waf": {
"listen_ip":"127.0.0.1",
"listen_port":8865,
"mode":0,
"backend_server_config":"{'localhost':'localhost:3000'}"
},
"listen_ip":"127.0.0.1",
"listen_port":8865,
"mode":0,
"backend_server_config":{}




},
"server-log": {
"log-type": "",
"log-file": "",
Expand Down Expand Up @@ -406,6 +414,7 @@ Default configuration:
"social_eng": {
"email": "XXXX"
},

"history_logger": false,
"clamav": false,
"yara": false,
Expand Down Expand Up @@ -765,7 +774,7 @@ The following argument options are currently available:
--server-mode Start SecureTea in server mode
--system-mode Start SecureTea in system mode
--iot-mode Start SecureTea in IoT mode
--malware_analysis Start SecureTea in MalwareAnalysis mode
--malware_analysis Start SecureTea in MalwareAnalysis mode
```

### Example usages
Expand Down
10 changes: 5 additions & 5 deletions securetea.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
"access_token": "XXXX",
"access_token_secret": "XXXX"
},
"malware_analysis": {
"mode": "XXXX",
"api_key": "XXXX",
"filename": "XXXX"
},
"telegram": {
"token": "XXXX",
"user_id": "XXXX"
Expand Down Expand Up @@ -40,6 +35,11 @@
"to_email": "XXXX",
"password": "XXXX"
},
"malware_analysis": {
"mode": "XXXX",
"api_key": "XXXX",
"filename": "XXXX"
},
"firewall": {
"interface": "",
"inbound_IPRule": {
Expand Down
14 changes: 7 additions & 7 deletions securetea/args/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ def get_config():
"access_token": "XXXX",
"access_token_secret": "XXXX"
},
"malware_analysis": {
"mode": "XXXX",
"filename": "XXXX",
"stegscan": "XXXX",
"passwd": "XXXX",
"virustotal_api_key": "XXXX"
},
"telegram": {
"token": "XXXX",
"user_id": "XXXX"
Expand Down Expand Up @@ -46,6 +39,13 @@ def get_config():
"to_email": "XXXX",
"password": "XXXX"
},
"malware_analysis": {
"mode": "XXXX",
"filename": "XXXX",
"stegscan": "XXXX",
"passwd": "XXXX",
"virustotal_api_key": "XXXX"
},
"firewall": {
"interface": "",
"inbound_IPRule": {
Expand Down

0 comments on commit c0ad8db

Please sign in to comment.