osmedeus-base icon indicating copy to clipboard operation
osmedeus-base copied to clipboard

Duplicate processes in web UI's Osmedeus Process page.

Open catmandx opened this issue 3 years ago • 2 comments

Osmedeus version: 4.0.1

The process table in the "Running process" page display only the last process repeatedly image

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: image

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.

catmandx avatar Jan 30 '22 13:01 catmandx

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.

j3ssie avatar Mar 02 '22 09:03 j3ssie

Thanks for replying. I'll check the repo out to see how I can help.

catmandx avatar Mar 02 '22 09:03 catmandx