I'm not clear what you want to do, exactly, but:
If you have a vma (backup) then you can restore the backup as a new VM, running in parallel with the current VM.
In Proxmox, go to the Storage where the backup is held, and you'll see you can restore it as a new VM with a new IP. Be sure to select the tick box option that generates unique identifiers and MAC addresses etc otherwise you'll have network problems with both the old and the new VM.
I suggest disconnecting the network on the restored VM before you spin it up. Then start it, login as root via the console, edit the IP address so that it does not conflict with an existing IP, shutdown, reconnect the network, then spin it up again. You now have a clone of your original VM with a new IP.
NOTE: If you have licensed software running on the VM that calls home, you may want to firewall the new VM to prevent it connecting to anything but your own IP while you collect the files you want from it.
Another option you can use is to extract the raw disk image form the backup, and mount it on the node (or another VM if you don't have conflicting disk UUIDs of LV/VG names).
Mounting on the node would be something like this: (from my notes! Be careful!!!!!!!! Use at your own risk):
lzo -x backupname [decompresses the lzo compressed backup]
vma extract filename targetdir [extracts the disk image from the now uncompressed backup]
modprobe nbd max_part=63 [creates network block device that you will use to mount the image]
qemu-nbd -c /dev/nbd0 image.img [umm...qemu magic of some sort to allow the image to be mountable]
mount /dev/nbd0p1 /mnt/image [mount the image. create the directory if you get errors when doing so]
NOTE: nbd0p1 is device 0 partition 1. If your backup contains multiple partitions, it may be that you want a different one to "1". Thus you might need to use p2 or maybe p0 if it exists (not sure to be honest).
(If I remember correctly, "filename" is the name of the uncompressed image from lzo command. "Targetdir" is where you want the extracted disk image to be stored. "image.img" is the name of the resulting disk image you get from the vma extract command).
Work with the mounted image on host, copy your files. Then unmount and remove extracted uncompressed backups and images
umount /mnt/image
killall qemu-nbd
rm image.img
rm extracted_vma_file_name.vma
Be very careful with all this. You can do damage if any of my notes are not correct or my explanation or understanding is wrong.