Spaces:
Runtime error
Runtime error
File size: 150 Bytes
ef4248d |
1 2 3 4 5 6 7 8 |
import shutil
def backup_exploits():
shutil.make_archive('exploits_backup', 'zip', 'exploits')
if __name__ == "__main__":
backup_exploits()
|