Пример #1
0
def masscan():
    print """

          ,;;;,
         ;;;;;;; --> Robert David Graham
      .-'`\, '/_
    .'   \ ("`(_)
   / `-,.'\ \_/
   \  \/\  `--`
    \  \ \
     / /| |
    /_/ |_|
   ( _\ ( _\  #:##        #:##        #:##         #:##
                    #:##        #:##        #:##

    Enter IP range:

    (Examples:83.49.0.0/16, 0.0.0.0/0)
    """
    ip_range = raw_input(">>")
    print """
    Enter Protocol 

    (Examples:ssh, ftp, telnet, rdp, mysql):
    """
    protocol = raw_input(">>")
    res = mass_scan(ip_range, protocol)
    if res:
        time.sleep(5)
        main_menu()
    else:
        masscan()
Пример #2
0
def masscan():
    print """

          ,;;;,
         ;;;;;;; --> Robert David Graham
      .-'`\, '/_
    .'   \ ("`(_)
   / `-,.'\ \_/
   \  \/\  `--`
    \  \ \
     / /| |
    /_/ |_|
   ( _\ ( _\  #:##        #:##        #:##         #:##
                    #:##        #:##        #:##

    Enter IP range:

    (Examples:83.49.0.0/16, 0.0.0.0/0)
    """
    ip_range = raw_input(">>")
    print """
    Enter Protocol 

    (Examples:ssh, ftp, telnet, smb, rdp, mysql):
    """
    protocol = raw_input(">>")
    res = mass_scan(ip_range, protocol)
    if res:
        time.sleep(5)
        main_menu()
    else:
        masscan()