Files
vulnerability-list/search_exploits/Main_search_exploits.py

11 lines
166 B
Python
Raw Normal View History

2019-11-29 21:37:22 +08:00
# -*- coding: utf-8 -*-
import search_exploits.search_exploit
def exec(URL):
search_exploits.search_exploit.attack(URL)
if __name__ == "__main__":
exec()