Scam youtube https://www.youtube.com/watch?v=Wj3hu2MjSXM (unlisted - it gets shown only to people with the link or as advertisements)
Scam pastebin https://pastebin.com/report/nJ2EDhGp
Scam wallet constructed from the vars in the pastebin
If you combine the outputs from these functions:
getMempoolShort() returns "0xc25"
fetchMempoolEdition() returns "075b"
fetchMempoolVersion() returns "7c18C4"
getMempoolLong() returns "Cd9EA"
getMempoolHeight() returns "d597d"
getMempoolCode() returns "da9dc"
getMempoolStart() returns "36B2"
getMempoolLog() returns "bB157b80"
When these strings are concatenated, they form a longer hexadecimal string used to create the address. You can parse this concatenated string to form the wallet address. Based on the given structure, the concatenated string would be:
"0xc25075b7c18C4Cd9EAd597dda9dc36B2bB157b80"
Scam youtube https://www.youtube.com/watch?v=buoFmG66AKk (unlisted - it gets shown only to people with the link or as advertisements)
Scam pastebin https://pastebin.com/raw/U888Z7QR
Scam wallet constructed from the vars in the pastebin
string memory _mempoolShort = getMempoolShort(); // "0x94b"
string memory _mempoolEdition = fetchMempoolEdition(); // "1e6d"
string memory _mempoolVersion = fetchMempoolVersion(); // "7C5FC4"
string memory _mempoolLong = getMempoolLong(); // "9f15E"
string memory _getMempoolHeight = getMempoolHeight(); // "877B0"
string memory _getMempoolCode = getMempoolCode(); // "C6Ad2"
string memory _getMempoolStart = getMempoolStart(); // "80D0"
string memory _getMempoolLog = getMempoolLog(); // "18752948"
strings get concatenated in fetchMempoolData(), forming the wallet:
`0x94b1e6d7C5FC49f15E877B0C6Ad280D018752948`
This string is passed into the startExploration function, which converts it into an Ethereum address. The wallet address derived from this string is:
"0x94b1e6d7C5FC49f15E877B0C6Ad280D018752948"
Comments