From 4aa685b096ee617a8f980369d2ad942d00fe24ff Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Sat, 16 May 2020 09:28:41 +0200 Subject: Update --- www/html/affiche-tas.py | 2 +- www/html/destination.py | 10 ++++++---- www/html/index.py | 3 ++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/www/html/affiche-tas.py b/www/html/affiche-tas.py index 726bed4..4c63c3a 100644 --- a/www/html/affiche-tas.py +++ b/www/html/affiche-tas.py @@ -11,7 +11,7 @@ def index(req): conn=connexionBD() cur=conn.cursor() - sql="SELECT * FROM paquet ORDER BY heure DESC;" + sql="SELECT * FROM paquet ORDER BY heure DESC" cur.execute(sql) conn.commit() diff --git a/www/html/destination.py b/www/html/destination.py index e0729b1..062ab2f 100755 --- a/www/html/destination.py +++ b/www/html/destination.py @@ -26,14 +26,14 @@ def index(req): conn=connexionBD() cur=conn.cursor() - sql="select * from paquet where ip_destination='{}' ORDER BY heure DESC;".format(ip) - sql_count="select count(*) from paquet where ip_destination='{}';".format(ip) + sql="SELECT * FROM paquet WHERE ip_destination=%s ORDER BY heure DESC" + sql_count="SELECT COUNT(*) FROM paquet WHERE ip_destination=%s" - cur.execute(sql) + cur.execute(sql, (ip, )) conn.commit() data=cur.fetchall() - cur.execute(sql_count) + cur.execute(sql_count, (ip, )) conn.commit() count=cur.fetchone() @@ -55,10 +55,12 @@ def index(req): req.write(baseHTML(ip,"""

IP Destination : """ + ip + """

Nombre de paquets en destination de """+ ip + """ : """+ str(count[0])+ """

+
""" + content + """
HeureProtocoleIP SourceIP DestinationPort SourcePort Destination
+
""")) diff --git a/www/html/index.py b/www/html/index.py index b709c3a..7f419b0 100755 --- a/www/html/index.py +++ b/www/html/index.py @@ -44,7 +44,8 @@ def index(req):
Pour voir le nombre de paquets en destination d'une adresse IP, cliquez sur cette dernière dans le tableau.
OK

Nombre total de paquets : """+ count +"""

-
Pour afficher toute la table, cliquez sur ce texte.

+Pour afficher toute la table, cliquez +
-- cgit v1.2.3
HeureProtocoleIP SourceIP DestinationPort SourcePort Destination