User Input

# Prompt user for input 
test = input("Enter the IP: ")
print(test)

while True: 
	test = input("Enter the IP: ")
	print(">>> {}".format(test))
		break 
	else:
		print("exploiting...")

Last updated