Skip to content

Commit 14d7d4a

Browse files
committed
Add license header to python files
1 parent 80c22ca commit 14d7d4a

File tree

129 files changed

+767
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+767
-1
lines changed

bin/pyrdp-clonecert.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/usr/bin/python3
2+
3+
#
4+
# This file is part of the PyRDP project.
5+
# Copyright (C) 2018 GoSecure Inc.
6+
# Licensed under the GPLv3 or later.
7+
#
8+
29
import argparse
310
import logging
411
import sys

bin/pyrdp-mitm.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/usr/bin/python3
2+
3+
#
4+
# This file is part of the PyRDP project.
5+
# Copyright (C) 2018 GoSecure Inc.
6+
# Licensed under the GPLv3 or later.
7+
#
8+
29
import argparse
310
import logging
411
import logging.handlers

bin/pyrdp-player.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/usr/bin/python3
2+
3+
#
4+
# This file is part of the PyRDP project.
5+
# Copyright (C) 2018 GoSecure Inc.
6+
# Licensed under the GPLv3 or later.
7+
#
8+
29
import argparse
310
import logging
411
import logging.handlers

pyrdp/core/Config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
class Config:
28
"""
39
Static class to keep the config passed by argument to the program

pyrdp/core/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
from pyrdp.core.Config import Config
28
from pyrdp.core.helpers import decodeUTF16LE, encodeUTF16LE, getLoggerPassFilters
39
from pyrdp.core.observer import Observer, CompositeObserver

pyrdp/core/helpers.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
"""
28
File that contains helper methods to use in the library.
39
"""

pyrdp/core/observer.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
from pyrdp.pdu import PDU
28

39

pyrdp/core/packing.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
#!/usr/bin/env python2
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
27
import struct
38

49

pyrdp/core/stream.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
from io import BytesIO
28

39

pyrdp/core/subject.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#
2+
# This file is part of the PyRDP project.
3+
# Copyright (C) 2018 GoSecure Inc.
4+
# Licensed under the GPLv3 or later.
5+
#
6+
17
from pyrdp.core.observer import CompositeObserver, Observer
28

39

0 commit comments

Comments
 (0)