├── .gitignore ├── README.md ├── common.xsd ├── core.xsd ├── default_vocabularies.xsd ├── extensions ├── location │ └── ciq_address_3.0.xsd └── platform │ ├── README.txt │ └── cpe2.3.xsd ├── external ├── cpe_2.3 │ ├── cpe-language_2.3.xsd │ ├── cpe-naming_2.3.xsd │ └── xml.xsd └── oasis_ciq_3.0 │ ├── CommonTypes.xsd │ ├── xAL-types.xsd │ ├── xAL.xsd │ ├── xNAL-types.xsd │ ├── xNAL.xsd │ ├── xNL-types.xsd │ ├── xNL.xsd │ ├── xPIL-types.xsd │ ├── xPIL.xsd │ └── xlink-2003-12-31.xsd ├── objects ├── API_Object.xsd ├── ARP_Cache_Object.xsd ├── AS_Object.xsd ├── Account_Object.xsd ├── Address_Object.xsd ├── Archive_File_Object.xsd ├── Artifact_Object.xsd ├── Code_Object.xsd ├── Custom_Object.xsd ├── DNS_Cache_Object.xsd ├── DNS_Query_Object.xsd ├── DNS_Record_Object.xsd ├── Device_Object.xsd ├── Disk_Object.xsd ├── Disk_Partition_Object.xsd ├── Domain_Name_Object.xsd ├── Email_Message_Object.xsd ├── File_Object.xsd ├── GUI_Dialogbox_Object.xsd ├── GUI_Object.xsd ├── GUI_Window_Object.xsd ├── HTTP_Session_Object.xsd ├── Hostname_Object.xsd ├── Image_File_Object.xsd ├── Library_Object.xsd ├── Link_Object.xsd ├── Linux_Package_Object.xsd ├── Memory_Object.xsd ├── Mutex_Object.xsd ├── Network_Connection_Object.xsd ├── Network_Flow_Object.xsd ├── Network_Packet_Object.xsd ├── Network_Route_Entry_Object.xsd ├── Network_Route_Object.xsd ├── Network_Socket_Object.xsd ├── Network_Subnet_Object.xsd ├── PDF_File_Object.xsd ├── Pipe_Object.xsd ├── Port_Object.xsd ├── Process_Object.xsd ├── Product_Object.xsd ├── SMS_Message_Object.xsd ├── Semaphore_Object.xsd ├── Socket_Address_Object.xsd ├── System_Object.xsd ├── URI_Object.xsd ├── URL_History_Object.xsd ├── Unix_File_Object.xsd ├── Unix_Network_Route_Entry_Object.xsd ├── Unix_Pipe_Object.xsd ├── Unix_Process_Object.xsd ├── Unix_User_Account_Object.xsd ├── Unix_Volume_Object.xsd ├── User_Account_Object.xsd ├── User_Session_Object.xsd ├── Volume_Object.xsd ├── Whois_Object.xsd ├── Win_Computer_Account_Object.xsd ├── Win_Critical_Section_Object.xsd ├── Win_Driver_Object.xsd ├── Win_Event_Log_Object.xsd ├── Win_Event_Object.xsd ├── Win_Executable_File_Object.xsd ├── Win_File_Object.xsd ├── Win_Filemapping_Object.xsd ├── Win_Handle_Object.xsd ├── Win_Hook_Object.xsd ├── Win_Kernel_Hook_Object.xsd ├── Win_Kernel_Object.xsd ├── Win_Mailslot_Object.xsd ├── Win_Memory_Page_Region_Object.xsd ├── Win_Mutex_Object.xsd ├── Win_Network_Route_Entry_Object.xsd ├── Win_Network_Share_Object.xsd ├── Win_Pipe_Object.xsd ├── Win_Prefetch_Object.xsd ├── Win_Process_Object.xsd ├── Win_Registry_Key_Object.xsd ├── Win_Semaphore_Object.xsd ├── Win_Service_Object.xsd ├── Win_System_Object.xsd ├── Win_System_Restore_Object.xsd ├── Win_Task_Object.xsd ├── Win_Thread_Object.xsd ├── Win_User_Account_Object.xsd ├── Win_Volume_Object.xsd ├── Win_Waitable_Timer_Object.xsd └── X509_Certificate_Object.xsd └── samples ├── CybOX_Artifact_Instance.xml ├── CybOX_Artifact_Pattern.xml ├── CybOX_CreateFile_Action.xml ├── CybOX_Domain_Instance.xml ├── CybOX_Domain_Pattern.xml ├── CybOX_IPv4Address_Instance.xml ├── CybOX_IPv4Address_Pattern.xml ├── CybOX_IPv6Address_Instance.xml ├── CybOX_IPv6Address_Pattern.xml ├── CybOX_Iran-Oil_Dynamic.xml ├── CybOX_Network_Connection_HTTP_Instance.xml ├── CybOX_Network_Connection_HTTP_Pattern.xml ├── CybOX_Network_Connection_Instance.xml ├── CybOX_Network_Connection_Pattern.xml ├── CybOX_PDF_File_Instance.xml ├── CybOX_PDF_File_Pattern.xml ├── CybOX_Simple_Email_Instance.xml ├── CybOX_Simple_Email_Pattern.xml ├── CybOX_Simple_File_Instance.xml ├── CybOX_Simple_File_Pattern.xml ├── CybOX_Simple_File_Pattern_Regex.xml ├── CybOX_URL_Instance.xml ├── CybOX_URL_Pattern.xml ├── CybOX_X509_Certificate_Instance.xml └── CybOX_X509_Certificate_Pattern.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/README.md -------------------------------------------------------------------------------- /common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/common.xsd -------------------------------------------------------------------------------- /core.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/core.xsd -------------------------------------------------------------------------------- /default_vocabularies.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/default_vocabularies.xsd -------------------------------------------------------------------------------- /extensions/location/ciq_address_3.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/extensions/location/ciq_address_3.0.xsd -------------------------------------------------------------------------------- /extensions/platform/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/extensions/platform/README.txt -------------------------------------------------------------------------------- /extensions/platform/cpe2.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/extensions/platform/cpe2.3.xsd -------------------------------------------------------------------------------- /external/cpe_2.3/cpe-language_2.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/cpe_2.3/cpe-language_2.3.xsd -------------------------------------------------------------------------------- /external/cpe_2.3/cpe-naming_2.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/cpe_2.3/cpe-naming_2.3.xsd -------------------------------------------------------------------------------- /external/cpe_2.3/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/cpe_2.3/xml.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/CommonTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/CommonTypes.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xAL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xAL-types.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xAL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xAL.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xNAL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xNAL-types.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xNAL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xNAL.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xNL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xNL-types.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xNL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xNL.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xPIL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xPIL-types.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xPIL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xPIL.xsd -------------------------------------------------------------------------------- /external/oasis_ciq_3.0/xlink-2003-12-31.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/external/oasis_ciq_3.0/xlink-2003-12-31.xsd -------------------------------------------------------------------------------- /objects/API_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/API_Object.xsd -------------------------------------------------------------------------------- /objects/ARP_Cache_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/ARP_Cache_Object.xsd -------------------------------------------------------------------------------- /objects/AS_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/AS_Object.xsd -------------------------------------------------------------------------------- /objects/Account_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Account_Object.xsd -------------------------------------------------------------------------------- /objects/Address_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Address_Object.xsd -------------------------------------------------------------------------------- /objects/Archive_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Archive_File_Object.xsd -------------------------------------------------------------------------------- /objects/Artifact_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Artifact_Object.xsd -------------------------------------------------------------------------------- /objects/Code_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Code_Object.xsd -------------------------------------------------------------------------------- /objects/Custom_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Custom_Object.xsd -------------------------------------------------------------------------------- /objects/DNS_Cache_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/DNS_Cache_Object.xsd -------------------------------------------------------------------------------- /objects/DNS_Query_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/DNS_Query_Object.xsd -------------------------------------------------------------------------------- /objects/DNS_Record_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/DNS_Record_Object.xsd -------------------------------------------------------------------------------- /objects/Device_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Device_Object.xsd -------------------------------------------------------------------------------- /objects/Disk_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Disk_Object.xsd -------------------------------------------------------------------------------- /objects/Disk_Partition_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Disk_Partition_Object.xsd -------------------------------------------------------------------------------- /objects/Domain_Name_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Domain_Name_Object.xsd -------------------------------------------------------------------------------- /objects/Email_Message_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Email_Message_Object.xsd -------------------------------------------------------------------------------- /objects/File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/File_Object.xsd -------------------------------------------------------------------------------- /objects/GUI_Dialogbox_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/GUI_Dialogbox_Object.xsd -------------------------------------------------------------------------------- /objects/GUI_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/GUI_Object.xsd -------------------------------------------------------------------------------- /objects/GUI_Window_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/GUI_Window_Object.xsd -------------------------------------------------------------------------------- /objects/HTTP_Session_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/HTTP_Session_Object.xsd -------------------------------------------------------------------------------- /objects/Hostname_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Hostname_Object.xsd -------------------------------------------------------------------------------- /objects/Image_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Image_File_Object.xsd -------------------------------------------------------------------------------- /objects/Library_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Library_Object.xsd -------------------------------------------------------------------------------- /objects/Link_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Link_Object.xsd -------------------------------------------------------------------------------- /objects/Linux_Package_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Linux_Package_Object.xsd -------------------------------------------------------------------------------- /objects/Memory_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Memory_Object.xsd -------------------------------------------------------------------------------- /objects/Mutex_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Mutex_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Connection_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Connection_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Flow_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Flow_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Packet_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Packet_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Route_Entry_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Route_Entry_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Route_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Route_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Socket_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Socket_Object.xsd -------------------------------------------------------------------------------- /objects/Network_Subnet_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Network_Subnet_Object.xsd -------------------------------------------------------------------------------- /objects/PDF_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/PDF_File_Object.xsd -------------------------------------------------------------------------------- /objects/Pipe_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Pipe_Object.xsd -------------------------------------------------------------------------------- /objects/Port_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Port_Object.xsd -------------------------------------------------------------------------------- /objects/Process_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Process_Object.xsd -------------------------------------------------------------------------------- /objects/Product_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Product_Object.xsd -------------------------------------------------------------------------------- /objects/SMS_Message_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/SMS_Message_Object.xsd -------------------------------------------------------------------------------- /objects/Semaphore_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Semaphore_Object.xsd -------------------------------------------------------------------------------- /objects/Socket_Address_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Socket_Address_Object.xsd -------------------------------------------------------------------------------- /objects/System_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/System_Object.xsd -------------------------------------------------------------------------------- /objects/URI_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/URI_Object.xsd -------------------------------------------------------------------------------- /objects/URL_History_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/URL_History_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_File_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_Network_Route_Entry_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_Network_Route_Entry_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_Pipe_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_Pipe_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_Process_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_Process_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_User_Account_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_User_Account_Object.xsd -------------------------------------------------------------------------------- /objects/Unix_Volume_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Unix_Volume_Object.xsd -------------------------------------------------------------------------------- /objects/User_Account_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/User_Account_Object.xsd -------------------------------------------------------------------------------- /objects/User_Session_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/User_Session_Object.xsd -------------------------------------------------------------------------------- /objects/Volume_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Volume_Object.xsd -------------------------------------------------------------------------------- /objects/Whois_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Whois_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Computer_Account_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Computer_Account_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Critical_Section_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Critical_Section_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Driver_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Driver_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Event_Log_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Event_Log_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Event_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Event_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Executable_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Executable_File_Object.xsd -------------------------------------------------------------------------------- /objects/Win_File_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_File_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Filemapping_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Filemapping_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Handle_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Handle_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Hook_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Hook_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Kernel_Hook_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Kernel_Hook_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Kernel_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Kernel_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Mailslot_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Mailslot_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Memory_Page_Region_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Memory_Page_Region_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Mutex_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Mutex_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Network_Route_Entry_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Network_Route_Entry_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Network_Share_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Network_Share_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Pipe_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Pipe_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Prefetch_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Prefetch_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Process_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Process_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Registry_Key_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Registry_Key_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Semaphore_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Semaphore_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Service_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Service_Object.xsd -------------------------------------------------------------------------------- /objects/Win_System_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_System_Object.xsd -------------------------------------------------------------------------------- /objects/Win_System_Restore_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_System_Restore_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Task_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Task_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Thread_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Thread_Object.xsd -------------------------------------------------------------------------------- /objects/Win_User_Account_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_User_Account_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Volume_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Volume_Object.xsd -------------------------------------------------------------------------------- /objects/Win_Waitable_Timer_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/Win_Waitable_Timer_Object.xsd -------------------------------------------------------------------------------- /objects/X509_Certificate_Object.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/objects/X509_Certificate_Object.xsd -------------------------------------------------------------------------------- /samples/CybOX_Artifact_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Artifact_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Artifact_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Artifact_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_CreateFile_Action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_CreateFile_Action.xml -------------------------------------------------------------------------------- /samples/CybOX_Domain_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Domain_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Domain_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Domain_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_IPv4Address_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_IPv4Address_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_IPv4Address_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_IPv4Address_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_IPv6Address_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_IPv6Address_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_IPv6Address_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_IPv6Address_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_Iran-Oil_Dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Iran-Oil_Dynamic.xml -------------------------------------------------------------------------------- /samples/CybOX_Network_Connection_HTTP_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Network_Connection_HTTP_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Network_Connection_HTTP_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Network_Connection_HTTP_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_Network_Connection_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Network_Connection_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Network_Connection_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Network_Connection_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_PDF_File_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_PDF_File_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_PDF_File_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_PDF_File_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_Simple_Email_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Simple_Email_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Simple_Email_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Simple_Email_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_Simple_File_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Simple_File_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_Simple_File_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Simple_File_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_Simple_File_Pattern_Regex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_Simple_File_Pattern_Regex.xml -------------------------------------------------------------------------------- /samples/CybOX_URL_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_URL_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_URL_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_URL_Pattern.xml -------------------------------------------------------------------------------- /samples/CybOX_X509_Certificate_Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_X509_Certificate_Instance.xml -------------------------------------------------------------------------------- /samples/CybOX_X509_Certificate_Pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybOXProject/schemas/HEAD/samples/CybOX_X509_Certificate_Pattern.xml --------------------------------------------------------------------------------