Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/database.xml')
-rw-r--r--appinfo/database.xml111
1 files changed, 111 insertions, 0 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
new file mode 100644
index 0000000..f7f27f4
--- /dev/null
+++ b/appinfo/database.xml
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<database>
+ <name>*dbname*</name>
+ <create>true</create>
+ <overwrite>false</overwrite>
+ <charset>utf8</charset>
+ <table>
+ <name>*dbprefix*ransomware_detection_file_operation</name>
+ <declaration>
+ <field>
+ <name>id</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <autoincrement>true</autoincrement>
+ </field>
+ <field>
+ <name>user_id</name>
+ <type>text</type>
+ <notnull>true</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>path</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>original_name</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>new_name</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>type</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>mime_type</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>size</name>
+ <type>integer</type>
+ <notnull>false</notnull>
+ <length>32</length>
+ </field>
+ <field>
+ <name>corrupted</name>
+ <type>integer</type>
+ <notnull>false</notnull>
+ <length>32</length>
+ </field>
+ <field>
+ <name>timestamp</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>12</length>
+ </field>
+ <field>
+ <name>command</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>12</length>
+ </field>
+ <field>
+ <name>sequence</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>255</length>
+ </field>
+ <field>
+ <name>entropy</name>
+ <type>float</type>
+ <notnull>false</notnull>
+ </field>
+ <field>
+ <name>standard_deviation</name>
+ <type>float</type>
+ <notnull>false</notnull>
+ </field>
+ <field>
+ <name>file_name_entropy</name>
+ <type>float</type>
+ <notnull>false</notnull>
+ </field>
+ <field>
+ <name>file_class</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>64</length>
+ </field>
+ <field>
+ <name>file_name_class</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ <length>64</length>
+ </field>
+ </declaration>
+ </table>
+</database>