Recommended Posts

Building on the work done with the Neowin External Login Tool (NELT), I've rebuilt a set of ASP.NET classes which will allow you to integrate the NELT functionality into your own ASP.NET websites.

Let's get some explaining done; The Neowin Login Services library is a .NET implementation of the external Neowin.net authentication mechanism. The mechanism is as follows:

1. Check for an existing login ticket.

1.a. If one does not exist, forward the user to Neowin.net where they can log in.

1.b. After a succesful login, redirect the user back to the website, with a ticket id.

2. Check the validaty of the ticket using the CheckTicket service provided by Neowin.net

2.a. If the ticket is valid, retrieve the available user details.

This specific implementation deals with this a specific way:

1. An IHttpModule which checks to see if the ticket exists. If the ticket does not exist, this module will forward the user to the Neowin.net external login script. This is built as a module so that its functionality can be automatically be called if the presence of a RequireLoginAttribute is decorating the page class:

[RequireLogin(true)]
public class _Default : System.Web.UI.Page...

2. After a succesful login, Neowin.net will redirect to an IHttpHandler, "Neowin.axd", that will check the validaty of the ticket, and store it in Session. This is built as an IHttpHandler so that functionality, such as Login and Logout can be called at the user request.

3. Parse the response from Neowin.net, and create an instance of NeowinUser which stores the currently authenticated user.

NELT.NET 2.0 stores the authentication in Session, this is to minimise the number of requests needed to be sent to Neowin, and to keep wait times to a minimum.

There are some required configuration changes that need to be made to your web.config in order to use NELT functionality:

1. Enable the configuration by declaring a configuration section (in a group called neowin.net).

	<configSections>
		<sectionGroup name="neowin.net">
			<section name="login" type="Neowin.LoginServices.Configuration.LoginServicesConfigurationSection, Neowin.LoginServices"/>
		</sectionGroup>
	</configSections>

2. Configure the NELT library.

	<neowin.net>
		<login baseUrl="http://localhost/NeowinLoginServices/" imageUrl="http://neowin.fidelitydesign.net/resources/neowin_examplelogin.png"/>
	</neowin.net>

The configuration element allows (currently) two properties. The base url that will be used to both redirect after login, and redirect to the Neowin.axd handler for verification. The image url, is the (as it reads) url for the image that will be displayed on the Neowin external login page.

3. Reference the IHttpHandler and IHttpModule in either the system.web (IIS6 & IIS7 Classic .NET), or system.webserver (IIS7 Integrated)

IIS6 & IIS7 Classic .NET

	<system.web>
		<httpHandlers>
			<add verb="GET" path="Neowin.axd" type="Neowin.LoginServices.LoginServicesHandler, Neowin.LoginServices"/>
		</httpHandlers>
		<httpModules>
			<add name="LoginService" type="Neowin.LoginServices.LoginServicesModule, Neowin.LoginServices"/>
		</httpModules>
	</system.web>

IIS7 Integrated

	<system.webServer>
		<modules>
			<add name="LoginService" preCondition="managedHandler" type="Neowin.LoginServices.LoginServicesModule, Neowin.LoginServices"/>
		</modules>
		<handlers>
			<add name="LoginService" preCondition="integratedMode" verb="GET" path="Neowin.axd" type="Neowin.LoginServices.LoginServicesHandler, Neowin.LoginServices"/>
		</handlers>
	</system.webServer>

After that (and of course adding the reference to Neowin.LoginServices.dll), you are good to go. You can access the current Neowin.net user in code:

NeowinUser user = NeowinUser.GetUser();
if (user != null)
{
  // Logged in code here
}
else
{
  // Perhaps log in?
  Response.Redirect("Neowin.axd?action=login");
}

The IHttpHandler includes functionality for both logging in and logging out. To login, redirect your users to ~/Neowin.axd?action=login, to logout, redirect your users to ~/Neowin.axd?action=logout. Any other action will simply redirect back to the application base url.

As I stated previously, any Page that has been decorated with the RequireLoginAttribute, the login system will automatically be started if no valid ticket currently exists.

I hope you all find this useful, if you need any help integrating this, let me know.

Whats next? I hope to be able to build an ASP.NET MVC compatable library for those wanting to implement URL rerouting, etc. Also, I might ask the Neowin.net development staff to include more properties, such as a url to the user's avatar.

Ideas? If you have any, let me know!

Source code? If you are interested in the source code for this library, I'll be more than willing to share (need to finish development notes etc.)

