mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-19 00:07:44 +02:00
29 lines
938 B
Python
29 lines
938 B
Python
# Generated by Django 3.0.7 on 2020-07-16 08:27
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='EngineType',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('scan_type_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(default=False, null=True)),
|
|
],
|
|
),
|
|
]
|