Uncategorised
- Информация о материале
- Автор: admin
- Категория: Uncategorised
- Просмотров: 156
<?php
class FileMapper
{
public $DBH;
public function __construct(PDO $DBH)
{
$this->DBH = $DBH;
}
public function getFilebyID($id)
{
$STH = $this->DBH->prepare("SELECT * FROM files WHERE id=:id");
$STH->bindvalue(":id", $id);
$STH->execute();
$STH->setFetchMode(PDO::FETCH_CLASS, 'file');
return $STH->fetch();
}
public function getAllFiles()
{
$STH = $this->DBH->prepare("SELECT * FROM files ORDER BY id DESC LIMIT 100");
$STH->execute();
return $STH->fetchAll(PDO::FETCH_CLASS, "file");
}
public function addFile(File $file)
{
$STH = $this->DBH->prepare("INSERT INTO files (type, name, size, comment, code)
VALUES (:type, :name, :size, :comment, :code)");
$STH->bindvalue(":type", $file->getType());
$STH->bindvalue(":name", $file->getName());
$STH->bindvalue(":size", $file->getSize());
$STH->bindvalue(":comment", $file->getComment());
$STH->bindvalue(":code", $file->getCode());
$STH->execute();
$file->setID($this->DBH->lastInsertId());
}
public function iscodeUsed($code)
{
$STH = $this->DBH->prepare("SELECT * FROM files WHERE code=:code");
$STH->bindValue(":code", $code);
$STH->execute();
$STH->setFetchMode(PDO::FETCH_CLASS, 'file');
return $STH->fetch();
}
}
- Информация о материале
- Автор: admin
- Категория: Uncategorised
- Просмотров: 1481

Код:
import requests
from bs4 import BeautifulSoup
page = requests.get('https://nvd.nist.gov/vuln/detail/CVE-2019-9639')
soup = BeautifulSoup(page.text, 'html.parser')
vuln_description = soup.select('div.col-lg-9:nth-child(1) > p:nth-child(2)')
print(vuln_description)