Cum aș putea traduce asta html cerere POST în python

0

Problema

Am dificultăți în traducerea această specific HTML cerere POST în Python - eu sunt încercarea de a exploata o vulnerabilitate de securitate pe un server de test.

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

Cel mai bun răspuns

1

Înainte de a rula codul de mai jos. Rula pip instala cereri.

import requests

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

>>>> Response<200>

Vezi mai multe detalii în URL-ul de mai jos.

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

2021-11-24 06:22:35

În alte limbi

Această pagină este în alte limbi

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