Skip to content

Commit 0a2e7fc

Browse files
committed
Prep for 2.2.2 release:
- Support Galah LLM honeypot - Improve ES query code
1 parent 7f27e66 commit 0a2e7fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

AttackMapServer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# web_port = 1234
1818
redis_url = 'redis://map_redis:6379'
1919
web_port = 64299
20-
version = 'Attack Map Server 2.2.1'
20+
version = 'Attack Map Server 2.2.2'
2121

2222
# Color Codes for Attack Map
2323
service_rgb = {

DataServer_v2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
redis_ip = 'map_redis'
1515
redis_instance = None
1616
redis_channel = 'attack-map-production'
17-
version = 'Data Server 2.2.1'
17+
version = 'Data Server 2.2.2'
1818
local_tz = get_localzone()
1919
output_text = os.getenv("TPOT_ATTACKMAP_TEXT")
2020

@@ -207,7 +207,7 @@ def port_to_type(port):
207207
return "EMAIL"
208208
if port == 53:
209209
return "DNS"
210-
if port == 80 or port == 81 or port == 8080:
210+
if port == 80 or port == 81 or port == 8080 or port == 8888:
211211
return "HTTP"
212212
if port == 161:
213213
return "SNMP"

0 commit comments

Comments
 (0)