cycode-epmon-canary 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cycode
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: cycode-epmon-canary
3
+ Version: 1.0.0
4
+ Summary: Harmless package flagged by Cycode EPMON on purpose, so you can verify the install is protected
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://github.com/cycodehq/epmon-canary#readme
7
+ Project-URL: Repository, https://github.com/cycodehq/epmon-canary
8
+ Project-URL: Issues, https://github.com/cycodehq/epmon-canary/issues
9
+ Keywords: cycode,epmon,canary,supply-chain
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Security
13
+ Requires-Python: >=3.8
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: license-file
17
+
18
+ # cycode-epmon-canary
19
+
20
+ A harmless package that Cycode EPMON flags on purpose. Installing it on a
21
+ protected machine is blocked, which is how you verify the install:
22
+
23
+ ```sh
24
+ pip install cycode-epmon-canary
25
+ # [BLOCK] pypi cycode-epmon-canary@1.0.0 reason=flagged by cycode-intel: EPMON canary package
26
+ ```
27
+
28
+ If the install succeeds, EPMON is not wrapping your package manager. Running
29
+ the package says so:
30
+
31
+ ```sh
32
+ cycode-epmon-canary
33
+ # cycode-epmon-canary installed and ran. This package is flagged on purpose, so Cycode EPMON is not protecting this package manager.
34
+ ```
35
+
36
+ The package contains no install scripts, no dependencies and no network code.
@@ -0,0 +1,19 @@
1
+ # cycode-epmon-canary
2
+
3
+ A harmless package that Cycode EPMON flags on purpose. Installing it on a
4
+ protected machine is blocked, which is how you verify the install:
5
+
6
+ ```sh
7
+ pip install cycode-epmon-canary
8
+ # [BLOCK] pypi cycode-epmon-canary@1.0.0 reason=flagged by cycode-intel: EPMON canary package
9
+ ```
10
+
11
+ If the install succeeds, EPMON is not wrapping your package manager. Running
12
+ the package says so:
13
+
14
+ ```sh
15
+ cycode-epmon-canary
16
+ # cycode-epmon-canary installed and ran. This package is flagged on purpose, so Cycode EPMON is not protecting this package manager.
17
+ ```
18
+
19
+ The package contains no install scripts, no dependencies and no network code.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "cycode-epmon-canary"
7
+ version = "1.0.0"
8
+ description = "Harmless package flagged by Cycode EPMON on purpose, so you can verify the install is protected"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ license-files = ["LICENSE"]
12
+ requires-python = ">=3.8"
13
+ keywords = ["cycode", "epmon", "canary", "supply-chain"]
14
+ classifiers = [
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3",
17
+ "Topic :: Security",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/cycodehq/epmon-canary#readme"
22
+ Repository = "https://github.com/cycodehq/epmon-canary"
23
+ Issues = "https://github.com/cycodehq/epmon-canary/issues"
24
+
25
+ [project.scripts]
26
+ cycode-epmon-canary = "cycode_epmon_canary:main"
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,18 @@
1
+ """Harmless package that Cycode EPMON flags on purpose.
2
+
3
+ On a machine protected by EPMON the install is blocked, so this code never
4
+ runs there. If it does run, the package manager is not being wrapped.
5
+ """
6
+
7
+ MESSAGE = (
8
+ "cycode-epmon-canary installed and ran. This package is flagged on purpose, "
9
+ "so Cycode EPMON is not protecting this package manager."
10
+ )
11
+
12
+
13
+ def canary() -> str:
14
+ return MESSAGE
15
+
16
+
17
+ def main() -> None:
18
+ print(canary())
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: cycode-epmon-canary
3
+ Version: 1.0.0
4
+ Summary: Harmless package flagged by Cycode EPMON on purpose, so you can verify the install is protected
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://github.com/cycodehq/epmon-canary#readme
7
+ Project-URL: Repository, https://github.com/cycodehq/epmon-canary
8
+ Project-URL: Issues, https://github.com/cycodehq/epmon-canary/issues
9
+ Keywords: cycode,epmon,canary,supply-chain
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Security
13
+ Requires-Python: >=3.8
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: license-file
17
+
18
+ # cycode-epmon-canary
19
+
20
+ A harmless package that Cycode EPMON flags on purpose. Installing it on a
21
+ protected machine is blocked, which is how you verify the install:
22
+
23
+ ```sh
24
+ pip install cycode-epmon-canary
25
+ # [BLOCK] pypi cycode-epmon-canary@1.0.0 reason=flagged by cycode-intel: EPMON canary package
26
+ ```
27
+
28
+ If the install succeeds, EPMON is not wrapping your package manager. Running
29
+ the package says so:
30
+
31
+ ```sh
32
+ cycode-epmon-canary
33
+ # cycode-epmon-canary installed and ran. This package is flagged on purpose, so Cycode EPMON is not protecting this package manager.
34
+ ```
35
+
36
+ The package contains no install scripts, no dependencies and no network code.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/cycode_epmon_canary/__init__.py
5
+ src/cycode_epmon_canary.egg-info/PKG-INFO
6
+ src/cycode_epmon_canary.egg-info/SOURCES.txt
7
+ src/cycode_epmon_canary.egg-info/dependency_links.txt
8
+ src/cycode_epmon_canary.egg-info/entry_points.txt
9
+ src/cycode_epmon_canary.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cycode-epmon-canary = cycode_epmon_canary:main
@@ -0,0 +1 @@
1
+ cycode_epmon_canary