mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
15 lines
495 B
Python
15 lines
495 B
Python
from django.db import models
|
|
|
|
class EngineType(models.Model):
|
|
engine_name = models.CharField(max_length=200)
|
|
subdomain_discovery = models.BooleanField()
|
|
dir_file_search = models.BooleanField()
|
|
subdomain_takeover = models.BooleanField()
|
|
port_scan = models.BooleanField()
|
|
fetch_url = models.BooleanField()
|
|
yaml_configuration = models.TextField()
|
|
default_engine = models.BooleanField(null=True, default=False)
|
|
|
|
def __str__(self):
|
|
return self.engine_name
|