diff --git a/dedescan.py b/dedescan.py new file mode 100644 index 0000000..de8a3c4 --- /dev/null +++ b/dedescan.py @@ -0,0 +1,34 @@ +from termcolor import cprint +from lib.lib import check + +def main(): + title = ''' + + ... ... + ... ... + ... ... + ... ... + ... ... + ........ ....... ........ ....... ....... ...... ...... ........ + ... .... .... .... ... .... .... ... .... ... ... .... ... ... .... .... + .... .... ... ... ... ... ... ... ... ... ... . ... ... ... + .... ... ......... ... ... .......... .... ... ..... ... ... + .... ... ... ... ... .... ...... ... ........ ... ... + .... .... ... ... ... .... .... ... ... .... ... ... ... + ... .... .... ... .... ... ... .... ... ... .... ... .... ... ... ... + ......... ........ ........ ....... ........ ........ ........ ... ... + ....... ..... ....... ..... ..... .... ........ ... ... + + ''' + author = ''' + author by : lengyi + ''' + cprint(title, "blue") + cprint(author, "green") + + target = input("Please enter the url you need to detect: ") + start = check(target) + start.poc() + +if __name__ == '__main__': + main()