示例#1
0
def command(event):
	import cmd_module
	command_index = 0
	s = mainTextInput.get()
	commandsUsed.append(s)
	mainEntryBox.delete(0, END)
	leftBottom_frame.printTextHistory("[*] Command: " + s)

	p=Thread(target=cmd_module.cmd_assert, args=(s,))
	p.start()
示例#2
0
def command(event):
    import cmd_module
    command_index = 0
    s = mainTextInput.get()
    commandsUsed.append(s)
    mainEntryBox.delete(0, END)
    leftBottom_frame.printTextHistory("[*] Command: " + s)

    p = Thread(target=cmd_module.cmd_assert, args=(s, ))
    p.start()
示例#3
0
def specs():
	leftTop_frame.focus()

	leftTop_frame.number_args = 1
	spec = "[?]Find IP Address Program loaded"
	text = spec + "\n[*]Enter IP Address \n"
	leftBottom_frame.printTextHistory(spec + "\n")
	leftTop_frame.printText(text)
	leftTop_frame.loadedProgram = printRecord

#"172.5.97.204"
#curl ifconfig.me
示例#4
0
def specs():
    leftTop_frame.focus()

    leftTop_frame.number_args = 1
    spec = "[?]Find IP Address Program loaded"
    text = spec + "\n[*]Enter IP Address \n"
    leftBottom_frame.printTextHistory(spec + "\n")
    leftTop_frame.printText(text)
    leftTop_frame.loadedProgram = printRecord


#"172.5.97.204"
#curl ifconfig.me