TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ankit Shukla
NA
681
116.4k
remove host header vulnerability using url rewrite
May 11 2020 1:30 AM
Hi,
My website name is : "http://abcportal.uk.in/xyz_Portal/_layouts/login.aspx"
My code in web config is:
<rewrite>
<rules>
<rule name="Remove Host Header" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern=".*abcportal.uk\.in" />
<add input="{HTTP_HOST}" pattern="www\.abcportal.uk\.in" negate="true" />
</conditions>
<action type="Redirect" url="http://abcportal.uk..in/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
But when I call "http://abcportal.uk.in/xyz_Portal/_layouts/login.aspx" it redirects to "http://abcportal.uk.in/"
Please help
Reply
Answers (
1
)
Link Button not working in Asp.net Server side
dotnet ef dbcontext scaffold