Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.