示例#1
0
def main():
        global target
        while True:
                try:
                        web = input(w+'saydog('+r+'webtoolkit/reiplookup'+w+') > ')
                        if web == 'help':
                                print('')
                                print('REVERSE IP LOOKUP')
                                print('-----------------')
                                print('Looping and reverse IP')
                                print('')
                                print('command                                   example')
                                print('-------                                   -------')
                                print('set target [target]         set target target.com')
                                print('run,go,exploit                            exploit')
                                print('')
                        elif 'set target' in web:
                                target = web.split()[(-1)]
                                print('target > '+target)
                        elif web == 'run' or web == 'go' or web == 'exploit':
                                print(b+'[-]'+w+' Script is running for exploit '+target)
                                print(b+'[-]'+w+' please wait for a few minutes')
                                x = apiweb.apiweb(10, target)
                                print(x)
                        elif web == 'back':
                                sys.exit(0)
                        elif web == 'exit':
                                exit()
                        elif web == 'clear':
                                os.system('clear')
                        else:
                                corrupt()
                except KeyboardInterrupt:
                        exit()
def menu():
    print("")
    target = str(input(b + "[+]" + w + " Domain target: "))
    print(b + "[+]" + w + " Trying to find host DNS for " + target)
    time.sleep(5)
    x = apiweb.apiweb(5, target)
    print(w + "=================================================")
    print(g, x)
    print(w + "=================================================")
    print("")
    print(b + "[+]" + w + " Result for:- " + target)
    print("")
    dog = str(input(w + "[ enter ]"))
    if dog == " ":
        sys.exit(0)
    else:
        sys.exit(0)
示例#3
0
def main():
    target = str(input(w + "[ Web Target ]=> "))
    print("")
    print(b + '[+]' + w + ' Scanning dns for ' + target)
    time.sleep(5)
    x = apiweb.apiweb(3, target)
    print("")
    print(w + "=================================================")
    print(g, x)
    print(w + "=================================================")
    print("")
    print(b + '[+]' + w + ' Done')
    print("")
    dog = str(input(w + "[ enter ]"))
    if dog == " ":
        sys.exit(0)
    else:
        sys.exit(0)
示例#4
0
def menu():
    print("")
    target = str(input(b + "[+]" + w + " IP target: "))
    print(b + "[+]" + w + " Trying to lookup location for " + target)
    time.sleep(5)
    x = apiweb.apiweb(9, target)
    print("")
    print(w + "=================================================")
    print(g, x)
    print(w + "=================================================")
    print("")
    print(b + "[+]" + w + " Result for:- " + target)
    print("")
    dog = str(input(w + "[ enter ]"))
    if dog == " ":
        sys.exit(0)
    else:
        sys.exit(0)
示例#5
0
def main():
    target = str(input(w + "[ Ip Target ]=> "))
    print("")
    print(b + '[+]' + w + ' Reverse ip for ' + target)
    time.sleep(5)
    x = apiweb.apiweb(10, target)
    print("")
    print(w + "=================================================")
    print(g, x)
    print(w + "=================================================")
    print("")
    print(b + '[+]' + w + ' Done')
    print("")
    dog = str(input(w + "[ enter ]"))
    if dog == " ":
        sys.exit(0)
    else:
        sys.exit(0)
def main():
    global target
    while True:
        try:
            web = input(w + 'saydog(' + r + 'webtoolkit/findhost_dns' + w +
                        ') > ')
            if web == 'help':
                print('')
                print('FINDHOST DNS')
                print('------------')
                print('Finding host DNS')
                print('')
                print('command                                   example')
                print('-------                                   -------')
                print('set target [target]         set target target.com')
                print('run,go,exploit                            exploit')
                print('')
            elif 'set target' in web:
                target = web.split()[(-1)]
                print('target > ' + target)
            elif web == 'run' or web == 'go' or web == 'exploit':
                print(b + '[-]' + w + ' Script is running for exploit ' +
                      target)
                print(b + '[-]' + w + ' please wait for a few minutes')
                x = apiweb.apiweb(5, target)
                print(x)
            elif web == 'back':
                sys.exit(0)
            elif web == 'exit':
                exit()
            elif web == 'clear':
                os.system('clear')
            else:
                corrupt()
        except KeyboardInterrupt:
            exit()