Metasploitable refusing connections through browser, even though i can ping it [on hold]

When I try to access my metasploitable machine through my kali machine (both being hosted in virtualbox) by firefox, it refuses my connection.

So I proceeded to ping it. This results in a successful ping with around 0.5ms of… Continue reading Metasploitable refusing connections through browser, even though i can ping it [on hold]

Can’t log in dvwa with a simple python program, even though login credentials are good

import requests

target_url = “http://127.0.0.1/dvwa/login.php”
data_dict = {“csrfmiddlewaretoken”: “bbbfeed6e1aea50f14a51a331054022c”, “username”: “admin”, “password”: “password”, “Login”: “Submit”}
response = requests.post(… Continue reading Can’t log in dvwa with a simple python program, even though login credentials are good