├── .gitignore ├── .vscode └── launch.json ├── README.md ├── docem.py ├── payloads ├── no_payload.txt ├── xss_all.txt ├── xss_tiny.txt ├── xxe_special_1.txt ├── xxe_special_2.txt ├── xxe_special_3.txt ├── xxe_special_4.txt ├── xxe_special_5.txt └── xxe_special_6.txt ├── pics ├── diag0.png ├── diag1.png ├── diag2.png └── screenshot.png ├── requirements.txt └── samples ├── clear └── example_wpsoffice_docx │ ├── [Content_Types].xml │ ├── _rels │ └── .rels │ ├── customXml │ ├── _rels │ │ └── item1.xml.rels │ ├── item1.xml │ └── itemProps1.xml │ ├── docProps │ ├── app.xml │ ├── core.xml │ └── custom.xml │ └── word │ ├── _rels │ └── document.xml.rels │ ├── document.xml │ ├── fontTable.xml │ ├── settings.xml │ ├── styles.xml │ └── theme │ └── theme1.xml └── marked ├── docx_sample_oxml_xxe ├── [Content_Types].xml ├── _rels │ └── .rels ├── docProps │ ├── app.xml │ └── core.xml └── word │ ├── _rels │ └── document.xml.rels │ ├── document.xml │ ├── fontTable.xml │ ├── settings.xml │ ├── styles.xml │ ├── stylesWithEffects.xml │ ├── theme │ └── theme1.xml │ └── webSettings.xml ├── docx_sample_oxml_xxe_mod0 ├── [Content_Types].xml ├── _rels │ └── .rels ├── docProps │ ├── app.xml │ └── core.xml └── word │ ├── _rels │ └── document.xml.rels │ ├── document.xml │ ├── fontTable.xml │ ├── settings.xml │ ├── styles.xml │ ├── stylesWithEffects.xml │ ├── theme │ └── theme1.xml │ └── webSettings.xml ├── docx_sample_oxml_xxe_mod1 ├── [Content_Types].xml ├── _rels │ └── .rels ├── docProps │ ├── app.xml │ └── core.xml └── word │ ├── _rels │ └── document.xml.rels │ ├── document.xml │ ├── fontTable.xml │ ├── settings.xml │ ├── styles.xml │ ├── stylesWithEffects.xml │ ├── theme │ └── theme1.xml │ └── webSettings.xml ├── sample_oxml_xxe.docx ├── sample_oxml_xxe_mod0.docx ├── sample_oxml_xxe_mod1.docx ├── xlsx_created_in_wps.xlsx ├── xlsx_created_in_wps ├── [Content_Types].xml ├── _rels │ └── .rels ├── docProps │ ├── app.xml │ ├── core.xml │ └── custom.xml └── xl │ ├── _rels │ └── workbook.xml.rels │ ├── sharedStrings.xml │ ├── styles.xml │ ├── theme │ └── theme1.xml │ ├── workbook.xml │ └── worksheets │ └── sheet1.xml ├── xlsx_created_in_wps2.xlsx └── xlsx_created_in_wps2_basic ├── [Content_Types].xml ├── _rels └── .rels ├── docProps ├── app.xml ├── core.xml └── custom.xml └── xl ├── _rels └── workbook.xml.rels ├── sharedStrings.xml ├── styles.xml ├── theme └── theme1.xml ├── workbook.xml └── worksheets └── sheet1.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/README.md -------------------------------------------------------------------------------- /docem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/docem.py -------------------------------------------------------------------------------- /payloads/no_payload.txt: -------------------------------------------------------------------------------- 1 | no_payload -------------------------------------------------------------------------------- /payloads/xss_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xss_all.txt -------------------------------------------------------------------------------- /payloads/xss_tiny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xss_tiny.txt -------------------------------------------------------------------------------- /payloads/xxe_special_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_1.txt -------------------------------------------------------------------------------- /payloads/xxe_special_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_2.txt -------------------------------------------------------------------------------- /payloads/xxe_special_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_3.txt -------------------------------------------------------------------------------- /payloads/xxe_special_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_4.txt -------------------------------------------------------------------------------- /payloads/xxe_special_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_5.txt -------------------------------------------------------------------------------- /payloads/xxe_special_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/payloads/xxe_special_6.txt -------------------------------------------------------------------------------- /pics/diag0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/pics/diag0.png -------------------------------------------------------------------------------- /pics/diag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/pics/diag1.png -------------------------------------------------------------------------------- /pics/diag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/pics/diag2.png -------------------------------------------------------------------------------- /pics/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/pics/screenshot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/[Content_Types].xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/_rels/.rels -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/customXml/_rels/item1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/customXml/_rels/item1.xml.rels -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/customXml/item1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/customXml/item1.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/customXml/itemProps1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/customXml/itemProps1.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/docProps/app.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/docProps/core.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/docProps/custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/docProps/custom.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/document.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/fontTable.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/settings.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/styles.xml -------------------------------------------------------------------------------- /samples/clear/example_wpsoffice_docx/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/clear/example_wpsoffice_docx/word/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/[Content_Types].xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/_rels/.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/docProps/app.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/docProps/core.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/document.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/fontTable.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/settings.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/styles.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/stylesWithEffects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/stylesWithEffects.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe/word/webSettings.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/[Content_Types].xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/_rels/.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/docProps/app.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/docProps/core.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/document.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/fontTable.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/settings.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/styles.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/stylesWithEffects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/stylesWithEffects.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod0/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod0/word/webSettings.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/[Content_Types].xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/_rels/.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/docProps/app.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/docProps/core.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/_rels/document.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/_rels/document.xml.rels -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/document.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/fontTable.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/settings.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/styles.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/stylesWithEffects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/stylesWithEffects.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/docx_sample_oxml_xxe_mod1/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/docx_sample_oxml_xxe_mod1/word/webSettings.xml -------------------------------------------------------------------------------- /samples/marked/sample_oxml_xxe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/sample_oxml_xxe.docx -------------------------------------------------------------------------------- /samples/marked/sample_oxml_xxe_mod0.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/sample_oxml_xxe_mod0.docx -------------------------------------------------------------------------------- /samples/marked/sample_oxml_xxe_mod1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/sample_oxml_xxe_mod1.docx -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps.xlsx -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/[Content_Types].xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/_rels/.rels -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/docProps/app.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/docProps/core.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/docProps/custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/docProps/custom.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/_rels/workbook.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/_rels/workbook.xml.rels -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/sharedStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/sharedStrings.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/styles.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/workbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/workbook.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps/xl/worksheets/sheet1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps/xl/worksheets/sheet1.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2.xlsx -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/[Content_Types].xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/_rels/.rels -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/docProps/app.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/docProps/core.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/docProps/custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/docProps/custom.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/_rels/workbook.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/_rels/workbook.xml.rels -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/sharedStrings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/sharedStrings.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/styles.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/theme/theme1.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/workbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/workbook.xml -------------------------------------------------------------------------------- /samples/marked/xlsx_created_in_wps2_basic/xl/worksheets/sheet1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitel1st/docem/HEAD/samples/marked/xlsx_created_in_wps2_basic/xl/worksheets/sheet1.xml --------------------------------------------------------------------------------