monitoring.ndv-dev.ru
Open in
urlscan Pro
188.72.78.100
Public Scan
URL:
https://monitoring.ndv-dev.ru/
Submission Tags: phishingrod
Submission: On December 01 via api from DE — Scanned from DE
Submission Tags: phishingrod
Submission: On December 01 via api from DE — Scanned from DE
Form analysis
0 forms found in the DOMText Content
SYMFONY EXCEPTION Symfony Docs Symfony Support ERROREXCEPTION HTTP 500 INTERNAL SERVER ERROR NOTICE: FWRITE(): WRITE OF 480 BYTES FAILED WITH ERRNO=28 NO SPACE LEFT ON DEVICE * Exception * Stack Trace EXCEPTION ERROREXCEPTION in /application/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php (line 134) 129. * @param resource $stream 130. * @param array $record 131. */ 132. protected function streamWrite($stream, array $record): void 133. { 134. fwrite($stream, (string) $record['formatted']); 135. } 136. 137. private function customErrorHandler($code, $msg): bool 138. { 139. $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg); in /application/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php -> streamWrite (line 120) 115. if ($this->useLocking) { 116. // ignoring errors here, there's not much we can do about them 117. flock($this->stream, LOCK_EX); 118. } 119. 120. $this->streamWrite($this->stream, $record); 121. 122. if ($this->useLocking) { 123. flock($this->stream, LOCK_UN); 124. } 125. } in /application/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php -> write (line 42) 37. $record = $this->processRecord($record); 38. } 39. 40. $record['formatted'] = $this->getFormatter()->format($record); 41. 42. $this->write($record); 43. 44. return false === $this->bubble; 45. } 46. 47. /** in /application/vendor/monolog/monolog/src/Monolog/Logger.php -> handle (line 325) 320. while ($handlerKey !== key($this->handlers)) { 321. next($this->handlers); 322. } 323. 324. while ($handler = current($this->handlers)) { 325. if (true === $handler->handle($record)) { 326. break; 327. } 328. 329. next($this->handlers); 330. } in /application/vendor/monolog/monolog/src/Monolog/Logger.php -> addRecord (line 556) 551. * @param string $message The log message 552. * @param array $context The log context 553. */ 554. public function critical($message, array $context = []): void 555. { 556. $this->addRecord(static::CRITICAL, (string) $message, $context); 557. } 558. 559. /** 560. * Adds a log record at the ALERT level. 561. * in /application/vendor/symfony/http-kernel/EventListener/ErrorListener.php -> critical (line 131) 126. */ 127. protected function logException(\Throwable $exception, string $message): void 128. { 129. if (null !== $this->logger) { 130. if (!$exception instanceof HttpExceptionInterface || $exception->getStatusCode() >= 500) { 131. $this->logger->critical($message, ['exception' => $exception]); 132. } else { 133. $this->logger->error($message, ['exception' => $exception]); 134. } 135. } 136. } in /application/vendor/symfony/http-kernel/EventListener/ErrorListener.php -> logException (line 47) 42. 43. public function logKernelException(ExceptionEvent $event) 44. { 45. $e = FlattenException::createFromThrowable($event->getThrowable()); 46. 47. $this->logException($event->getThrowable(), sprintf('Uncaught PHP Exception %s: "%s" at %s line %s', $e->getClass(), $e->getMessage(), $e->getFile(), $e->getLine())); 48. } 49. 50. public function onKernelException(ExceptionEvent $event) 51. { 52. if (null === $this->controller) { in /application/vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> logKernelException (line 117) 112. $this->called = true; 113. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener); 114. 115. $e = $this->stopwatch->start($this->name, 'event_listener'); 116. 117. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher); 118. 119. if ($e->isStarted()) { 120. $e->stop(); 121. } 122. in /application/vendor/symfony/event-dispatcher/EventDispatcher.php -> __invoke (line 230) 225. 226. foreach ($listeners as $listener) { 227. if ($stoppable && $event->isPropagationStopped()) { 228. break; 229. } 230. $listener($event, $eventName, $this); 231. } 232. } 233. 234. /** 235. * Sorts the internal list of listeners for the given event by priority. in /application/vendor/symfony/event-dispatcher/EventDispatcher.php -> callListeners (line 59) 54. } else { 55. $listeners = $this->getListeners($eventName); 56. } 57. 58. if ($listeners) { 59. $this->callListeners($listeners, $eventName, $event); 60. } 61. 62. return $event; 63. } 64. in /application/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php -> dispatch (line 151) 146. try { 147. $this->beforeDispatch($eventName, $event); 148. try { 149. $e = $this->stopwatch->start($eventName, 'section'); 150. try { 151. $this->dispatcher->dispatch($event, $eventName); 152. } finally { 153. if ($e->isStarted()) { 154. $e->stop(); 155. } 156. } in /application/vendor/symfony/http-kernel/HttpKernel.php -> dispatch (line 218) 213. * @throws \Exception 214. */ 215. private function handleThrowable(\Throwable $e, Request $request, int $type): Response 216. { 217. $event = new ExceptionEvent($this, $request, $type, $e); 218. $this->dispatcher->dispatch($event, KernelEvents::EXCEPTION); 219. 220. // a listener might have replaced the exception 221. $e = $event->getThrowable(); 222. 223. if (!$event->hasResponse()) { in /application/vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 111) 106. { 107. if (!$request = $request ?: $this->requestStack->getMasterRequest()) { 108. throw $exception; 109. } 110. 111. $response = $this->handleThrowable($exception, $request, self::MASTER_REQUEST); 112. 113. $response->sendHeaders(); 114. $response->sendContent(); 115. 116. $this->terminate($request, $response); in /application/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php -> terminateWithException (line 118) 113. if ($hasRun) { 114. throw $e; 115. } 116. 117. $hasRun = true; 118. $kernel->terminateWithException($e, $request); 119. }; 120. } 121. } elseif ($event instanceof ConsoleEvent && $app = $event->getCommand()->getApplication()) { 122. $output = $event->getOutput(); 123. if ($output instanceof ConsoleOutputInterface) { in /application/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 594) 589. $this->exceptionHandler = null; 590. } 591. 592. try { 593. if (null !== $exceptionHandler) { 594. return $exceptionHandler($exception); 595. } 596. $handlerException = $handlerException ?: $exception; 597. } catch (\Throwable $handlerException) { 598. } 599. if ($exception === $handlerException && null === $this->exceptionHandler) { ErrorHandler->handleException() STACK TRACE ERROREXCEPTION ErrorException: Notice: fwrite(): write of 480 bytes failed with errno=28 No space left on device at /application/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:134 at Monolog\Handler\StreamHandler->streamWrite() (/application/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:120) at Monolog\Handler\StreamHandler->write() (/application/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:42) at Monolog\Handler\AbstractProcessingHandler->handle() (/application/vendor/monolog/monolog/src/Monolog/Logger.php:325) at Monolog\Logger->addRecord() (/application/vendor/monolog/monolog/src/Monolog/Logger.php:556) at Monolog\Logger->critical() (/application/vendor/symfony/http-kernel/EventListener/ErrorListener.php:131) at Symfony\Component\HttpKernel\EventListener\ErrorListener->logException() (/application/vendor/symfony/http-kernel/EventListener/ErrorListener.php:47) at Symfony\Component\HttpKernel\EventListener\ErrorListener->logKernelException() (/application/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (/application/vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (/application/vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (/application/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (/application/vendor/symfony/http-kernel/HttpKernel.php:218) at Symfony\Component\HttpKernel\HttpKernel->handleThrowable() (/application/vendor/symfony/http-kernel/HttpKernel.php:111) at Symfony\Component\HttpKernel\HttpKernel->terminateWithException() (/application/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:118) at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}() (/application/vendor/symfony/error-handler/ErrorHandler.php:594) at Symfony\Component\ErrorHandler\ErrorHandler->handleException()