@hal_pomeranz@infosec.exchange
Post #3844071
2026-07-15 17:37 UTC
Replies (1)
-
@hal_pomeranz@infosec.exchange 2026-07-15 22:37
OK, I think I gained some useful knowledge today and I don't want the rest of you to waste as much time as I did on this... Suppose you had a bunch of weblogs fed into OpenSearch. You might have a field like "uri_path" with a value like "/myapp/auth/index.aspx". When OpenSearch creates a search index for that field, the values get broken into individual "words" (strings of sequential alphanumeric characters)-- "myapp", "auth", "index", "aspx". Any regex search you do only matches on the "words". You can't do a full-text match against the entire path with punctuation. So you won't get any results if you "/.*\/auth\/index\.aspx/".