Reputation: 197
I have an web application (Java-html5/js) which runs on our servers that is accessed simply by its URL, no login options or checks. I have been asked to secure it, but I have no access to its source code and I have not managed to contact the developer behind it. It is widely being used on the company, so there is no option to shut it down. The other applications on the network require authentication, so I can use those credentials for this app as well, by redirecting him from a another page. But once he logins, how can I stop him from just accessing the actual unsecured url?
Upvotes: 0
Views: 37
Reputation: 11106
If you're unable to change anything on this server, you may do the following:
You need to go through the proxy to access and you need to authenticate. Way complicated but should work
Upvotes: 1