Don_Mag

Untitled

Aug 10th, 2023
6,123
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 1.38 KB | None | 0 0
  1. import UIKit
  2. import WebKit
  3.  
  4. class WebShadVC: UIViewController {
  5.    
  6.     let wv: WKWebView = WKWebView()
  7.  
  8.     override func viewDidAppear(_ animated: Bool) {
  9.         super.viewDidAppear(animated)
  10.  
  11.         wv.translatesAutoresizingMaskIntoConstraints = false
  12.         view.addSubview(wv)
  13.        
  14.         let g = view.safeAreaLayoutGuide
  15.         NSLayoutConstraint.activate([
  16.             wv.topAnchor.constraint(equalTo: g.topAnchor, constant: 20.0),
  17.             wv.leadingAnchor.constraint(equalTo: g.leadingAnchor, constant: 20.0),
  18.             wv.trailingAnchor.constraint(equalTo: g.trailingAnchor, constant: -20.0),
  19.             wv.bottomAnchor.constraint(equalTo: g.bottomAnchor, constant: -20.0),
  20.         ])
  21.        
  22.         var titleColor: String?
  23.  
  24.         let htmlstr: String = "<p>geschieht</p>"
  25.  
  26.         let str = "<!DOCTYPE html> <html> <head> <link href='https://fonts.googleapis.com/css?family=Fira Sans Condensed' rel='stylesheet'> <style> body {font-family: 'Fira Sans Condensed';} .image {width: 100%; height: auto;} .bg-white { background: rgba(255, 255, 255, .7); border-radius:40px; padding: 20px; }html { padding: 10px;} h2 {\(titleColor ?? "font-size:40pt; color:#000000;")} p{ font-size:26pt; {font-family: 'Fira Sans', sans-serif;}.bold{font-weight:bold;}.italic{font-style: italic;}.oblique{font-style: oblique;}} strong{font-size:30pt} </style> </head> <body><div class='bg-white'>\(htmlstr) </div> </body> </html>"
  27.        
  28.         wv.loadHTMLString(str, baseURL: nil)
  29.        
  30.     }
  31.  
  32. }
  33.  
Advertisement
Comments
  • hagsiv
    102 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without any verification from Swapzone — instant swap).
  • Dardolix
    53 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment