mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 14:32:57 +08:00
Set a temporary tag parser.
This commit is contained in:
parent
4552322fed
commit
8121b66b33
1 changed files with 3 additions and 0 deletions
|
@ -363,6 +363,9 @@ def start(argv):
|
|||
search.process_vhost()
|
||||
res = search.get_allhostnames()
|
||||
for x in res:
|
||||
x = re.sub(r'[[\<\/?]*[\w]*>]*','',x)
|
||||
x = re.sub('<','',x)
|
||||
x = re.sub('>','',x)
|
||||
print l + "\t" + x
|
||||
vhost.append(l + ":" + x)
|
||||
full.append(l + ":" + x)
|
||||
|
|
Loading…
Reference in a new issue