Skip to Content

Technology Blog

Technology Blog

Tag – Django-auth

Testing As a Different Django User

All types of Django auth do basically the same thing: They associate a browser session ID with a Django user if the user logs-in successfully.  I found a neat technique to bypass a Django login by modifying with a Django session, which can be useful for testing purposes. Why is...

Back