Guest User

Untitled

a guest
Oct 19th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <cfcomponent>
  2.  
  3. <cffunction name="onApplicationStart" returnType="boolean" output="false">
  4.  
  5. <cfreturn true />
  6.  
  7. </cffunction>
  8.  
  9. <cffunction name="onRequestStart" returnType="boolean" output="true">
  10. <cfargument name="targetPage" type="string" required="true" />
  11.  
  12. <cfscript>
  13. var request_network = listDeleteAt( cgi.remote_addr, 4, "." );
  14. var allowed_networks = "127.0.0,192.168.0,10.0.0";
  15.  
  16. if( listFind( allowed_networks, request_network ) ) {
  17.  
  18. return true;
  19. }
  20. else {
  21.  
  22. abort();
  23. }
  24. </cfscript>
  25.  
  26. </cffunction>
  27.  
  28. </cfcomponent>
Add Comment
Please, Sign In to add comment