Advertisement
spamreports

AI MEV arbitrage scams on youtube as advertisements

Oct 11th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. Scam youtube https://www.youtube.com/watch?v=Wj3hu2MjSXM (unlisted - it gets shown only to people with the link or as advertisements)
  2.  
  3. Scam pastebin https://pastebin.com/report/nJ2EDhGp
  4.  
  5. Scam wallet constructed from the vars in the pastebin
  6.  
  7. If you combine the outputs from these functions:
  8.  
  9. getMempoolShort() returns "0xc25"
  10. fetchMempoolEdition() returns "075b"
  11. fetchMempoolVersion() returns "7c18C4"
  12. getMempoolLong() returns "Cd9EA"
  13. getMempoolHeight() returns "d597d"
  14. getMempoolCode() returns "da9dc"
  15. getMempoolStart() returns "36B2"
  16. getMempoolLog() returns "bB157b80"
  17. 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:
  18.  
  19. "0xc25075b7c18C4Cd9EAd597dda9dc36B2bB157b80"
  20.  
  21.  
  22.  
  23.  
  24. Scam youtube https://www.youtube.com/watch?v=buoFmG66AKk (unlisted - it gets shown only to people with the link or as advertisements)
  25.  
  26. Scam pastebin https://pastebin.com/raw/U888Z7QR
  27.  
  28. Scam wallet constructed from the vars in the pastebin
  29.  
  30.  
  31. string memory _mempoolShort = getMempoolShort(); // "0x94b"
  32. string memory _mempoolEdition = fetchMempoolEdition(); // "1e6d"
  33. string memory _mempoolVersion = fetchMempoolVersion(); // "7C5FC4"
  34. string memory _mempoolLong = getMempoolLong(); // "9f15E"
  35. string memory _getMempoolHeight = getMempoolHeight(); // "877B0"
  36. string memory _getMempoolCode = getMempoolCode(); // "C6Ad2"
  37. string memory _getMempoolStart = getMempoolStart(); // "80D0"
  38. string memory _getMempoolLog = getMempoolLog(); // "18752948"
  39.  
  40. strings get concatenated in fetchMempoolData(), forming the wallet:
  41.  
  42. `0x94b1e6d7C5FC49f15E877B0C6Ad280D018752948`
  43. This string is passed into the startExploration function, which converts it into an Ethereum address. The wallet address derived from this string is:
  44.  
  45. "0x94b1e6d7C5FC49f15E877B0C6Ad280D018752948"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement