# microsoft-forefront-proxy **Repository Path**: mirrors_FGRibreau/microsoft-forefront-proxy ## Basic Information - **Project Name**: microsoft-forefront-proxy - **Description**: 💩 Quick and dirty proxy for Microsoft ISA-server / Microsoft Forefront - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Microsoft ISA-server proxy / Microsoft Forefront proxy Quick and dirty proxy for Microsoft ISA-server / Microsoft Forefront. ## Features * [x] Bypass ISA authentication form * [x] Forward GETs * [x] Forward POSTs/PUTs/PATCHs ## Install ``` npm install microsoft-forefront-proxy --global ``` ## Usage ``` PORT=8080 microsoft-forefront-proxy & curl http://localhost:8080/?url=https%3A//protected.ressource.com/activity.atom&auth=LOGIN:PASSWORD ``` Note: you should deploy microsoft-forefront-proxy over https. ## Usage with Google App Script ``` function fetchAndByPassISA(url, auth) { return UrlFetchApp.fetch("https://isaserver-proxy.cleverapps.io/?url="+encodeURIComponent(url)+"&auth="+encodeURIComponent(auth)); } function main(){ var res = fetchAndByPassISA("https://protected.resource.com/projects/my-awesome-project/issues.json?subproject_id=345,347,348,351,352&status_id=*&limit=100&tracker_id=1&offset=0", "LOGIN:PASSWORD"); Logger.log(res.getContentText()); } ```