Yes. But unless there's a very good reason, I'd recommend against it. Usually there will be some reason why the system does not have general access to the internet, and in that case it's better to download the RPMs to your own system, then upload them to the server and use rpm to install them from the uploaded files. Or, if this is a common occurrence, set up a proxy repository server and allow the sensitive servers to access that one instead.
However, here's how you'd do it if you do have to.
On the remote system, change the repository information for the official distribution so that it points to port 8080 (or some other unused port). Add a line to /etc/hosts so that the name of the repository server points to 127.0.0.1.
On your own server, start an SSH tunnel. It should do forwarding of port 8080 on the target system to port 80 on the repository server.
ssh -R 443:repository.example.org:80 theserver