-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
45 lines (45 loc) · 1.5 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"id": "php/codelytv-youtube",
"name": "top-langs-not-to-use",
"authors": ["Rafa Gómez"],
"license": "MIT",
"languages": ["PHP"],
"tags": ["steganography", "programs"],
"date": "2020-08-18 16:29:41 +0200",
"spec_version": "0.3",
"source": ["https://github.com/CodelyTV/youtube-code-examples"],
"submodules": [{ "path": "youtube-code-examples", "url": "https://github.com/CodelyTV/youtube-code-examples" }],
"relations": [{ "id": "php/igorw", "type": "library" }],
"whitespace": { "extension": "ws" },
"programs": [
{
"path": "top-langs-not-to-use/src/output.php",
"aux": ["top-langs-not-to-use/src/original.php"],
"polyglot": ["PHP"],
"equivalent": "hworld.ws",
"spec_version": "0.2",
"generate": "top-langs-not-to-use/src/virus_code.ws"
},
{
"path": "top-langs-not-to-use/src/fibonacci.ws",
"equivalent": "fibonacci.ws",
"spec_version": "0.2"
}
],
"commands": [
{
"type": "steganography",
"bin": "top-langs-not-to-use/src/encoder.php",
"usage": "php $0 <decoy_file> <file>",
"output": "output.php",
"notes": "Concatenates decoy file with Whitespace program, but does not interleave spaces, so it is not executable as Whitespace, without decoding"
},
{
"type": "interpreter",
"bin": "top-langs-not-to-use/src/decoder.php",
"usage": "php $0",
"input": "output.php",
"notes": "Removes lines from file that contain non-whitespace characters and executes"
}
]
}