himself

Untitled

Oct 31st, 2013
622
0
Never
12
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. rem Copies to clipboard paths to the chosen files on the web storage, e.g.
  3. rem    C:\Temp\Img\test.png  --->  http://example.com/lib/Img/test.png
  4. rem Looks for a file named PATH.TXT which contains the base web address
  5. rem in this folder, then the parent folder, etc.
  6. rem If you're on <<< Windows Server 2003, you'll need clip.exe.
  7.  
  8. pushd .
  9. set SEP=  
  10. set PFILE=path.txt
  11. set CLIPDATA=
  12.  
  13. rem Enumerate command line arguments
  14. :next
  15. if "%~1"=="" goto end
  16. echo Adding %1
  17. rem This will store relative path to the file
  18. set RELPATH=
  19.  
  20. rem Start with the deepest folder
  21. %~d1
  22. cd %~dp1
  23. :next_level
  24. if EXIST %CD%\%PFILE% goto found
  25. rem Topmost level:
  26. if "%CD%"=="%~d1\" goto notfound
  27.  
  28. rem Otherwise, one level up
  29. for %%I in (%CD%) do set RELPATH=%%~nxI/%RELPATH%
  30. cd ..
  31. goto next_level
  32.  
  33. :notfound
  34. rem Only file name, without any path
  35. if NOT "%CLIPDATA%"=="" set CLIPDATA=%CLIPDATA%%SEP%
  36. set CLIPDATA=%CLIPDATA%%~nx1
  37. goto itemend
  38.  
  39. :found
  40. rem Base + relative path + filename
  41. if NOT "%CLIPDATA%"=="" set CLIPDATA=%CLIPDATA%%SEP%
  42. FOR /F %%f IN (%PFILE%) DO set CLIPDATA=%CLIPDATA%%%f/%RELPATH%%~nx1
  43. goto itemend
  44.  
  45. :itemend
  46. rem Next command line argument
  47. shift
  48. goto next
  49. :end
  50.  
  51. if "%CLIPDATA%"=="" goto skipclip
  52. rem Cunning way to echo without newline
  53. echo "%CLIPDATA%"
  54. 0<nul set /p ="%CLIPDATA%"|clip
  55. :skipclip
  56.  
  57. popd
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • Garzevor
    13 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