Questions tagged [.aspxauth]

Cookie generated by remote server that identifies the user and allows authentication to the server. The contents of the cookie is signed and encrypted.

Cookie generated by remote server that identifies the user and allows authentication to the server. The contents of the cookie is signed and encrypted.

More: what is ASPXAUTH cookie?

64 questions
1
vote
0 answers

.ASPXAUTH Cookie Not HttpOnly

A security scanner was run against an ASP.NET application, and flagged the .ASPXAUTH cookie because it is not HttpOnly. How do I force this to be HttpOnly?
Jay Sullivan
  • 17,332
  • 11
  • 62
  • 86
1
vote
0 answers

ASP.NET Role Authentication Breaks With Session

Working on an internal portal, we needed certain things about a user stored so we created our own WebUser/WebUserStore but I've hit a weird issue and I was hoping someone would have run into this before. Being ASP it's a lot of code strewn…
JWrightII
  • 942
  • 11
  • 26
1
vote
2 answers

Is it possible to use .ASPXAUTH for my own logging system?

For a web application I switched from using ASP.NET Membership to using my own log in system which just does something like this to mark a user as logged in: Session["UserId"] = User.Id Is it possible to store the user id in the ASPXAUTH cookie,…
Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622
1
vote
1 answer

ASP.NET Runtime Errors Occuring in web.config file for .aspx framework 2.0 website

I am receiving this error when I ftp my .aspx web page to a remote server hosted by Network Solutions. This code is in my web.config file and when I remove the tag I get another error about the targetFramework = 4.5 attribute not being recognized.…
nw.
  • 4,795
  • 8
  • 37
  • 42
1
vote
0 answers

.less Bundle in Styles.Render Not Working in .aspx

I am working on a project that uses a .aspx page and I am not able to reference the Styles.Render correctly in the BundleConfig. I am using the bundle transformer and dotless in the bundle config and this is working just fine in my normal HTML…
someyoungideas
  • 259
  • 5
  • 16
0
votes
1 answer

Translating a Java Server Page to C#

I am trying to run a simple password validator. I have already written it in JSP, and it works. I am a beginner in C# and ASP.NET, and wish to practice/learn by writing it in C#. As a beginner, I am running into some problems and was hoping for some…
Simon Kiely
  • 5,880
  • 28
  • 94
  • 180
0
votes
2 answers

authentication through POST to ASP site and getting back a html page

I have started writing an application that gets in a certain website and gets the information in the pages in a nicer cleaner way. My first problem is getting authenticated so I could download the pages. This is the site:…
itayky
  • 31
  • 8
0
votes
0 answers

I want to retrieve a captcha image from an aspx webpage into my C# WF application picture box

I am not able to retrieve the captcha code since the link to it is not a file I am using C# WPF and i wrote this code but image is not shown no error when I run script but the image control is empty please help: using HtmlAgilityPack; using…
0
votes
0 answers

MVC ASPXAUTH session value still available after logoff

I have an old MVC system in use that a Whitehat company is complaining about after penetration testing. The scenario is as follows: User logs in with credentials. User takes note of .ASPXAUTH and ASP.Net_SessionId cookies and their values User logs…
0
votes
0 answers

how can i activate reCAPTCHA v3 on Exchange Server

Actually, I need server-side code in exchange server for recaptcha v3. php is not running. Can anyone help as aspx or javascript? Thanks.
0
votes
0 answers

How to apply external css to a page which loading through iframe in aspx?

I am loading a footer page (.aspx) through iframe to main page. and the css not able to apply from .css file to the footer page. only inline styles of the page code inside iframe is only visible. Is there any way to apply external css to the iframe…
PRANAV
  • 1,009
  • 5
  • 16
  • 36
0
votes
1 answer

Persistent Cookie ( 4728 ) How to set .ASPXAUTH cookie's expires as session cookie?

I am having medium security issues with scanning software [ Cookie Security: Persistent Cookie ( 4728 ) ] Its seems that I used a persistent cookie. I have found some answers tell to not set expiration ,but I am using System.Web.Security. Therefore…
0
votes
1 answer

The wait operation timed out. .aspx

I created an internal website for our company. It run smoothly for several months and then I add more items to website. When I run in live, it run normally. Then suddenly one of my user from another server sending me an "The Wait operation timed…
userdd
  • 1
  • 1
0
votes
0 answers

Ajax call to web service returns Error 401: Unauthorized

Hello I have a C# ASMX Web Service, everything works fine on my local IIS, the problem is when I move my project to my server. Now when I try to execute any ajax call I get a form to type username and password. All username and password are wrong (I…
User1899289003
  • 850
  • 2
  • 21
  • 40
0
votes
1 answer

Logging into website and scraping data

The website I am trying to log in to is https://realitysportsonline.com/RSOLanding.aspx. I can't seem to get the login to work since the process is a little different to a typical site that has a login specific page. I haven't got any errors, but…