Jump to content
Pulseway 9.14 🔥

spinto

Members
  • Joined

  • Last visited

  1.    Jamie Taylor reacted to a post in a topic: log4j Scanner
  2. spinto posted a post in a topic in General
    Is there a powershell script that can scan local computers for the log4j vulnerability? If not, does anyone have any recommendations on how to do this via the Pulseway agents?
  3. spinto posted a post in a topic in REST API
    I'm using the API to get a list of IP addresses in order to whitelist those IP's in the Linux iptables firewall rules. This process works fine on an unrestricted server. The server I'm working with is very restricted, so it isn't able to communicate with the api. For example, our pulseway address is http://company.pulseway.com which translates to 12.34.56.78 I added the following into iptables.save: #Pulseway -A INPUT -i eth0 -s 12.34.56.78 -j ACCEPT -A OUTPUT -o eth0 -d 12.34.56.78 -j ACCEPT I test outbound communications by running the following: telnet 12.34.56.78 443 and it connects so I'm assuming it's the inbound communication. My assumption is this isn't working because the IP returning the data is different than the IP that the data is sent to. Let me know if I can get the list of IP's so I can whitelist in our iptables. Thanks.