beqa1923

Untitled

Aug 12th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/usr/bin/python3
  2. import sys
  3. from keygen import keygen
  4.  
  5. def main():
  6. value = sys.argv[1]
  7. ip = "localhost"
  8. usr = "root"
  9. password = "Msfconsole123#"
  10. dbName = "ksmPy"
  11. i = keygen(ip,usr,password,dbName)
  12. result = i.getkey(value)
  13. print(result)
  14.  
  15. if __name__== "__main__":
  16. main()
Add Comment
Please, Sign In to add comment