Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Campaign Classic - Restrict WebApp Access to internal IP without login

Avatar

Level 1

Hi,

 

I have created a WebApp in Campaign Classic which is currently accessible to anyone. I would like to restrict it to internal use only (either manually via IP ranges or using the whitelisted IPs setup via the control panel) but not have users need to log in.

 

Data will be captured on the WebApp and stored in the Campaign Classic DB.

 

Any help would be appreciated.

 

Thanks,

 

Patrick

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Use the following example as a basis to get started, should be enough.

 

 

 

<%
//step 1: get remote ip and store it in webapp variable
ctx.vars.myip = request.getRemoteAddr();
%> 
<html>
  <head></head>
  <body>
    <p>This is a test</p>
    <script type="text/javascript">
      // 
      < ![CDATA[window.addEventListener('load', function() {
            //step 2: assign ip to local variable or sessionstorage for validation
            var ip = document.controller.getValue('/ctx/vars/myip'); 
            sessionStorage.setItem("myip", ip); // stores ip to browser sessionStorage
            alert(ip);
          })
          // ]]>
    </script>
  </body>
</html>

 

 

 

Below you can see we have stored the ip in ctx.vars.myip as well as sessionStorage so that you can do whatever validation you may require.

 

David__Garcia_0-1628827664039.png

 

You may also add `ctx.vars.myip = request.getRemoteAddr();` inside a js activity in your webapp (must be first activity) then add a test activity to check for ranges such as if myip begins with xxx.xx. range then send them to another page or whatever.

 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Use the following example as a basis to get started, should be enough.

 

 

 

<%
//step 1: get remote ip and store it in webapp variable
ctx.vars.myip = request.getRemoteAddr();
%> 
<html>
  <head></head>
  <body>
    <p>This is a test</p>
    <script type="text/javascript">
      // 
      < ![CDATA[window.addEventListener('load', function() {
            //step 2: assign ip to local variable or sessionstorage for validation
            var ip = document.controller.getValue('/ctx/vars/myip'); 
            sessionStorage.setItem("myip", ip); // stores ip to browser sessionStorage
            alert(ip);
          })
          // ]]>
    </script>
  </body>
</html>

 

 

 

Below you can see we have stored the ip in ctx.vars.myip as well as sessionStorage so that you can do whatever validation you may require.

 

David__Garcia_0-1628827664039.png

 

You may also add `ctx.vars.myip = request.getRemoteAddr();` inside a js activity in your webapp (must be first activity) then add a test activity to check for ranges such as if myip begins with xxx.xx. range then send them to another page or whatever.