17 lines
135 B
Plaintext
17 lines
135 B
Plaintext
# BASH
|
|
"echo" "poc.sh"
|
|
"exit" "1"
|
|
|
|
# PYTHON
|
|
import sys
|
|
print("poc.py")
|
|
sys.exit(1)
|
|
"""
|
|
|
|
# PHP
|
|
<?php
|
|
print("poc.php");
|
|
return 1
|
|
?>
|
|
"""
|