Using HTTPS for macvendor lookups instead of HTTP (#17)

Updates WPS, MACInfo, SiteSurvey, and Status modules.
This commit is contained in:
trashbo4t
2018-03-14 16:02:47 -04:00
committed by Sebastian Kinne
parent 4a8791edbb
commit 5d005e4ba2
7 changed files with 10 additions and 10 deletions

View File

@@ -248,7 +248,7 @@ class Status extends Module
private function getMACInfo()
{
$content = file_get_contents("http://api.macvendors.com/".$this->request->mac);
$content = file_get_contents("https://api.macvendors.com/".$this->request->mac);
$this->response = array('title' => $this->request->mac, "output" => $content);
}