mirror of
https://github.com/EndPwnArchive/endpwn3.2-lambda.git
synced 2024-08-14 23:49:56 +00:00
202 lines
No EOL
9.3 KiB
HTML
202 lines
No EOL
9.3 KiB
HTML
<!--
|
|
|
|
EndPwn3 Stage 0 Payload
|
|
|
|
Copyright 2018 EndPwn Project
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
https://github.com/endpwn/
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'IBMVGA8';
|
|
src: url('/fonts/ibm_vga8.eot');
|
|
src: url('/fonts/ibm_vga8.eot?#iefix') format('embedded-opentype'),
|
|
url('/fonts/ibm_vga8.woff2') format('woff2'),
|
|
url('/fonts/ibm_vga8.woff') format('woff'),
|
|
url('/fonts/ibm_vga8.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'IBMVGA8' !important;
|
|
text-align: center;
|
|
background-color: #1a1d23;
|
|
color: #ffffff
|
|
}
|
|
|
|
div {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: linear-gradient(to bottom right, #c0ff80, #c080ff);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-size: 96px;
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
top: 0%;
|
|
left: 50%;
|
|
transform: translate(-50%, 0%);
|
|
color: #f00;
|
|
font-size: 16px;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
|
|
// wait until DOM is ready so that error messages can display properly
|
|
window.onload = () => {
|
|
|
|
setTimeout(async () => {
|
|
|
|
// dont try doing anything if running in a browser
|
|
if (navigator.userAgent.indexOf('discord') == -1) return;
|
|
|
|
var approot = location.href.split('/app/')[0];
|
|
|
|
try {
|
|
|
|
// fix for recent canary update
|
|
if (window.require === undefined) {
|
|
window.electron = DiscordNative.nativeModules.requireModule("discord_/../electron").remote;
|
|
window.require = electron.require;
|
|
} else {
|
|
window.electron = require('electron').remote;
|
|
}
|
|
|
|
window.fs = require("original-fs");
|
|
window.Buffer = require("buffer").Buffer;
|
|
|
|
var data = electron.app.getPath('userData');
|
|
var branch = require('path').basename(data).substr(7);
|
|
|
|
function load() {
|
|
electron.BrowserWindow.addExtension(data + '/crxpwn');
|
|
electron.getCurrentWindow().loadURL('https://' + (branch && branch != 'development' ? branch + '.' : '') + 'discordapp.com/channels/@me');
|
|
}
|
|
|
|
if (window.betterDiscordIPC) {
|
|
alert('EndPwn3 is not compatible with BetterDiscord\n\nPress OK to return to Discord', 'EndPwn3: Framework Conflict');
|
|
electron.getCurrentWindow().loadURL('https://' + (branch && branch != 'development' ? branch + '.' : '') + 'discordapp.com/channels/@me');
|
|
return;
|
|
}
|
|
|
|
// temporary
|
|
if (branch != 'canary') {
|
|
alert('EndPwn3.1 Staging uses crxpwn which only works on Canary at the moment', 'Sorry');
|
|
electron.getCurrentWindow().loadURL('https://' + (branch && branch != 'development' ? branch + '.' : '') + 'discordapp.com/channels/@me');
|
|
return;
|
|
}
|
|
|
|
// asarpwn (as a removal tool)
|
|
function asarinject(sig, inj) {
|
|
var dirlisting = fs.readdirSync(data);
|
|
var latestver = dirlisting.filter(d => d.indexOf("0.0.") > -1);
|
|
|
|
if (sig.length != inj.length) {
|
|
throw 'signature and injection not same size'
|
|
}
|
|
var bdata = new Buffer(fs.readFileSync(`${data}/${latestver[latestver.length - 1]}/modules/discord_desktop_core/core.asar`));
|
|
var index = bdata.indexOf(sig);
|
|
if (index == -1) {
|
|
return 0;
|
|
}
|
|
bdata.write(inj, index);
|
|
fs.writeFileSync(`${data}/${latestver[latestver.length - 1]}/modules/discord_desktop_core/core.asar`, bdata);
|
|
return 1;
|
|
}
|
|
|
|
// install endpwn
|
|
|
|
var o = fs.existsSync(data + '/settings.json') ? JSON.parse(fs.readFileSync(data + '/settings.json', 'utf8')) : {}; // load settings.json
|
|
o['WEBAPP_ENDPOINT'] = location.href.split('?')[0] + '?'; // aim the app at stage 0
|
|
o['WEBAPP_PATH'] = undefined; // clear old WEBAPP_PATH
|
|
fs.writeFileSync(data + '/settings.json', JSON.stringify(o, null, 2)); // commit changes to disk
|
|
|
|
try {
|
|
if (window.__crispr_load_attempted)
|
|
// reverse asarpwn3
|
|
if (asarinject(
|
|
"var electron=require('electron');var d=electron.remote.app.getPath('userData')+'/crispr.js';if(require('fs').existsSync(d))require(d).go();//",
|
|
"// App preload script, used to provide a replacement native API now that\n// we turned off node integration.\nvar electron = require('electron'"
|
|
)) {
|
|
electron.app.relaunch();
|
|
electron.app.exit();
|
|
}
|
|
} catch (ex) {
|
|
alert(ex, 'asarpwn3');
|
|
}
|
|
|
|
if (!fs.existsSync(data + '/crxpwn')) {
|
|
fs.mkdirSync(data + '/crxpwn');
|
|
fs.writeFileSync(data + '/crxpwn/manifest.json', '{"manifest_version":2,"name":"crxpwn","description":"asarpwn-less preload scripts for the masses ;)","version":"1.0","content_scripts":[{"js":["payload.js"],"matches":["*://*/*"],"run_at":"document_start","all_frames":true}]}');
|
|
}
|
|
|
|
if (!fs.existsSync(data + '/plugins')) fs.mkdirSync(data + '/plugins');
|
|
if (!fs.existsSync(data + '/styles')) fs.mkdirSync(data + '/styles');
|
|
|
|
// dont update EPAPI/CRISPR if DONTUPDATE exists
|
|
if (!fs.existsSync(data + '/DONTUPDATE')) {
|
|
|
|
// get files
|
|
fs.writeFileSync(data + '/crxpwn/payload.js', await (await fetch(approot + '/crxpwn.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/epapi.js', await (await fetch(approot + '/epapi/epapi.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/crispr.js', await (await fetch(approot + '/crispr/crispr.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/plugins/plugins.js', await (await fetch(approot + '/plugin/plugins.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/plugins/system.js', await (await fetch(approot + '/plugin/system.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/plugins/customizer.js', await (await fetch(approot + '/plugin/customizer.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/plugins/settings.js', await (await fetch(approot + '/plugin/settings.js?_=' + Date.now())).text());
|
|
fs.writeFileSync(data + '/styles/system.css', await (await fetch(approot + '/plugin/system.css?_=' + Date.now())).text());
|
|
|
|
setTimeout(load, 1000);
|
|
|
|
}
|
|
else {
|
|
setTimeout(load, 1000);
|
|
}
|
|
|
|
}
|
|
catch (e) {
|
|
console.error(e);
|
|
document.querySelector('div').parentNode.innerHTML += '<span>Inititialization failure. Check the console for details.</span>';
|
|
}
|
|
|
|
}, 500);
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div>Cλnergy</div>
|
|
</body>
|
|
|
|
</html> |