-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.txt
74 lines (64 loc) · 2.37 KB
/
Client.txt
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
import java.io.*;
import java.net.*;
class Client {
public static void main(String[] args)throws IOException
{
Runtime runtime = Runtime.getRuntime();
String cmds[] = {"cmd", "/c", "tasklist"};
Process proc = runtime.exec(cmds);
InputStream inputstream = proc.getInputStream();
InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
String line;
boolean s = true;
int linecount=0;
int i=0; ;
while ((line = bufferedreader.readLine()) != null ) {
{
linecount++;
int indexfound=line.indexOf("avp.exe");
if (indexfound>-1)
{
s=true;
i++;
}
else{
s=false;
}
}
if(s && i==1){
final int PORT_NUMBER = 44827;
final String HOSTNAME = "192.168.1.6";
//Attempt to connect
try {
Socket sock = new Socket(HOSTNAME, PORT_NUMBER);
PrintWriter out = new PrintWriter(sock.getOutputStream(), true);
//Output
out.println(s);
out.flush();
out.close();
sock.close();
} catch(Exception e) {
e.printStackTrace();
}
}
else{
boolean d= false;
final int PORT_NUMBER = 44827;
final String HOSTNAME = "192.168.1.6";
//Attempt to connect
try {
Socket sock = new Socket(HOSTNAME, PORT_NUMBER);
PrintWriter out = new PrintWriter(sock.getOutputStream(), true);
//Output
out.println(d);
out.flush();
out.close();
sock.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}
}
}