We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d48590 commit fe83198Copy full SHA for fe83198
1 file changed
libservice/addr.py
@@ -55,7 +55,7 @@ def get_dns_info(hostname) -> list[str]:
55
56
57
def addr_check(addr: str):
58
- if addr.lower().startswith('http://integration/'):
+ if addr.lower().startswith('http://integrations/'):
59
return # The only internal call which is allowed
60
61
try:
@@ -87,6 +87,11 @@ def addr_check(addr: str):
87
addr_check('www.infrasonar.com')
88
addr_check('8.8.4.4')
89
addr_check('2345:0425:2CA1:0000:0000:0567:5673:23b5')
90
+ addr_check('http://integrations/HaloPSA/scope')
91
+ addr_check('https://api.infrasonar.com/alert/ks/close')
92
+ addr_check('https://hooks.slack.com/services/T53FYV161/B083ZHX84D9/s')
93
+ addr_check('https://nomoa.staging.beech.it/api/alert')
94
+
95
for addr in (
96
'10.10.10.1',
97
'192.168.1.1',
0 commit comments