Questions tagged [anonymous-access]

31 questions
6
votes
1 answer

How do I allow anonymous access to my mvc3 app using Windows Authentication

I have an MVC3 Intranet app that uses Windows authentication. I'm now using a third party service that will make notification calls to my app. I've already created a listener for these API calls but not sure how I can allow anonymous access to that…
Nildarar
  • 802
  • 1
  • 8
  • 17
5
votes
4 answers

reporting services anonymous access to reports

I can't create a NT account for everyone that need access to the reports. Does anyone know or have a link to the info to allow anonymous access to reporting services reports ? Thanks
freddoo
  • 6,770
  • 2
  • 29
  • 39
3
votes
0 answers

How to allow anonymous users to sign in to Kooboo?

What do I need to do so that I could allow anonymous users to be able to create an account when I'm using Kooboo CMS?
Ehsan Zargar Ershadi
  • 24,115
  • 17
  • 65
  • 95
2
votes
1 answer

SharePoint forms authentication sites

With a SharePoint site which is partially anonymous and partially behind a forms authentication login, how do you manage the security of it? I've got a site set up with the CMS portal (which uses Windows authentication) but since FBA is to be used…
Aaron Powell
  • 24,927
  • 18
  • 98
  • 150
2
votes
0 answers

Kibana, anonymous access, dashboards only

I'm looking for the correct way to give users anonymous access to a Kibana dashboard, but at the same time preventing them from having access to other Kibana features. I read that the role kibana_dashboard_only_user is now deprecated (I'm on 7.6.2),…
Flatline1963
  • 137
  • 1
  • 9
2
votes
2 answers

Spring Boot Security PreAuthenticated Scenario with Anonymous access

I have a Spring Boot (1.5.6) application that is using the "pre-authenticated" authentication scenario (SiteMinder) from Spring Security. I have a need to expose the actuator "health" endpoint anonymously meaning the requests to that endpoint will…
2
votes
1 answer

What are the app pool identity and account for anonymous access for?

I understand what the two are used for, except I don't know what each does--i.e. what one is for vs. what the other is for. (I usually set them to the same account anyway.) If you're not sure what accounts I'm talking about, in the IIS manager…
jyoungdev
  • 2,674
  • 4
  • 26
  • 36
2
votes
0 answers

IIS remote virtual directory anonymous access

I have two servers. One is static image host and other is public web server. I need to use shared folder from static server as usual folder in web server with create/read/write/delete things. I've created public network share on first server with…
Omni
  • 31
  • 4
2
votes
1 answer

IIS7 programmatically modify application anonymous access

I'm trying to enable anonymous access on an application in IIS7, using the code below: ConfigurationSection config = server.GetWebConfiguration(webSiteName).GetSection("system.webServer/security/authentication/anonymousAuthentication", "/" +…
MindlessBarber
  • 1,590
  • 6
  • 22
  • 39
2
votes
0 answers

SharePoint 2010 Public Content Deployment

I am trying to set up content deployment. Our situation will be that the authoring site will sit under https:// and deploy to a http:// publishing site. We want to keep the authoring site secure while making the http:// publishing site, public. Do I…
2
votes
2 answers

I can't see anonymous access menu in SharePoint 2010

I'm so confused because after enabling anonymous access in central administration panel on SharePoint 2010, I can't see the Anonymous access in the Site Setting -> Site Permissions Any idea?
Afshin Mehrabani
  • 33,262
  • 29
  • 136
  • 201
1
vote
1 answer

Static file serving in Keystonejs 6

I am using Keystonejs 6 and some models contain image type fields. When fetching this data I get a src of that image which points to /public/images/myimage.png. This link successfully gets loaded with admin panel logged in (session created) but when…
ConductedClever
  • 4,175
  • 2
  • 35
  • 69
1
vote
2 answers

Anonymous access in MVC 5

How to allow anonymous access in routeconfig in asp.net mvc 5 ? In routeconfig I've added: routes.MapRoute( name:"cert", url:".well-known/acme-challenge") I want to allow anonymous access to mydomain.com/.well-known/*
user3066249
  • 31
  • 1
  • 5
1
vote
1 answer

How to stop Windows Security popup for Sharepoint 2007 site with anonymous access enabled

I've been researching this a lot lately and cannot seem to find a solution to the exact problem I'm having, so I figured I'd ask and get any help I can get. Here's the scenario: I took over a Sharepoint web application that was in development for a…
easyeman77
  • 21
  • 3
1
vote
2 answers

Getting username in an mvc application with no authentication and anonymous authentication enabled in IIS

I have been trying to read the username of the user browsing my MVC application. The application doesn't have any authentication, and is hosted in IIS with windows authentication disabled and anonymous authentication enabled. Now, I want to ensure…
1
2 3