-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAChoirX.hta
1008 lines (851 loc) · 31.5 KB
/
AChoirX.hta
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>AChoirX GUI 0.80</title>
<HTA:APPLICATION ID="AChoirXGUI"
APPLICATIONNAME="AChoirX GUI"
BORDER="Yes"
CAPTION="Yes"
SHOWINTASKBAR="Yes"
SINGLEINSTANCE="Yes"
SYSMENU="Yes"
SCROLL="no"
WINDOWSTATE="normal">
<script type="text/javascript">
self.moveTo(10,10);
self.resizeTo(1100,860);
var panels = new Array("","panel1","panel2","panel3","panel4","panel5","panel6","panel7");
function panel(tab)
{
for (i=1; i<panels.length; i++)
{
if (i == tab)
{
document.getElementById("tab"+i).className = "tabs tabs1";
document.getElementById("panel"+i).style.display = "block";
}
else
{
document.getElementById("tab"+i).className = "tabs tabs0";
document.getElementById("panel"+i).style.display = "none";
}
}
}
// Run AChoirX Local. Save Artifacts Local
function RunAChoir(Bits)
{
var rbutns = document.getElementsByName("rbtn");
var ScrName = " /ini:AChoir.acq" ;
var ScrBits = "A-AChoirX.exe";
var RunMe = 1 ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (rbutns[0].checked == true)
{
ScrName = ScrBits + " /ini:AChoir.acq" ;
}
else if (rbutns[1].checked == true)
{
ScrName = ScrBits + " /ini:Scripts\\AchZip.acq" ;
}
else if (rbutns[2].checked == true)
{
ScrName = ScrBits + " /ini:NoMem.acq" ;
}
else if (rbutns[3].checked == true)
{
ScrName = ScrBits + " /ini:Scripts\\AchZipNoMem.acq" ;
}
else if (rbutns[4].checked == true)
{
ScrName = ScrBits + " /ini:Scripts\\PlasoX.acq" ;
}
else if (rbutns[5].checked == true)
{
ScrName = ScrBits + " /ini:Build.acq" ;
}
else
{
RunMe = 0;
alert("Invalid Script, Please Try Again.");
}
if (RunMe == 1)
{
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
self.close()
}
}
// Run AChoirX Local - Save Artifacts to Remote Server
function RunLRACh(Bits)
{
var ScrName = " /ini:Scripts\\AChZipSFTP.Acq" ;
var ScrBits = "A-AChoir.exe";
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (SFTP2orS3.value == "S3")
{
// VR0 = S3 Bucket
// VR1 = S3 Region
// VR2 = S3 AWS ID
// VR3 = S3 Secret Key
ScrName = " /ini:Scripts\\AChZipS3.Acq" ;
ScrName = ScrBits + ScrName + " /VR0:" + Server2Name.value + " /VR1:" + Server2Region.value + " /VR2:" + Serv2Usr.value + " /VR3:" + Serv2Pwd.value ;
}
else
{
// VR0 = SFTP Server
// VR1 = SFTP UserId
// VR2 = SFTP Password
ScrName = " /ini:Scripts\\AChZipSFTP.Acq" ;
ScrName = ScrBits + ScrName + " /VR0:" + Server2Name.value + " /VR1:" + Serv2Usr.value + " /VR2:" + Serv2Pwd.value ;
}
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Run AChoirX Remotely using PSExec
function RunRemot(Bits)
{
var ScrName = " /ini:Scripts\\RemotChk.acq" ;
var ScrBits = "A-AChoirX.exe" ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
ScrName = ScrBits + ScrName + " /VR0:" + Host3Name.value + " /VR1:" + Run3ACQ.value ;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Saves the Artifacts to remote AChoirX Server
function RunRRACh(Bits)
{
var ScrName = " /ini:Scripts\\RemotChkR.acq" ;
var ScrBits = "A-AChoirX.exe" ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (SFTP4orS3.value == "S3")
{
// VR0 = Host4Name to Run On
// VR1 = Run4ACQ Script to Run
// VR2 = S3 Bucket
// VR3 = S3 Region
// VR4 = S3 AWS ID
// VR5 = S3 Secret Key
ScrName = ScrBits + ScrName + " /VR0:" + Host4Name.value + " /VR1:" + Run4ACQ.value + " /VR2:" + Server4Name.value + " /VR3:" + Server4Region.value + " /VR4:" + Serv4Usr.value + " /VR5:" + Serv4Pwd.value ;
}
else
{
// VR0 = Host4Name to Run On
// VR1 = Run4ACQ Script to Run
// VR2 = SFTP Server
// VR3 = SFTP UserId
// VR4 = SFTP Password
ScrName = ScrBits + ScrName + " /VR0:" + Host4Name.value + " /VR1:" + Run4ACQ.value + " /VR2:" + Server4Name.value + " /VR3:" + Serv4Usr.value + " /VR4:" + Serv4Pwd.value + " /VR5:none" ;
}
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Saves the Artifacts to remote AChoirX Server from Multiple Remote Machines
function RunMRACh(Bits)
{
var ScrName = " /ini:Scripts\\RemotChkMR.acq" ;
var ScrBits = "A-AChoirX.exe" ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (SFTP5orS3.value == "S3")
{
// VR0 = File with List of Endpoints
// VR1 = Run5ACQ Script to Run
// VR2 = S3 Bucket
// VR3 = S3 Region
// VR4 = S3 AWS ID
// VR5 = S3 Secret Key
ScrName = ScrBits + ScrName + " /VR0:" + File5Name.value + " /VR1:" + Run5ACQ.value + " /VR2:" + Server5Name.value + " /VR4:" + Serv5Usr.value + " /VR5:" + Serv5Pwd.value + " /VR3:" + Server5Region.value ;
}
else
{
// VR0 = File with List of Endpoints
// VR1 = Run5ACQ Script to Run
// VR2 = SFTP Server
// VR3 = SFTP UserId
// VR4 = SFTP Password
ScrName = ScrBits + ScrName + " /VR0:" + File5Name.value + " /VR1:" + Run5ACQ.value + " /VR2:" + Server5Name.value + " /VR3:" + Serv5Usr.value + " /VR4:"+ Serv5Pwd.value + " /VR5:none" ;
}
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Run AChoirX GXR (Remotely Hosted Toolkit)
function RunGXR(Bits)
{
var ScrName = " /ini:AChoir.acq" ;
var ScrBits = "A-AChoirX.exe";
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
ScrName = ScrBits + ScrName + " /GXR:" + File6Name.value ;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Run AChoirX GXR on Remote Machine (Remotely Hosted Toolkit)
function RunGXRR(Bits)
{
var ScrName = " /ini:Scripts\\RemotChkGXR.acq" ;
var ScrBits = "A-AChoirX.exe";
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
ScrName = ScrBits + ScrName + " /VR0:" + Host6Name.value + " /VR1:" + File6Name2.value ;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Run AChoirX in Client ot Server Mode
function RunCLISRV(Bits)
{
var ScrName = " /ini:AChoir.Acq" ;
var ScrBits = "A-AChoirX.exe" ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (CLISRV7LocRem.value == "Local")
{
if (CLISRV7Mode.value == "CLI")
{
ScrName = ScrBits + ScrName + " /PWD:" + CLISRV7Pwd.value + " /CLI:" + CLISRV7IP.value + ":" + CLISRV7Port.value ;
}
else
{
ScrName = ScrBits + ScrName + " /PWD:" + CLISRV7Pwd.value + " /SRV:" + CLISRV7IP.value + ":" + CLISRV7Port.value ;
}
}
else
{
var ScrName = " /ini:Scripts\\RemotChkCli.acq" ;
var ScrBits = "A-AChoirX.exe" ;
if (Bits == 32)
{
ScrBits = "A-AChoirX32.exe" ;
}
else if (Bits == 64)
{
ScrBits = "A-AChoirX.exe" ;
}
if (CLISRV7Mode.value == "CLI")
{
ScrName = ScrBits + ScrName + " /VR0:" + CLISRV7RHost.value + " /VR1:" + CLISRV7Pwd.value + " /VR2:/CLI:" + CLISRV7IP.value + ":" + CLISRV7Port.value ;
}
else
{
ScrName = ScrBits + ScrName + " /VR0:" + CLISRV7RHost.value + " /VR1:" + CLISRV7Pwd.value + " /VR2:/SRV:" + CLISRV7IP.value + ":" + CLISRV7Port.value ;
}
}
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
// Exit HTA
function ExitMe()
{
self.close()
}
// Edit The List of Remote Hosts using Notepad
function EditList()
{
var ScrName = "NotePad.exe " + File5Name.value ;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(ScrName, 1, false);
}
</script>
<style type="text/css">
body,td,th {
font-family:Arial;
padding: 5px;
}
.head {
font-size:110%;
font-weight:bold;
color:white;
}
.panel {
background-color: white;
border: solid 1px black;
height: 700px;
padding: 5px;
position: relative;
width: 1000px;
z-index: 0;
}
.tabs {
border-collapse: collapse;
color: black;
cursor: pointer;
cursor: hand;
font-family: arial;
font-size: 12pt;
font-weight: bold;
margin-top: 4px;
padding: 2px 4px 0px 4px;
position: relative;
text-align: center;
text-decoration: none;
z-index: 1;
}
.tabs0 {
color: white;
background-color: gray;
border: solid 1px black;
}
.tabs1 {
color: black;
background-color: white;
border-color: black black white black;
border-style: solid solid solid solid;
border-width: 1px 1px 1px 1px;
}
</style>
</head>
<body bgcolor=#879dbd>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="1000">
<tr valign="top">
<td align="right" colspan="2">
<span class="head">AChoirX GUI 0.80</span>
<br>
</td>
</tr>
<tr valign="top">
<td colspan="2">
<span class="tabs tabs1" id="tab1" onclick="panel(1)">Local->Local</span>
<span class="tabs tabs0" id="tab2" onclick="panel(2)">Local->Remote</span>
<span class="tabs tabs0" id="tab3" onclick="panel(3)">Remote->Local</span>
<span class="tabs tabs0" id="tab4" onclick="panel(4)">Remote->Remote</span>
<span class="tabs tabs0" id="tab5" onclick="panel(5)">Multi-Remote</span>
<span class="tabs tabs0" id="tab6" onclick="panel(6)">GXR</span>
<span class="tabs tabs0" id="tab7" onclick="panel(7)">Cli/Srv</span>
<div class="panel" id="panel1" style="display:block">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF"><TR><TD>
<p>
This Tab runs LOCAL AChoirX scripts on the LOCAL machine, and saves the
artifacts to a LOCALLY attached drive.
</p>
<p>
Please Note:
Running the AChoirX Scripts from a Command Prompt will give the same results.
When running AChoirX in an environment where minimal impact is needed - This GUI
should not be used. However, in environments where a menu driven GUI is desired,
this GUI helps to make AChoirX easier to use.
</p>
</TD></TR></TABLE>
<p>
<TABLE Width="100%" border="0" ><TR><TD>
<font color="#000000"><i><fieldset><legend>Select A Script</legend></i></font>
<p>
<input type="radio" checked name="rbtn" value="0"> Default Script -
Default AChoirX Script. It gathers as much information as possible
</p>
<p>
<input type="radio" name="rbtn" value="3"> Default Zipped -
Same as the Default script, but zipped into a single file.
</p>
<p>
<input type="radio" name="rbtn" value="1"> No Memory -
Gathers the same Artifacts as the Default Script EXCEPT Memory
</p>
<p>
<input type="radio" name="rbtn" value="34"> No Memory Zipped -
Same as the No Memory script, but zipped into a single file.
</p>
<p>
<input type="radio" name="rbtn" value="2"> PlasoX -
Run Plaso (Log2Timeline) on an AChoirX Collection
</p>
<p>
<input type="radio" name="rbtn" value="7"> Build -
Re-Run the AChoirX Toolkit Builder (Use with CAUTION)
</p>
<BR><BR>
<p>
<input type="button" value="AChoirX-32" onclick="RunAChoir(32);"/> -
<input type="button" value="AChoirX-64" onclick="RunAChoir(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</p>
</TD></TR></TABLE>
<p>
<Font Size = small>
<b><i>Note 1: </b></i>If you're not sure if the OS is 32 or 64 Bit, run AChoirX 32 Bit<br>
<b><i>Note 2: </b></i>This GUI will call A-AChoirX as an Admin.
</Font>
</p>
</td>
</tr>
</table>
</div>
<div class="panel" id="panel2" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF"><TR><TD>
<p>
This Tab runs AChoirX on the Local Machine and Uploads the Telemetry
and Artifacts to either an SFTP Server or an S3 Bucket.
</p>
<p>
Please Note:
Running the AChoirX Script from a Command Prompt will give the same results.
When running AChoirX in an environment where minimal impact is needed - This GUI
should not be used. However, in environments where a menu driven GUI is desired,
this GUI helps to make AChoirX easier to use.
</p>
</TD></TR></TABLE>
<p>
<TABLE Width="100%" border="0"><TR><TD>
<font color="#000000"><i><fieldset><legend>Fill In All Fields</legend></i></font>
<TABLE Width="100%" border="1" cellspacing="20" cellpadding="10">
<TR>
<TD ColSpan=2>
Select either S3 or SFTP Upload:
<select size="1" name="SFTP2orS3">
<option value="S3" selected>S3</option>
<option value="SFTP">SFTP</option>
</select>
</TD
</TR>
<TR>
<TD>
User/KeyID:
<input type="text" size="25" name="Serv2Usr" value=""> <br>
<font size=-1><i>Enter SFTP UserID or S3 AWS Key ID</i></font>
</TD>
<TD>
Passwd/Key:
<input type="password" size="25" name="Serv2Pwd" value=""> <br>
<font size=-1><i>Enter SFTP Pasword or S3 Secret Key</i></font>
</TD>
</TR>
<TR>
<TD>
SFTP Srvr or S3 Bucket:
<input type="text" size="25" name="Server2Name" value=""> <br>
<font size=-1><i>Enter the SFTP Server or S3 Bucket to send the data</i></font>
</TD>
<TD>
S3 Region:
<input type="text" size="25" name="Server2Region" value=""> <br>
<font size=-1><i>If you are uploading to S3 - Enter the S3 Bucket Region</i></font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
<input type="button" value="AChoir-32" onclick="RunLRACh(32);"/> -
<input type="button" value="AChoir-64" onclick="RunLRACh(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</TD>
</TR>
</TABLE>
</TD></TR></TABLE>
<p><br>
<Font Size = small>
<b><i>Note 1: </b></i>If you're not sure if the OS is 32 or 64 Bit, run AChoirX 32 Bit<br>
<b><i>Note 2: </b></i>This GUI will call AChoirX as an Admin
</Font>
</p>
</td>
</tr>
</table>
</div>
<div class="panel" id="panel3" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="0" bgcolor="#FFFFEF"><TR><TD>
<p>
This Tab is meant to simplify running an AChoirX Remote Script on a remote
computer using PSExec. It will push A-AChoirX to the remote computer and
store the Telemetry and Artifacts in C:\Windows\Temp on the remote machine.
</p>
</td></tr></table>
<p>
<TABLE Width="100%" border="0"><TR><TD>
<font color="#000000"><i><fieldset><legend>Fill In All Fields</legend></i></font>
<p>
AChoirX Script to Run:
<select size="1" name="Run3ACQ">
<option value="AChoir.ACQ" selected>AChoir</option>
<option value="Scripts\\AChZip.ACQ">AChZip</option>
<option value="NoMem.ACQ">NoMem</option>
<option value="Scripts\\AChZipNoMem.ACQ">AChZipNoMem</option>
</select>
</p>
<p>
Host to Triage:
<input type="text" size="25" name="Host3Name" value="MyHost"> <br>
<font size=-1><i>This is the Remote Host you want to Triage.
The Artifacts and Telemetry will be saved Locally on that machine.</i></font>
</p>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<p>
<input type="button" value="AChoir-32" onclick="RunRemot(32);"/> -
<input type="button" value="AChoir-64" onclick="RunRemot(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</p>
</TD></TR></TABLE>
<br>
<p>
<b><i>Important Note: </b></i>This GUI will call the 64-Bit AChoirX Program Remotely as Admin.
</p>
</td>
</tr>
</table>
</div>
<div class="panel" id="panel4" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF">
<TR>
<TD>
<p>
This Tab is meant to simplify running an AChoirX Remote Script on a remote
computer using PSExec. It will Upload the Telemetry and Artifacts to either
an SFTP Server or an S3 Bucket.
</p>
</td>
</tr>
</table>
<p>
<TABLE Width="100%" border="0">
<TR>
<TD>
<font color="#000000"><i><fieldset><legend>Fill In All Fields</legend></i></font>
<TABLE Width="100%" border="1" cellspacing="20" cellpadding="10">
<TR>
<TD ColSpan=2>
AChoirX Script to Run on Remote Machine:
<select size="1" name="Run4ACQ">
<option value="Scripts\\AChZipS3.ACQ" selected>AChZipS3</option>
<option value="Scripts\\AChZipS3NoMem.ACQ">AChZipS3NoMem</option>
<option value="Scripts\\AChZipSFTP.ACQ">AChZipSFTP</option>
<option value="Scripts\\AChZipSFTPNoMem.ACQ">AChZipSFTPNoMem</option>
</select>
</TD>
</TR>
<TR>
<TD ColSpan=2>
Host to Triage:
<input type="text" size="25" name="Host4Name" value="MyHost"> <br>
<font size=-1><i>This is the Remote Host you want to Triage</i></Font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
Select either S3 or SFTP Upload:
<select size="1" name="SFTP4orS3">
<option value="S3" selected>S3</option>
<option value="SFTP">SFTP</option>
</select>
</TD>
</TR>
<TR>
<TD>
User/KeyID:
<input type="text" size="25" name="Serv4Usr" value=""> <br>
<font size=-1><i>Enter SFTP UserID or S3 AWS Key ID</i></font>
</TD>
<TD>
Passwd/Key:
<input type="password" size="25" name="Serv4Pwd" value=""> <br>
<font size=-1><i>Enter SFTP Pasword or S3 Secret Key</i></font>
</TD>
</TR>
<TR>
<TD>
SFTP Srvr or S3 Bucket:
<input type="text" size="25" name="Server4Name" value=""> <br>
<font size=-1><i>Enter the SFTP Server or S3 Bucket to send the data</i></font>
</TD>
<TD>
S3 Region:
<input type="text" size="25" name="Server4Region" value=""> <br>
<font size=-1><i>If you are uploading to S3 - Enter the S3 Bucket Region</i></font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
<input type="button" value="AChoir-32" onclick="RunRRACh(32);"/> -
<input type="button" value="AChoir-64" onclick="RunRRACh(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<p>
<b><i>Important Note: </b></i>This GUI will call A-AChoirX Remotely as Admin.
</TD>
</TR>
</TABLE>
</div>
<div class="panel" id="panel5" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF">
<TR>
<TD>
This Tab is meant to simplify running an AChoirX Remote Script on a list of remote
computers using PSExec. It will Upload the Telemetry and Artifacts to either
an SFTP Server or an S3 Bucket.
</TD>
</TR>
</TABLE>
<p>
<TABLE Width="100%" border="0">
<TR>
<TD>
<font color="#000000"><i><fieldset><legend>Fill In All Fields</legend></i></font>
<TABLE Width="100%" border="1" cellspacing="20" cellpadding="10">
<TR>
<TD ColSpan=2>
AChoirX Script to Run on Remote Machine(s):
<select size="1" name="Run5ACQ">
<option value="Scripts\\AChZipS3.ACQ" selected>AChZipS3</option>
<option value="Scripts\\AChZipS3NoMem.ACQ">AChZipS3NoMem</option>
<option value="Scripts\\AChZipSFTP.ACQ">AChZipSFTP</option>
<option value="Scripts\\AChZipSFTPNoMem.ACQ">AChZipSFTPNoMem</option>
</select>
</TD>
</TR>
<TR>
<TD ColSpan=2>
File List of Hosts to Triage:
<input type="text" size="25" name="File5Name" value="Targets.txt">  -  
<input type="button" value="EditList" onclick="EditList();"/><br>
<font size=-1><i>This is the List of Remote Hosts you want to Triage</i></font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
Select either S3 or SFTP Upload:
<select size="1" name="SFTP5orS3">
<option value="S3" selected>S3</option>
<option value="SFTP">SFTP</option>
</select>
</TD>
</TR>
<TR>
<TD>
User/KeyID:
<input type="text" size="25" name="Serv5Usr" value=""> <br>
<font size=-1><i>Enter SFTP UserID or S3 AWS Key ID</i></font>
</TD>
<TD>
Passwd/Key:
<input type="password" size="25" name="Serv5Pwd" value=""> <br>
<font size=-1<i>Enter SFTP Pasword or S3 Secret Key</i></font>
</TD>
</TR>
<TR>
<TD>
SFTP Srvr or S3 Bucket:
<input type="text" size="25" name="Server5Name" value=""> <br>
<font size=-1><i>Enter the SFTP Server or S3 Bucket to send the data</i></font>
</TD>
<TD>
S3 Region:
<input type="text" size="25" name="Server5Region" value=""> <br>
<font size=-1><i>If you are uploading to S3 - Enter the S3 Bucket Region</i></font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
<input type="button" value="AChoir-32" onclick="RunMRACh(32);"/> -
<input type="button" value="AChoir-64" onclick="RunMRACh(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</p>
<p>
<b><i>Important Note: </b></i>This GUI will call A-AChoirX Remotely as Admin.
</p>
</td>
</tr>
</table>
</div>
<div class="panel" id="panel6" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF"><TR><TD>
<p>
This Tab Runs AChoirX on either a Remote or Local Machine with /GXR: (Get, Extract, Run).
The GXR Option requires an HTTP location that contains a zipped AChoirX Toolkit.
The Toolkit will be Downloaded, Extracted, and Run.
</p>
</TD></TR></TABLE>
<p>
<TABLE Width="100%" border="0"><TR><TD>
<font color="#000000"><i><fieldset><legend>Local GXR</legend></i></font>
<p>
HTTP/S Location of ToolKit:
<input type="text" size="50" name="File6Name" value="https://YourDomain/Toolkit.zip"> <br>
<font size=-1><i>This is the HTTP/S location of the Toolkit to be downloaded, extracted. and run.</i></font>
</p><BR>
<p>
<input type="button" value="AChoir-32" onclick="RunGXR(32);"/> -
<input type="button" value="AChoir-64" onclick="RunGXR(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</p>
</TD></TR></TABLE>
<BR><BR>
<p>
<TABLE Width="100%" border="0"><TR><TD>
<font color="#000000"><i><fieldset><legend>Remote GXR</legend></i></font>
<p>
HTTP/S Location of ToolKit:
<input type="text" size="50" name="File6Name2" value="https://YourDomain/Toolkit.zip"> <br>
<font size=-1><i>This is the HTTP/S location of the Toolkit to be downloaded, extracted. and run.</i></font>
</p>
Host to Triage:
<input type="text" size="25" name="Host6Name" value="MyHost"> <br>
<font size=-1><i>This is the Remote Host you want to Triage. The Artifacts and Telemetry will
be saved Locally on that machine.</i></font>
</p><BR>
<p>
<input type="button" value="AChoir-32" onclick="RunGXRR(32);"/> -
<input type="button" value="AChoir-64" onclick="RunGXRR(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</p>
</TD></TR></TABLE>
<p>
<b><i>Important Note: </b></i>This GUI will use A-AChoirX as Admin.
</p>
</td>
</tr>
</table>
</div>
<div class="panel" id="panel7" style="display:none">
<table border="0" width="100%">
<tr valign="top">
<td>
<TABLE Width="100%" border="1" bgcolor="#FFFFEF"><TR><TD>
<p>
This Tab Runs AChoirX in either CLIent or SRVer mode. The AChoirX Client/Server
model is a Multi-Handler that can support an unlimited number of Clients.
Please Note: The Server MUST be running for a Client to connect.
</p>
</TD></TR></TABLE>
<p>
<TABLE Width="100%" border="0">
<TR>
<TD>
<font color="#000000"><i><fieldset><legend>Client or Server</legend></i></font>
<TABLE Width="100%" border="1" cellspacing="20" cellpadding="10">
<TR>
<TD>
Should I run as a CLIent or SRVer:
<select size="1" name="CLISRV7Mode">
<option value="CLI" selected>Client</option>
<option value="SRV">Server</option>
</select>
</TD>
<TD>
Run Local or push to Remote machine:
<select size="1" name="CLISRV7LocRem">
<option value="Local" selected>Local</option>
<option value="Remote">Remote</option>
</select>
</TD>
</TR>
<TR>
<TD>
Password:
<input type="password" size="25" name="CLISRV7Pwd" value=""> <br>
<font size=-1><i>Enter Communications Encryption Password</i></font>
</TD>
<TD>
Remote Host:
<input size="25" name="CLISRV7RHost" value="localhost"> <br>
<font size=-1><i>Only needed if you are going to push to a Remote Machine</i></font>
</TD>
<TR>
<TD>
IP Address:
<input type="text" size="25" name="CLISRV7IP" value="127.0.0.1"> <br>
<font size=-1><i>Enter IP Address of Client or Server</i></font>
</TD>
<TD>
Port:
<input type="text" size="25" name="CLISRV7Port" value="5555"><br>
<font size=-1><i>Enter the Port that Client/Server will communicate on</i></font>
</TD>
</TR>
<TR>
<TD ColSpan=2>
<input type="button" value="AChoir-32" onclick="RunCLISRV(32);"/> -
<input type="button" value="AChoir-64" onclick="RunCLISRV(64);"/> -
<input type="button" value="Exit GUI" onclick="ExitMe();"/>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<p>
<BR><BR><BR><BR>
<b><i>Important Note: </b></i>This GUI will call A-AChoirX as Admin.
</TD>
</TR>
</TABLE>
</div>