Commit 56e2738e by Joshua Abraham Committed by Mariusz Kupidura

Change print to built-in print_info (#266)

parent b0576d88
......@@ -3,8 +3,9 @@ import re
from routersploit import (
exploits,
print_status,
print_info,
print_error,
print_status,
print_success,
print_table,
http_request,
......@@ -59,7 +60,7 @@ class Exploit(exploits.Exploit):
print_success("Credentials found!")
headers = ("Login", "Password")
print_table(headers, *creds)
print("NOTE: Admin is commonly implemented as root")
print_info("NOTE: Admin is commonly implemented as root")
else:
print_error("Credentials could not be found")
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment