-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAcantha.java
More file actions
executable file
·293 lines (251 loc) · 7.35 KB
/
Acantha.java
File metadata and controls
executable file
·293 lines (251 loc) · 7.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import javax.swing.JButton;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.UIManager;
import java.io.File;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.awt.Font;
import javax.swing.Timer;
import java.awt.event.*;
public class Acantha {
final static String version = "1.0.5";
final static String latestVersionURL = "http://www.domain.com/acantha/latest_version.html";
final static String latestVersionMessageURL = "http://www.domain.com/acantha/latest_version_message.html";
final static String programName = "acantha";
final static int updateInterval = 60 * 3 * 1000; // 60s * 15m * 1000ms
JFrame mainFrame = new JFrame();
JFrame updateFrame = new JFrame();
Process process;
runTor runTor = new runTor();
Properties p = System.getProperties();
String os = p.getProperty("os.name").toLowerCase();
String arch = p.getProperty("os.arch").toLowerCase();
String os_v = p.getProperty("os.version").toLowerCase();
JTextArea area = new JTextArea(7, 60); //rows, columns
JTextArea updateArea;
JButton toggle = new JButton("Start");
boolean on = false;
public Acantha() {
System.out.println(os + " " + os_v + " " + arch);
try {
copyFiles();
} catch(Exception e) {
e.printStackTrace();
}
setupMainWindow();
new checkForUpdate().start();
Timer timer = new Timer(updateInterval, new ActionListener()
{
public void actionPerformed(ActionEvent evt)
{
new checkForUpdate().start();
}
});
timer.start();
}
private void setupMainWindow() {
toggle.addActionListener(new ALButton());
area.setEditable(false);
area.setFocusable(true);
JPanel panel = new JPanel();
JScrollPane spane = new JScrollPane(area);
spane.setAutoscrolls(true);
area.setAutoscrolls(true);
panel.add(toggle);
panel.add(spane);
mainFrame.add(panel);
mainFrame.setSize(800,300);
mainFrame.setTitle("Acantha Onion Routing");
mainFrame.setVisible(true);
}
private void setupUpdateWindow(String content) {
updateArea = new JTextArea(7,50);
updateArea.setEditable(false);
updateArea.setFocusable(true);
updateArea.setWrapStyleWord(true);
updateArea.setLineWrap(true);
JPanel panel = new JPanel();
panel.add(updateArea);
updateFrame.add(panel);
updateFrame.setSize(800,300);
updateFrame.setTitle("You must update " + programName);
updateArea.setText(content);
updateFrame.setVisible(true);
}
public void copyFiles() throws Exception {
File f = new File(System.getProperty("user.home") + File.separator + "tor");
f.mkdirs();
InputStream is = null;
OutputStream out = null;
if(os.contains("windows")) {
File exe = new File(f.getCanonicalPath() + File.separator + "tor.exe");
if(exe.exists()) {
exe.delete();
exe.createNewFile();
}
is = getClass().getResourceAsStream("windows/tor.exe");
out = new FileOutputStream(exe);
}
else if(os.contains("mac")) {
is = getClass().getResourceAsStream("mac/tor");
System.out.println(f.getCanonicalPath() + File.separator + "tor");
out = new FileOutputStream(f.getCanonicalPath() + File.separator + "tor");
}
byte[] buf = new byte[1024];
int len;
while ((len = is.read(buf)) > 0) {
out.write(buf, 0, len);
}
is.close();
out.close();
if(os.contains("mac")) {
Runtime.getRuntime().exec("chmod +x " + System.getProperty("user.home") + "/tor/tor");
}
is = getClass().getResourceAsStream("torrc");
File output_torrc = new File(f + File.separator + "torrc");
if(output_torrc.exists()) {
output_torrc.delete();
output_torrc.createNewFile();
}
out = new FileOutputStream(output_torrc);
buf = new byte[1024];
while ((len = is.read(buf)) > 0) {
out.write(buf, 0, len);
}
is.close();
out.close();
}
protected void finalize() throws Throwable {
try {
endTor();
int val = process.exitValue();
} catch(Exception e) {
endTor();
}
finally {
super.finalize();
}
}
public static void main(String[] args) {
Acantha acantha = new Acantha();
}
public void endTor() {
if(on) {
process.destroy();
on = false;
toggle.setText("Start");
}
}
class runTor extends Thread {
public void run() {
try {
ShutdownHook shutdownHook = new ShutdownHook();
Runtime.getRuntime().addShutdownHook(shutdownHook);
if(os.contains("mac")) {
runMac();
}
else if(os.contains("windows")) {
runWindows();
}
on = true;
toggle.setText("Stop");
InputStream is = process.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
while (on && (line = br.readLine()) != null) {
area.append(line + "\n");
area.setCaretPosition(area.getText().length());
System.out.println(line);
Thread.sleep(200);
}
} catch(Exception e) {
e.printStackTrace();
}
}
public void runWindows() throws IOException {
String start = System.getProperty("user.home") + File.separatorChar + "tor" + File.separatorChar;
String[] args = { start + "tor.exe", "-f", start + "torrc" };
ProcessBuilder pb = new ProcessBuilder(args);
pb.directory(new File(start));
process = pb.start();
}
public void runMac() throws IOException {
String start = System.getProperty("user.home") + File.separatorChar + "tor" + File.separatorChar;
String[] args = { start + "tor", "-f", start + "torrc" };
ProcessBuilder pb = new ProcessBuilder(args);
pb.directory(new File(start));
process = pb.start();
}
}
class checkForUpdate extends Thread {
private String getPage(String url) throws Exception {
URL server = new URL(url);
HttpURLConnection connection = (HttpURLConnection) server.openConnection();
connection.connect();
InputStream in = connection.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String input = "";
String line;
while((line = reader.readLine()) != null) {
input += "\n" + line;
}
input = input.trim();
return input;
}
public void run() {
try {
System.out.println("Checking for updates...");
String latestVersion = getPage(latestVersionURL);
if(version.equals(latestVersion)) {
System.out.println("No updates found. Version reported by server: " + latestVersion);
return;
}
else {
System.out.println("New Version available: " + latestVersion);
}
String updateMessage = getPage(latestVersionMessageURL);
endTor();
mainFrame.setVisible(false); //Turn the Tor Frame off
setupUpdateWindow(updateMessage);
} catch(Exception e) {
e.printStackTrace();
System.exit(1);
}
}
}
class ShutdownHook extends Thread {
public void run() {
endTor();
}
}
class ALButton implements ActionListener {
public void actionPerformed(ActionEvent arg0) {
if(on) { // i.e., Turn Tor Off
endTor();
}
else { // i.e., Turn Tor On
area.setText("");
runTor = new runTor();
runTor.start();
}
}
}
}