11 lines
166 B
Python
11 lines
166 B
Python
# -*- coding: utf-8 -*-
|
|
import search_exploits.search_exploit
|
|
|
|
|
|
def exec(URL):
|
|
search_exploits.search_exploit.attack(URL)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exec()
|