ヤミRoot VoidGate
User / IP
:
216.73.216.137
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
api
/
src
/
AppBundle
/
Entity
/
SSLCert
/
Viewing: UserCertData.php
<?php namespace AppBundle\Entity\SSLCert; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; /** * UserCertData * * @ORM\Table(name="user_cert_data") * @ORM\Entity(repositoryClass="AppBundle\Repository\UserCertDataRepository") */ class UserCertData { const VIEW_OWNER = "OWNER"; const VIEW_OTHER = "OTHER"; /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var int * * @ORM\Column(name="userId", type="integer", unique=true) */ private $userId; /** * @var string * * @ORM\Column(name="privateKey", type="text") * @Serializer\groups({"OWNER"}) */ private $privateKey; /** * @var string * * @ORM\Column(name="cert", type="text") * @Serializer\groups({"OWNER", "OTHER"}) */ private $cert; /** * @var string * * @ORM\Column(name="passPhrase", type="string", length=255) * @Serializer\groups({"OWNER"}) */ private $passPhrase; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set userId * * @param integer $userId * * @return UserCertData */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return int */ public function getUserId() { return $this->userId; } /** * Set privateKey * * @param string $privateKey * * @return UserCertData */ public function setPrivateKey($privateKey) { $this->privateKey = $privateKey; return $this; } /** * Get privateKey * * @return string */ public function getPrivateKey() { return $this->privateKey; } /** * Set cert * * @param string $cert * * @return UserCertData */ public function setCert($cert) { $this->cert = $cert; return $this; } /** * Get cert * * @return string */ public function getCert() { return $this->cert; } /** * Set passPhrase * * @param string $passPhrase * * @return UserCertData */ public function setPassPhrase($passPhrase) { $this->passPhrase = $passPhrase; return $this; } /** * Get passPhrase * * @return string */ public function getPassPhrase() { return $this->passPhrase; } }
Coded With 💗 by
0x6ick