Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Added domain masquerading table
Browse files Browse the repository at this point in the history
Created the data_schema.sql file and added the domain masquerading schema.
  • Loading branch information
aloftus23 committed Aug 25, 2021
1 parent 05e6dd3 commit bbb294b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/pe_reports/data/data_schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
--
-- PostgreSQL database dump
--

-- Draft Database Schema to store scan data
-- Includes Domain Masquerading, Credentals Exposed, Inffered Vulns, and Dark Web data

-- Domain Masquerading Table
CREATE TABLE "DNSTwist" (
"domain-name" character varying(200),
"dns-a" character varying(100),
"dns-aaaa" character varying(100)
"dns-mx" text,
"dns-ns" text,
"fuzzer" text,
"ssdeep-score" smallint,
"date-observed" date not null,
);

0 comments on commit bbb294b

Please sign in to comment.