DeaD_EyE

sycp

Oct 4th, 2016
561
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.57 KB | None | 0 0
  1. #!/usr/bin/env python2
  2. '''
  3. Das Programm kopiert Dateien von src nach dst. Verzeichnisse werden erstellt, wenn sie nicht existieren.
  4. Dateien werden als Symlinks angelegt. Optional koennen auch relative Symlinks angelegt werden.
  5. '''
  6.  
  7. from __future__ import print_function
  8. import os
  9. import sys
  10. import argparse
  11.  
  12. def copy(src, dst, relative=False):
  13.     src = os.path.abspath(src)
  14.     dst = os.path.abspath(dst)
  15.     try:
  16.         os.mkdir(dst)
  17.     except OSError:
  18.         pass
  19.     for root, dirs, files in os.walk(src):
  20.         dstroot = os.path.join(dst, root[len(src):])
  21.         for dir in dirs:
  22.             dstpath = os.path.join(dstroot, dir)
  23.             try:
  24.                 os.mkdir(dstpath)
  25.             except OSError:
  26.                 pass
  27.         for file in files:
  28.             dstfile = os.path.join(dstroot, file)
  29.             srcfile = os.path.join(root, file)
  30.             if relative:
  31.                 srcfile = os.path.relpath(path=srcfile, start=dstroot)
  32.             try:
  33.                 os.symlink(srcfile, dstfile)
  34.             except OSError:
  35.                 pass
  36.  
  37. def args():
  38.     parser = argparse.ArgumentParser(prog='sycp', description=__doc__)
  39.     parser.add_argument('src', help='Quellverzeichnis', action='store')
  40.     parser.add_argument('dst', help='Zielverzeichnis', action='store')
  41.     parser.add_argument('-r', '--relative', help='Relative Symlinks', action='store_true', default=False)
  42.     return parser
  43.  
  44. if __name__ == '__main__':
  45.     parser = args()
  46.     arguments = parser.parse_args()
  47.     copy(arguments.src, arguments.dst, arguments.relative)
Advertisement
Comments
  • lWillHaveAdmin
    59 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).
Add Comment
Please, Sign In to add comment