Skip to content

Commit 8a60040

Browse files
committed
Updated globalConfig back to single service
Updated binaries in aob_py3
1 parent a1155d4 commit 8a60040

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+788
-367
lines changed

TA-opencti-add-on-2.0.0.tar.gz

-590 KB
Binary file not shown.

TA-opencti-add-on/bin/ta_opencti_add_on/aob_py3/_yaml/__init__.py

100755100644
File mode changed.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
Metadata-Version: 2.4
2+
Name: MarkupSafe
3+
Version: 3.0.2
4+
Summary: Safely add untrusted strings to HTML/XML markup.
5+
Maintainer-email: Pallets <[email protected]>
6+
License: Copyright 2010 Pallets
7+
8+
Redistribution and use in source and binary forms, with or without
9+
modification, are permitted provided that the following conditions are
10+
met:
11+
12+
1. Redistributions of source code must retain the above copyright
13+
notice, this list of conditions and the following disclaimer.
14+
15+
2. Redistributions in binary form must reproduce the above copyright
16+
notice, this list of conditions and the following disclaimer in the
17+
documentation and/or other materials provided with the distribution.
18+
19+
3. Neither the name of the copyright holder nor the names of its
20+
contributors may be used to endorse or promote products derived from
21+
this software without specific prior written permission.
22+
23+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
26+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34+
35+
Project-URL: Donate, https://palletsprojects.com/donate
36+
Project-URL: Documentation, https://markupsafe.palletsprojects.com/
37+
Project-URL: Changes, https://markupsafe.palletsprojects.com/changes/
38+
Project-URL: Source, https://github.com/pallets/markupsafe/
39+
Project-URL: Chat, https://discord.gg/pallets
40+
Classifier: Development Status :: 5 - Production/Stable
41+
Classifier: Environment :: Web Environment
42+
Classifier: Intended Audience :: Developers
43+
Classifier: License :: OSI Approved :: BSD License
44+
Classifier: Operating System :: OS Independent
45+
Classifier: Programming Language :: Python
46+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
47+
Classifier: Topic :: Text Processing :: Markup :: HTML
48+
Classifier: Typing :: Typed
49+
Requires-Python: >=3.9
50+
Description-Content-Type: text/markdown
51+
License-File: LICENSE.txt
52+
Dynamic: license-file
53+
54+
# MarkupSafe
55+
56+
MarkupSafe implements a text object that escapes characters so it is
57+
safe to use in HTML and XML. Characters that have special meanings are
58+
replaced so that they display as the actual characters. This mitigates
59+
injection attacks, meaning untrusted user input can safely be displayed
60+
on a page.
61+
62+
63+
## Examples
64+
65+
```pycon
66+
>>> from markupsafe import Markup, escape
67+
68+
>>> # escape replaces special characters and wraps in Markup
69+
>>> escape("<script>alert(document.cookie);</script>")
70+
Markup('&lt;script&gt;alert(document.cookie);&lt;/script&gt;')
71+
72+
>>> # wrap in Markup to mark text "safe" and prevent escaping
73+
>>> Markup("<strong>Hello</strong>")
74+
Markup('<strong>hello</strong>')
75+
76+
>>> escape(Markup("<strong>Hello</strong>"))
77+
Markup('<strong>hello</strong>')
78+
79+
>>> # Markup is a str subclass
80+
>>> # methods and operators escape their arguments
81+
>>> template = Markup("Hello <em>{name}</em>")
82+
>>> template.format(name='"World"')
83+
Markup('Hello <em>&#34;World&#34;</em>')
84+
```
85+
86+
## Donate
87+
88+
The Pallets organization develops and supports MarkupSafe and other
89+
popular packages. In order to grow the community of contributors and
90+
users, and allow the maintainers to devote more time to the projects,
91+
[please donate today][].
92+
93+
[please donate today]: https://palletsprojects.com/donate
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
../../../../../../../../../Users/jasonmaurath/Library/Caches/com.apple.python/private/var/folders/nh/_h139k853b50ypcjqv6b90780000gn/T/pip-target-xiojp3vw/lib/python/markupsafe/__init__.cpython-39.pyc,,
2+
../../../../../../../../../Users/jasonmaurath/Library/Caches/com.apple.python/private/var/folders/nh/_h139k853b50ypcjqv6b90780000gn/T/pip-target-xiojp3vw/lib/python/markupsafe/_native.cpython-39.pyc,,
3+
markupsafe-3.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
4+
markupsafe-3.0.2.dist-info/METADATA,sha256=qdabYZUzaRokSvudCLd_A9bO02FcMb5GH9KfXdCEfNc,3997
5+
markupsafe-3.0.2.dist-info/RECORD,,
6+
markupsafe-3.0.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7+
markupsafe-3.0.2.dist-info/WHEEL,sha256=Q9x5RaJ3mFaLYQ0AssqccH-ZQbedr2DD19gIJkZDXGM,112
8+
markupsafe-3.0.2.dist-info/licenses/LICENSE.txt,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475
9+
markupsafe-3.0.2.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11
10+
markupsafe/__init__.py,sha256=sr-U6_27DfaSrj5jnHYxWN-pvhM27sjlDplMDPZKm7k,13214
11+
markupsafe/_native.py,sha256=hSLs8Jmz5aqayuengJJ3kdT5PwNpBWpKrmQSdipndC8,210
12+
markupsafe/_speedups.c,sha256=O7XulmTo-epI6n2FtMVOrJXl8EAaIwD2iNYmBI5SEoQ,4149
13+
markupsafe/_speedups.cpython-39-darwin.so,sha256=YRx7_8vkLUUulpSaruAJoFtQQ96lU3u4EV6_C_LRWTU,83616
14+
markupsafe/_speedups.pyi,sha256=ENd1bYe7gbBUf2ywyYWOGUpnXOHNJ-cgTNqetlW8h5k,41
15+
markupsafe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0

TA-opencti-add-on/bin/ta_opencti_add_on/aob_py3/markupsafe-3.0.2.dist-info/REQUESTED

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Wheel-Version: 1.0
2+
Generator: setuptools (80.9.0)
3+
Root-Is-Purelib: false
4+
Tag: cp39-cp39-macosx_10_9_universal2
5+
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2010 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
markupsafe

0 commit comments

Comments
 (0)