andrewb

ll_client1.r

Sep 17th, 2015
8,572
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REBOL 1.14 KB | None | 0 0
  1. rebol [
  2.     Title: "Lady Lawful Client"
  3.     Version: 0.1
  4.     Purpose: [To learn a bit more about REBOL.]
  5. ]
  6.  
  7. prtz: []
  8.  
  9. get-ll-json: func [jurl] [
  10.   json: read jurl
  11.   parts: parse json {[{" "} "," ":"]}
  12.   clear prtz
  13.   foreach [p] parts [
  14.     if not zero? length? p [ append prtz p ]
  15.   ]
  16.   prtz
  17. ]
  18.  
  19. getPic: func [gurl] [ to-image (load-image (load to-string gurl)) ]
  20.  
  21. getPrev: func [] [ get-ll-json http://ladylawful.com/prev ]
  22.  
  23. getNext: func [] [ get-ll-json http://ladylawful.com/next ]
  24.  
  25. getCurrent: func [] [ get-ll-json http://ladylawful.com/img ]
  26.  
  27. picFull: func [ json ] [ json/2 ]
  28.  
  29. picSmall: func [ json ] [ json/4 ]
  30.  
  31. picThumb: func [ json ] [ json/6 ]
  32.  
  33. setSize: func[ pic ] [
  34.     tx: pic/size/x + 20
  35.     ty: pic/size/y + 20
  36.     to-pair (as-pair tx ty)
  37. ]
  38.  
  39. refreshPic: func [w i n] [
  40.     i /clear
  41.     i/size: n/size
  42.     set-face i n
  43.     w/size: setSize n
  44.     show w
  45. ]
  46.  
  47. v1: layout [
  48.   at 10x10 b: image getPic picSmall getCurrent
  49.   at 10x10 btn "PREV" [
  50.     refreshPic v1 b getPic picSmall getPrev
  51.   ]
  52.   at 60x10 btn "NEXT" [
  53.     refreshPic v1 b getPic picSmall getNext
  54.   ]
  55.   at 110x10 btn "QUIT" [quit]
  56. ]
  57.  
  58. view v1
Advertisement
Comments
  • Quinwakar
    39 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).
  • Jaxvedar
    32 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment