danielpoliakov / lisa

Sandbox for automated Linux malware analysis.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

access from other than localhost

jhuber99 opened this issue · comments

First off, great work !!!
I have installed and have everything running fine on Ubuntu 18.04
Have modified to have the web interface access work for IP of host (not just localhost).
When accessing the web interface via real IP from the host running LiSa everything works.
When accessing the web interface from somewhere else on the network, the web page comes up, the results page is empty, and when trying to submit a file it just spins and never works.

I have modified DB to listen on both loopback and IP of machine, but that doesn't help.

How can use the web interface from something other than than being run on the LiSa box ?

modify docker compose to change the webhost argument to your external IP. This argument is hardcoded inside application and cannot be changed after build. All API calls inside web ui reference to it.

if you want you can build on a headless VM and stand up an ssh tunnel to it.

ssh -L localhost:4242:localhost:4242 root@x.x.x.x