You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlalchemy
Hey how do i generate new sql injections from sqlalchemy . Any links or information is much appreciated
Simon King
unread,
Jul 1, 2020, 5:34:10 AM7/1/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlal...@googlegroups.com
Hi,
What do you mean by "SQL injection"?
Thanks,
Simon
On Tue, Jun 30, 2020 at 10:12 PM Divya Shivakumar
<divyashi...@gmail.com> wrote:
>
> Hey how do i generate new sql injections from sqlalchemy . Any links or information is much appreciated
>
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlalchemy
Hi Simon , I am m trying to generate sql injections(in band SQLi and outband sqli) for data analysis using sql code genrator Is there any sql query generator library in python that will help me in generating sql injections? or can I use SQLAlchemy for that purpose
I have tried to use the SQL penetration testing tools , but I am not happy with the results . Is there any way that I can generate SQL injections besides manual testing and pen testing .
Any information is appreciated
divyashi...@gmail.com
unread,
Jul 1, 2020, 11:21:02 AM7/1/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlalchemy
SQL injections in the sense , malacious sql statements. or paylaod .
Simon King
unread,
Jul 2, 2020, 5:54:13 AM7/2/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sqlal...@googlegroups.com
I don't understand. SQLAlchemy will not help you "generate SQL
injections". It's just a library for talking to databases.
Applications that *use* SQLAlchemy might be vulnerable to SQL
injections if they are careless, but if you use it in the recommended
way, SQL statements are parameterized and the parameters are sent
separately, so attackers can't change the syntactic form of the
statement.