mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
Added Subdomain lookup from target
This commit is contained in:
@@ -70,8 +70,6 @@ class ScannedHost(models.Model):
|
||||
discovered_date = models.DateTimeField(blank=True, null=True)
|
||||
target_domain = models.ForeignKey(
|
||||
Domain, on_delete=models.CASCADE, null=True, blank=True)
|
||||
interesting_subdomain = models.BooleanField(null=True, default=False)
|
||||
interesting_subdomain_reason = models.CharField(max_length=100, null=True)
|
||||
|
||||
def __str__(self):
|
||||
return str(self.subdomain)
|
||||
|
||||
@@ -140,7 +140,7 @@ Target Summary for {{target.domain_name}}
|
||||
{% endif %}
|
||||
</div>
|
||||
<br>
|
||||
<a href="#" class="text-info">View all Subdomains</a>
|
||||
<a href="javascript:window.location='../../start_scan/all/subdomains?query={{target.domain_name}}';" class="text-info">View all Subdomains</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user