Jump to content

Dropping The Table


Pain

Recommended Posts

Not sure if it is a good place to ask, but I'll do it anyway.

 

if i have a following query:

 

$query2 = mysql_query("SELECT * FROM testas WHERE username = '$username');

 

How do i drop the table by injecting sql?

 

have tried this

x’; DROP TABLE testas; --

but nothing happened:D

Link to comment
https://forums.phpfreaks.com/topic/271251-dropping-the-table/
Share on other sites

Are you testing security? If you are, why would you test it with anything other than what your code actually uses? If you use mysql_query(), that's what it should be tested with, and you've already verified that it failed to drop the table.

 

Disclaimer: if it's simply a learning exercise, the above is not applicable.

Link to comment
https://forums.phpfreaks.com/topic/271251-dropping-the-table/#findComment-1395632
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.