mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:35:26 +00:00
21 lines
310 B
YAML
21 lines
310 B
YAML
|
|
id: py-nosig
|
||
|
|
|
||
|
|
info:
|
||
|
|
name: py-nosig
|
||
|
|
author: pdteam
|
||
|
|
severity: info
|
||
|
|
tags: code
|
||
|
|
description: |
|
||
|
|
Python code without signature
|
||
|
|
|
||
|
|
code:
|
||
|
|
- engine:
|
||
|
|
- py
|
||
|
|
- python3
|
||
|
|
source: |
|
||
|
|
print("py unsigned code")
|
||
|
|
|
||
|
|
matchers:
|
||
|
|
- type: word
|
||
|
|
words:
|
||
|
|
- "py unsigned code"
|