-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathJavaNode.py
More file actions
25 lines (20 loc) · 737 Bytes
/
JavaNode.py
File metadata and controls
25 lines (20 loc) · 737 Bytes
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
#! /usr/bin/env python
#Proprietary CANVAS source code - use only under the license agreement
#specified in LICENSE.txt in your CANVAS distribution
#Copyright Immunity, Inc, 2002-2006
#http://www.immunityinc.com/CANVAS/ for more information
"""
JavaNode.py - used for remote connections from javaNode.jar
"""
from CANVASNode import CrossPlatformNode
from exploitutils import *
from canvaserror import *
from unixShellNode import unixShellInterfaceResolver
class JavaNode(CrossPlatformNode):
def __init__(self):
CrossPlatformNode.__init__(self)
self.nodetype="JavaNode"
self.pix="JavaNode"
self.capabilities += ["upload","download"]
self.activate_text()
self.colour="coffee"