Deleted user
Deleted user
@Kwstubbs This query is working and can be tested. However, for some reason, the select statement does not give the results in a proper form for Codeql to properly generate...
@owen-mc I have made some changes to the query. The query now detects both the vulnerabilities correctly. However, I can see duplicate results for the `playwithdocker` project.
@owen-mc Changes done. MRVA showed be alerts in 3 projects. One of them was a false positive which has been fixed. So, there are two projects with alerts right now...
@Kwstubbs I will take the prefix case up soon. Also, > context of the results mean they are not vulnerabilities I haven't tried writing an exploit for these. But from...
@Kwstubbs I am still waiting for your reply. I have included some changes from the review. As for the prefix case, can you point me to a real world example...
happens to me too on fishtrap
Alright, I preliminarily dismissed that I am running Podman, not Docker. As it turns out, this error is related to Podman. With the following code, I am viewing the [network...
One can get the list of running containers with this: ``` $ curl --unix-socket /run/user/1000/podman/podman.sock http://v1.47/containers/json ``` Port mapping output from Podman: ``` $ curl --silent --unix-socket /run/user/1000/podman/podman.sock http://v1.47/containers/70fdd33d3a13f4fb68dab82431c614d0d46b3e224c703a3ce314acfad675a2bc/json|jq .NetworkSettings.Ports...
Here is the official API documentation: https://docs.docker.com/reference/api/engine/version/v1.47/#tag/Container/operation/ContainerInspect The description of `.NetworkSettings.Ports` is as follows: > PortMap describes the mapping of container ports to host ports, using the container's port-number and...
In `testcontainers-go`, the `HostIp` seems to be ignored: [DockerContainer.MappedPort()](https://github.com/testcontainers/testcontainers-go/blob/f1632b35b3a241818697aa338d54b61eb3550f39/docker.go#L182) The following issue suggests that the intention of Docker is to map an exposed port to the same port on both,...