Neowin.LoginServices.zip

Edited by Antaris
Link to comment
https://www.neowin.net/forum/topic/736472-neowin-login-services-neltnet-20/
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Anthropic pulls Fable 5 and Mythos 5 after US export control order by Pradeep Viswanathan In April this year, Anthropic launched the Claude Mythos Preview frontier model with state-of-the-art cyber and coding capabilities for a select set of companies around the world. After preparing appropriate guardrails, early this week, Anthropic launched Claude Fable 5 and Mythos 5, its most capable AI models. Claude Fable 5 is for general users and comes with strict safeguards, while Mythos 5 is designed with fewer safeguards for cybersecurity and biology use cases. Today, Anthropic abruptly suspended access to its Fable 5 and Mythos 5 AI models for all customers after receiving an export control directive from the US government. The company received the directive from the government today at 5:21 p.m. ET, and the received letter did not provide any details regarding the national security concern. Anthropic understands that the government became aware of a method to bypass, or “jailbreak,” Fable 5, which might be the reason behind the directive. The order was issued under national security authorities and requires the company to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether they are inside or outside the United States. The restriction also applies to foreign national employees working at Anthropic. As a result, the company has disabled both models for all customers to ensure compliance. Access to previous Anthropic models like Opus and Sonnet is not affected by this government order. The company highlighted that it had developed strong safeguards to reduce the possibility that Fable is misused for tasks related to cybersecurity. In fact, many developers are complaining that the safeguards are going overboard. Additionally, the company worked with the US government, the UK AISI, multiple private third-party organizations, and internal teams to red-team Fable’s safeguards for thousands of hours. Finally, Anthropic noted that no testers have yet been able to find a universal jailbreak on Fable 5. As expected, Anthropic disagrees that a narrow potential jailbreak should lead to the recall of a commercial model used by hundreds of millions of people. It warned that applying this standard across the AI industry could effectively halt new frontier model deployments. Anthropic concluded by mentioning that it is working to restore access to Fable 5 and Mythos 5 as soon as possible and plans to share more details within the next 24 hours.
    • Brave Browser 1.91.172 is out.
    • Any Video Converter Free 9.2.3 by Razvan Serea Any Video Converter is an All-in-One video converting tool with an easy-to-use graphical interface, fast converting speed and excellent video quality. Any Video Converter supports all popular video formats and converts your videos to different video formats including MP4, MOV, MKV, M2TS, M4V, MPEG, AVI, WMV, ASF, OGV, WEBM, and more. It supports converting videos to customized percent (50%, 100%, 200%, and more) or resolution (480p, 720p, 1080p, 4K, and more); It supports encoding videos into x264, x265, h263p, xvid, mpeg, wmv, and more. Any Video Converter Free key features: Compatible with Windows 11/10/8.1/8/7 (32-64bit) User interface are available in 14 languages Convert all kinds of video formats including high-definition videos Extract audio from any videos and save as MP3/WMA for your mp3 player Take snapshot from any videos and build your own picture collection Support high-definition for both input and output Batch add videos from hard drive and batch convert Customize output parameters completely as you like Manage your output videos files by group or output profile Merge several video files into a single and long one Clip a video into segments Free Audio Filter: Adjust audio volume and add audio effects Crop frame size to remove black bars and retain what you want only Adjust the brightness, contrast, saturation Rotate or flip or add noise/sharpen effects Produce output video with subtitles of your own dialogue and much, much more... Any Video Converter Free 9.2.3 changelog: Fixed video download engine auto-update failures. Added custom speed control support in the speed change tool. Added support for downloading YouTube AI-generated subtitles. Added support for preserving original audio stream in the format convert tool (e.g., Dolby Atmos, DTS:X). Fixed other bugs and improved overall performance. Download: Any Video Converter Free 9.2.3 | 7.6 MB (Freeware) View: Any Video Converter Free Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Not sure what country you’re in but in many countries you can absolutely jail the sellers behind businesses… in fact I’d say in most countries you can do that
    • I guess we are done since you refuse to read my comment you replied to or my other comment in another thread you were also a part of here.
  • Recent Achievements

    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
    • Rookie
      Rimplesnort went up a rank
      Rookie
    • One Year In
      Markus94287 earned a badge
      One Year In
    • One Month Later
      Markus94287 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      505
    2. 2
      +Edouard
      176
    3. 3
      PsYcHoKiLLa
      148
    4. 4
      ATLien_0
      92
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!