Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/code/py-virtual.yaml
2848 views
1
id: signed-python-code-in-virtual-env
2
3
info:
4
name: signed-python-code-in-virtual-env
5
author: pdteam
6
severity: info
7
tags: code
8
description: |
9
signed python code in virtual environment
10
11
code:
12
- engine:
13
- sh
14
- bash
15
sandbox:
16
working-dir: /tmp
17
image: python:3.14
18
source: |
19
#!/usr/bin/env python3
20
21
import sys
22
print("hello from python virtual code")
23
24
matchers:
25
- type: word
26
words:
27
- "hello from python virtual code"
28
29