Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyrasite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
pyrasite
Commits
a57b1736
Commit
a57b1736
authored
Mar 19, 2013
by
Luke Macken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the copyright
parent
feb9a5e3
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
14 deletions
+14
-14
docs/conf.py
docs/conf.py
+1
-1
pyrasite/__init__.py
pyrasite/__init__.py
+1
-1
pyrasite/injector.py
pyrasite/injector.py
+1
-1
pyrasite/inspector.py
pyrasite/inspector.py
+1
-1
pyrasite/ipc.py
pyrasite/ipc.py
+1
-1
pyrasite/main.py
pyrasite/main.py
+1
-1
pyrasite/payloads/reverse_python_shell.py
pyrasite/payloads/reverse_python_shell.py
+1
-1
pyrasite/payloads/reverse_shell.py
pyrasite/payloads/reverse_shell.py
+1
-1
pyrasite/reverse.py
pyrasite/reverse.py
+1
-1
pyrasite/tests/test_code_injection.py
pyrasite/tests/test_code_injection.py
+1
-1
pyrasite/tests/test_ipc.py
pyrasite/tests/test_ipc.py
+1
-1
pyrasite/tests/utils.py
pyrasite/tests/utils.py
+1
-1
pyrasite/tools/memory_viewer.py
pyrasite/tools/memory_viewer.py
+1
-1
pyrasite/tools/shell.py
pyrasite/tools/shell.py
+1
-1
No files found.
docs/conf.py
View file @
a57b1736
...
...
@@ -43,7 +43,7 @@ master_doc = 'index'
# General information about the project.
project
=
u'pyrasite'
copyright
=
u'2011-201
2
, Red Hat, Inc., Luke Macken'
copyright
=
u'2011-201
3
, Red Hat, Inc., Luke Macken'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
pyrasite/__init__.py
View file @
a57b1736
...
...
@@ -15,7 +15,7 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
\
"""
__copyright__
=
"Copyright (C) 2011
, 2012
Red Hat, Inc."
__copyright__
=
"Copyright (C) 2011
-2013
Red Hat, Inc."
from
pyrasite.injector
import
inject
from
pyrasite.inspector
import
inspect
...
...
pyrasite/injector.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
os
import
subprocess
...
...
pyrasite/inspector.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
subprocess
...
...
pyrasite/ipc.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
"""
:mod:`pyrasite.ipc` - Pyrasite Inter-Python Communication
=========================================================
...
...
pyrasite/main.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc.
# Copyright (C) 2011
-2013
Red Hat, Inc.
import
os
import
sys
...
...
pyrasite/payloads/reverse_python_shell.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
sys
import
pyrasite
...
...
pyrasite/payloads/reverse_shell.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
pyrasite
...
...
pyrasite/reverse.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
"""
:mod:`pyrasite.reverse` - Pyrasite Reverse Connection Payload
=============================================================
...
...
pyrasite/tests/test_code_injection.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011
-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
os
import
sys
...
...
pyrasite/tests/test_ipc.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc.
# Copyright (C) 2011
-2013
Red Hat, Inc.
import
os
import
sys
...
...
pyrasite/tests/utils.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011-201
2
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 2011-201
3
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
os
import
sys
...
...
pyrasite/tools/memory_viewer.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 2011
, 2012
Red Hat, Inc.
# Copyright (C) 2011
-2013
Red Hat, Inc.
# Authors: Luke Macken <lmacken@redhat.com>
"""
An interface for visualizing the output of of the dump-memory payload.
...
...
pyrasite/tools/shell.py
View file @
a57b1736
...
...
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with pyrasite. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (C) 201
2
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
# Copyright (C) 201
1-2013
Red Hat, Inc., Luke Macken <lmacken@redhat.com>
import
sys
import
pyrasite
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment