MISP / misp-sighting-server

MISP sighting server is a fast sighting server to store and look-up sightings on attributes (network indicators, file hashes, system indicators) in a space efficient way.
https://misp.github.io/misp-sighting-server/
15 stars 4 forks source link

External connections #8

Closed thezolin closed 4 months ago

thezolin commented 4 months ago

Hi There,

I have build this app on a new VM but I'm not able to connect from another VM on my network using curl. If I use 127.0.0.1, works fine, but when I use the IP address, the connection is refused.

Is this a normal behavior?

Thanks in advance.

thezolin commented 4 months ago

To solve this issue I just edit bin/sighting-server.py file, edit this line:

from: app.run(debug=True)

To: app.run(host="0.0.0.0", debug=True)