mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 06:53:05 +08:00
Fixes another Pep8 warning even though it looks wrong in the code it prints correctly in terminal
This commit is contained in:
parent
243f3b50ea
commit
cabc911697
2 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@
|
||||||
* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *
|
* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *
|
||||||
* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *
|
* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *
|
||||||
* *
|
* *
|
||||||
* theHarvester 3.0.6 v307 *
|
* theHarvester 3.0.6 v308 *
|
||||||
* Coded by Christian Martorella *
|
* Coded by Christian Martorella *
|
||||||
* Edge-Security Research *
|
* Edge-Security Research *
|
||||||
* cmartorella@edge-security.com *
|
* cmartorella@edge-security.com *
|
||||||
|
|
10
lib/core.py
10
lib/core.py
|
@ -45,12 +45,12 @@ def intelx_key():
|
||||||
def banner():
|
def banner():
|
||||||
print('\n\033[93m*******************************************************************')
|
print('\n\033[93m*******************************************************************')
|
||||||
print("* _ _ _ *")
|
print("* _ _ _ *")
|
||||||
print("* | |_| |__ ___ /\ /\__ _ _ ____ _____ ___| |_ ___ _ __ *")
|
print(r"* | |_| |__ ___ /\ /\__ _ _ ____ _____ ___| |_ ___ _ __ *")
|
||||||
print("* | __| _ \ / _ \ / /_/ / _` | '__\ \ / / _ \/ __| __/ _ \ '__| *")
|
print(r"* | __| _ \ / _ \ / /_/ / _` | '__\ \ / / _ \/ __| __/ _ \ '__| *")
|
||||||
print("* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *")
|
print(r"* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *")
|
||||||
print("* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *")
|
print(r"* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *")
|
||||||
print('* *')
|
print('* *')
|
||||||
print('* theHarvester 3.0.6 v307 *')
|
print('* theHarvester 3.0.6 v308 *')
|
||||||
print('* Coded by Christian Martorella *')
|
print('* Coded by Christian Martorella *')
|
||||||
print('* Edge-Security Research *')
|
print('* Edge-Security Research *')
|
||||||
print('* cmartorella@edge-security.com *')
|
print('* cmartorella@edge-security.com *')
|
||||||
|
|
Loading…
Reference in a new issue