osmedeus-base
osmedeus-base copied to clipboard
Duplicate processes in web UI's Osmedeus Process page.
Osmedeus version: 4.0.1
The process table in the "Running process" page display only the last process repeatedly

This is the output of the request to /api/osmp/ps API:
{
"status": 200,
"data": [
{
"pid": 4608,
"command": "osmedeus server"
},
{
"pid": 4643,
"command": "osmedeus scan -f general -t example.com"
}
],
"type": "processes",
"total": 2,
"message": "List all osm process"
}
One more command:

The data from the server:
{
"status": 200,
"data": [
{
"pid": 4608,
"command": "osmedeus server"
},
{
"pid": 4643,
"command": "osmedeus scan -f general -t example.com"
},
{
"pid": 4839,
"command": "osmedeus scan -f general -t www.vulnweb.com"
}
],
"type": "processes",
"total": 3,
"message": "List all osm process"
}
The javascript source for the Web UI is compiled so there's no easy way to contribute to the project.
Thank you for reporting I will look into it. I just put the source code of web UI at https://github.com/osmedeus/osm-ui if you want to take a look.
Thanks for replying. I'll check the repo out to see how I can help.