Submitted by 0xRajeev, also found by gpersoon
BaseVaultAdaptor contains logic that is built on top of any vault in order for it to function with Gro protocol. One of such functions is the migrate() function which is onlyOwner and takes an address parameter which allows owner to migrate the vaults entire balance at any time to that address. This is extremely risky because it gives an opportunity for, or at least a perception of, a rug-pull by a disgruntled/malicious owner/dev to the protocol users/community. This could also be dangerous if triggered accidentally, especially by an EOA owner address or maliciously via compromised keys.
See BaseVaultAdaptor.sol #L294-L302 
See similar concern on migrate() functionality in ShibaSwap recently from Yearn devs here and here. Also from here and here.
Recommend evaluating the need for this function and then avoiding/mitigating the risk appropriately.
kristian-gro (Gro) confirmed but disagreed with severity:
ghoul-sol (Judge) commented:
