Пример #1
0
def webscan_custom_dork():
    print """
        Enter your dork:

        (Example: inurl:.php?id=)
        """
    query = raw_input(">>")
    print """
        Number of URLs to extract:
        """
    number = int(raw_input(">>"))
    res = link_extract(query, number)
    res = 1
    if res:
        time.sleep(5)
        main_menu()
    else:
        webscan_custom_dork()
Пример #2
0
def webscan_custom_dork():
    print """
        Enter your dork:

        (Example: inurl:.php?id=)
        """
    query = raw_input(">>")
    print """
        Number of URLs to extract:
        """
    number = int(raw_input(">>"))
    res = link_extract(query, number)
    res = 1
    if res:
        time.sleep(5)
        main_menu()
    else:
        webscan_custom_dork()
Пример #3
0
def webscan_auto_dork():
    print """

    Enter Country Code:

    (Examples:tr,usa,ru,ca)

    """

    country_code = raw_input(">>")
    try:
        COUNTRY_CODES[country_code.upper()]
    except KeyError:
        print "Invalid selection, please try again.\n"
        webscan_auto_dork()

    print """

    Enter domain extension:

    (Example:gov,edu,org)

    """
    extension = raw_input(">>")
    try:
        pass
    except KeyError:
        print "Invalid selection, please try again.\n"
        webscan_auto_dork()

    print """
        Number of URLs to extract:
        """
    number = int(raw_input(">>"))

    query = automatic_dork(country_code, extension)
    res = link_extract(query, number)
    res = 1
    if res:
        time.sleep(5)
        main_menu()
    else:
        webscan_auto_dork()
Пример #4
0
def webscan_auto_dork():
    print """

    Enter Country Code:

    (Examples:tr,usa,ru,ca)

    """

    country_code = raw_input(">>")
    try:
        COUNTRY_CODES[country_code.upper()]
    except KeyError:
        print "Invalid selection, please try again.\n"
        webscan_auto_dork()

    print """

    Enter domain extension:

    (Example:gov,edu,org)

    """
    extension = raw_input(">>")
    try:
        pass
    except KeyError:
        print "Invalid selection, please try again.\n"
        webscan_auto_dork()

    print """
        Number of URLs to extract:
        """
    number = int(raw_input(">>"))

    query = automatic_dork(country_code, extension)
    res = link_extract(query, number)
    res = 1
    if res:
        time.sleep(5)
        main_menu()
    else:
        webscan_auto_dork()