Skip to content

Commit c0e78be

Browse files
author
Corb3nik
committed
Adds missing licenses
1 parent b2575c2 commit c0e78be

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

definitions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22

3+
# Copyright (c) 2016 GoSecure Inc.
4+
35
OPCODES = {
46
0 : "NOP",
57
1 : "ADD",

opcache_disassembler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22

3+
# Copyright (c) 2016 GoSecure Inc.
4+
35
from __future__ import unicode_literals
46
from opcache_parser import *
57
from treelib import Node, Tree

opcache_malware_detect.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22

3+
# Copyright (c) 2016 GoSecure Inc.
4+
35
from opcache_disassembler import OPcacheDisassembler
46
import sys
57
import os

opcache_parser.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22

3+
# Copyright (c) 2016 GoSecure Inc.
4+
35
from construct import *
46
from definitions import *
57

0 commit comments

Comments
 (0)