Secondary Web Proxy to the Likes of Womginx and Corrosion.
Made by EnderKingJ
Palladium is the fastest proxy, severely beating Corrosion by 3x, Alloy - No Discord Support, Womginx - 1.3x
- hCaptcha Support
- Discord Support
- Reddit Support
- Websocket Support
- Cookie Rewrites
- Better HTML Rewriter
- Better JS Rewriter
- Better Cookie Support
- LocalStorage Proxying
- More Native Browser Functions
- Better Headers Code
- Single File Version
- Youtube UI Fix
Supported + Login (Some Parts of Dashboard Unsupported
Supported
Mostly Supported
Somewhat Supported, Errors: Reddit bug, can play video but navigating to other pages requires opening in new tab
constPalladium=require("palladiumub");//Outdated package, change to lib/server folder pathconstproxy=newPalladium();//default configconsthttp=require("http");{"prefix": "/service/","ssl": true,"encode": "xor","title": "Service","requestMiddleware": [Palladium.blackList(["discord.com","accounts.google.com"],"Page is Blocked by Host")],Corrosion: [false,{}]server: your-http-server}varserver=http.createServer();proxy.init();server.on("request",(req,res)=>{if(req.url.startsWith(proxy.prefix))returnproxy.request(req,res)res.end("<form action='/service/gateway' method='POST'><input name='url'><input type='submit'></form>")})index.js
constPalladium=require("palladiumub");consthttp=require("http");varserver=http.createServer();constproxy=newPalladium({"prefix": "/service/","encode": "xor","title": "Service","requestMiddleware": [Palladium.blackList(["any-link.com","accounts.google.com"],"Page is Blocked by Host")],server: server,});proxy.init();server.on("request",(req,res)=>{if(req.url.startsWith(proxy.prefix))returnproxy.request(req,res)res.writeHead(200,{'content-type': 'text/html'}).end("<form action='/service/gateway' method='POST'><input name='url'><input type='submit'></form>")})server.listen(8080)