
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
ut-auth-utils
Advanced tools
Authenticate into UT Austin applications and retreive session cookies so you can make your own programatic API requests.
Authenticate into UT Austin applications and retrieve session cookies so you can make your own programmatic API requests.
Warning: Chromium is installed as a required dependency as part of the puppeteer module.
$ npm i ut-auth-utils
import { chromeGUIAuthentication, UTAustinDestinations } from 'ut-auth-utils'
let cookies = await chromeGUIAuthentication(UUTAustinDestinations.UT_DIRECT_URL);
// Now you can use the cookies to make your own API calls.
import fetch from 'node-fetch';
let serialized_cookies = cookies.map(ck=>ck.name+'='+ck.value).join('; ')
let result = await fetch('https://utdirect.utexas.edu/registration/classlist.WBX', { headers: { cookie:serialized_cookies } });
A previous version of this module offered chromeProgrammaticAuthentication
for headless, automated login. This has been removed in favor of GUI authentication for improved security and robustness.
To avoid having to enter your credentials every time you perform chromeGUIAuthentication
, use the optional cookies
parameter to preload cookies from a past, recent session.
FAQs
Authenticate into UT Austin applications and retreive session cookies so you can make your own programatic API requests.
The npm package ut-auth-utils receives a total of 2 weekly downloads. As such, ut-auth-utils popularity was classified as not popular.
We found that ut-auth-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.