()
| 1754 | |
| 1755 | |
| 1756 | def wpminiscanner(): |
| 1757 | ip = raw_input('Enter IP : ') |
| 1758 | sites = bing_all_grabber(str(ip)) |
| 1759 | wordpress = check_wordpress(sites) |
| 1760 | wpstorethemeremotefileupload = check_wpstorethemeremotefileupload(sites) |
| 1761 | wpcontactcreativeform = check_wpcontactcreativeform(sites) |
| 1762 | wplazyseoplugin = check_wplazyseoplugin(sites) |
| 1763 | wpeasyupload = check_wpeasyupload(sites) |
| 1764 | wpsymposium = check_wpsymposium(sites) |
| 1765 | for ss in wordpress: |
| 1766 | print ss |
| 1767 | print '[*] Found, ', len(wordpress), ' wordpress sites.' |
| 1768 | print '-' * 30 + '\n' |
| 1769 | for ss in wpstorethemeremotefileupload: |
| 1770 | print ss |
| 1771 | print '[*] Found, ', len(wpstorethemeremotefileupload), ' wp_storethemeremotefileupload exploit.' |
| 1772 | print '-' * 30 + '\n' |
| 1773 | for ss in wpcontactcreativeform: |
| 1774 | print ss |
| 1775 | print '[*] Found, ', len(wpcontactcreativeform), ' wp_contactcreativeform exploit.' |
| 1776 | print '-' * 30 + '\n' |
| 1777 | for ss in wplazyseoplugin: |
| 1778 | print ss |
| 1779 | print '[*] Found, ', len(wplazyseoplugin), ' wp_lazyseoplugin exploit.' |
| 1780 | print '-' * 30 + '\n' |
| 1781 | for ss in wpeasyupload: |
| 1782 | print ss |
| 1783 | print '[*] Found, ', len(wpeasyupload), ' wp_easyupload exploit.' |
| 1784 | print '-' * 30 + '\n' |
| 1785 | for ss in wpsymposium: |
| 1786 | print ss |
| 1787 | |
| 1788 | print '[*] Found, ', len(wpsymposium), ' wp_sympsiup exploit.' |
| 1789 | |
| 1790 | print '\n' |
| 1791 | ############################ |
| 1792 | |
| 1793 |
no test coverage detected