Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6954883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:39:54+00:00 2026-05-27T14:39:54+00:00

I want to block access to a url from everything except for iis usr

  • 0

I want to block access to a url from everything except for iis usr that requests the image.

So I have: www.myurl.com/somedirectory/myfile.ashx

I want only my requests from code behind to be able to access this file not users/bots/non-clients who can manually visit the file by going to the url.

Need to take into account that servers are load-balanced I am unsure if this will cause an issue.

How would I go about doing this.

Requested serverside:

HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(imageUrl);
httpRequest.Method = "GET";
httpRequest.UserAgent = "MobileQ.NET";
httpRequest.ContentType = "image/png";
response = httpRequest.GetResponse().GetResponseStream();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:39:55+00:00Added an answer on May 27, 2026 at 2:39 pm

    You can check in your myfile.ashx if the request is from localhost:

    string client = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
    if(client == "localhost" || client == "127.0.0.1" || client == "::1")
        //DoWork
    else
    {
        HttpContext.Current.Response.StatusCode = (int)HttpStatusCode.Forbidden;
        return;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to block access of my site from one particular IP address, how
I want to block access to only one directory say http://www.example.com/pictures Every file in
I want to block non-browser clients from accessing certain pages / successfully making a
I have created a simple web browser using c# and I want to block
i want to parse 1 url and afterwords i want to access some data
I have a database with many many tables. I want to block any users,
I found this web site to generate a .htaccess to block an access from
I want a block that is available throughout a class, so it can be
I have 2 CAS servers on my primary site.I want to use Allow/Block/Quarantine feature
I have a drupal website. I want to generate an Iframe with content from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.