We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fab99f2 + bcaac8a commit e0b977dCopy full SHA for e0b977d
agent_api/src/main/java/dev/aikido/agent_api/collectors/WebRequestCollector.java
@@ -52,7 +52,7 @@ public static Res report(ContextObject newContext) {
52
// Blocked IP lists (e.g. Geo restrictions)
53
ThreadCacheObject.BlockedResult ipBlocked = threadCache.isIpBlocked(newContext.getRemoteAddress());
54
if (ipBlocked.blocked()) {
55
- String msg = "Your IP address is not allowed to access this resource.";
+ String msg = "Your IP address is not allowed.";
56
msg += " (Your IP: " + newContext.getRemoteAddress() + ")";
57
return new Res(msg, 403);
58
}
0 commit comments