Host 195.110.34.158
France
Groupe LWS SARL
Software information

fastestcache

tcp/443 tcp/80

  • Git configuration and history exposed
    First seen 2024-10-28 05:08
    Last seen 2025-01-18 18:25
    Open for 82 days
    • Severity: critical
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522458b2131

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://MoiseGui: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@github.com/MoiseGui/vakpor-strapi-backend.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "main"]
      	remote = origin
      	merge = refs/heads/main
      
      Found on 2025-01-18 18:25
      324 Bytes
  • Git configuration and history exposed
    First seen 2024-07-24 04:06
    Last seen 2025-01-18 09:13
    Open for 178 days
    • Severity: critical
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522571eec5f

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://MoiseGui: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@github.com/MoiseGui/vakpor-chat.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "main"]
      	remote = origin
      	merge = refs/heads/main
      
      Found on 2025-01-18 09:13
      314 Bytes
  • Git configuration and history exposed
    First seen 2024-05-24 04:05
    Last seen 2025-01-16 08:15
    Open for 237 days
    • Severity: critical
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522571eec5f

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://MoiseGui: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@github.com/MoiseGui/vakpor-chat.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "main"]
      	remote = origin
      	merge = refs/heads/main
      
      Found on 2025-01-16 08:15
      314 Bytes
  • Git configuration and history exposed
    First seen 2024-08-28 04:06
    Last seen 2025-01-16 07:58
    Open for 141 days
    • Severity: critical
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522458b2131

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://MoiseGui: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@github.com/MoiseGui/vakpor-strapi-backend.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "main"]
      	remote = origin
      	merge = refs/heads/main
      
      Found on 2025-01-16 07:58
      324 Bytes
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-14 08:01

    HTTP/1.1 200 OK
    Date: Tue, 14 Jan 2025 08:01:13 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 2e1a88c66e6bd70439a1c5998e1da3a8
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 4
    Accept-Ranges: bytes
    X-Request-Id: 2e1a88c66e6bd70439a1c5998e1da3a8
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · adminepagar.vitrineht.com

    2025-01-14 05:06

    HTTP/1.1 302 Found
    Date: Tue, 14 Jan 2025 05:06:22 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 402
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7d08e770b5546da10451dca32db3ea70
    Access-Control-Allow-Origin: *
    Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE
    Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, key,token,Authorization,X-Request-With,enctype,From-Front
    Cache-Control: no-cache, private
    Set-Cookie: XSRF-TOKEN=eyJpdiI6ImxSb1hrZzJcL2JaUkF0Z1h1MUpRc1RBPT0iLCJ2YWx1ZSI6IlRjR3pGUGtFZm81MEM2aHNQS1NSekhOMURZTjdaa1A4UDlLUG5cL05ObUROU245eWU4XC9cL2hqRndBa3M0UXUrRE8iLCJtYWMiOiI5YTM2NmYwNzI0MmRhYTk4MDQ3NzYwM2UwZTQxNWUyOGVlNzM4NTZjZWYwZmQ5MzA2OTYwZDE4NDYxMWM0YWRkIn0%3D; expires=Tue, 14-Jan-2025 07:06:22 GMT; Max-Age=7200; path=/
    Set-Cookie: laravel_session=eyJpdiI6IkFlMHZvZVhnU0REVCszcnU2SkdzMVE9PSIsInZhbHVlIjoiTnRYNE42enpiWlNaaGU5Y0hrNFwvSThyUloreWdNNFVURGhIdVVHdHptWkRaMm56ZXk0K2lXYjc4YlB6TGlpZ1wvIiwibWFjIjoiMjBkYjg2OTc0NzEyY2UyZDUzMGM1MjllNzkwMGZjMWNmNWFmNjc4ZWEzMDU2NjdlMTAxOWY2NWU1NjY0NzE4ZiJ9; expires=Tue, 14-Jan-2025 07:06:22 GMT; Max-Age=7200; path=/; httponly
    Location: https://adminepagar.vitrineht.com/login
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 7d08e770b5546da10451dca32db3ea70
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://adminepagar.vitrineht.com/login
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://adminepagar.vitrineht.com/login'" />
    
            <title>Redirecting to https://adminepagar.vitrineht.com/login</title>
        </head>
        <body>
            Redirecting to <a href="https://adminepagar.vitrineht.com/login">https://adminepagar.vitrineht.com/login</a>.
        </body>
    </html>
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.adminepagar.vitrineht.com

    2025-01-14 05:06

    HTTP/1.1 404 Not Found
    Date: Tue, 14 Jan 2025 05:06:20 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 1552
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 9071099ac67ac59001f01558b8d12f5e
    Access-Control-Allow-Origin: *
    Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE
    Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, key,token,Authorization,X-Request-With,enctype,From-Front
    Cache-Control: no-cache, private
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    
    Page title: Not Found
    
    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
    
            <title>Not Found</title>
    
            <!-- Fonts -->
            <link rel="dns-prefetch" href="//fonts.gstatic.com">
            <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
    
            <!-- Styles -->
            <style>
                html, body {
                    background-color: #fff;
                    color: #636b6f;
                    font-family: 'Nunito', sans-serif;
                    font-weight: 100;
                    height: 100vh;
                    margin: 0;
                }
    
                .full-height {
                    height: 100vh;
                }
    
                .flex-center {
                    align-items: center;
                    display: flex;
                    justify-content: center;
                }
    
                .position-ref {
                    position: relative;
                }
    
                .code {
                    border-right: 2px solid;
                    font-size: 26px;
                    padding: 0 15px 0 15px;
                    text-align: center;
                }
    
                .message {
                    font-size: 18px;
                    text-align: center;
                }
            </style>
        </head>
        <body>
            <div class="flex-center position-ref full-height">
                <div class="code">
                    404            </div>
    
                <div class="message" style="padding: 10px;">
                    Not Found            </div>
            </div>
        </body>
    </html>
    
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.vakpor-chat.vakpor.com

    2025-01-14 02:05

    HTTP/1.1 200 OK
    Date: Tue, 14 Jan 2025 02:05:50 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7b738da0d579fae43ee20ee901ce1833
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    X-Request-Id: 7b738da0d579fae43ee20ee901ce1833
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-14 01:47

    
                                
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-14 01:20

    HTTP/1.1 200 OK
    Date: Tue, 14 Jan 2025 01:20:23 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 1bfc70b20cb8800d5a67c46a6b45e8b2
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 35ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 1bfc70b20cb8800d5a67c46a6b45e8b2
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Tue, 14 Jan 2025 01:20:22 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-14 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-12 21:49

    HTTP/1.1 200 OK
    Date: Sun, 12 Jan 2025 21:49:40 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 0c613d78ed98bc8af9cc6c8582e03096
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 29ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 0c613d78ed98bc8af9cc6c8582e03096
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 12 Jan 2025 21:49:39 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-12 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-12 08:38

    HTTP/1.1 200 OK
    Date: Sun, 12 Jan 2025 08:38:53 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 5f4d2f846e54ed2a45487cfc64da6efc
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 59ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 5f4d2f846e54ed2a45487cfc64da6efc
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 12 Jan 2025 08:38:52 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-12 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-12 03:44

    HTTP/1.1 200 OK
    Date: Sun, 12 Jan 2025 03:44:26 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 974a98f8f970c9d0214ae2e8b974c9a1
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 3
    Accept-Ranges: bytes
    X-Request-Id: 974a98f8f970c9d0214ae2e8b974c9a1
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-12 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-12 00:56

    HTTP/1.1 200 OK
    Date: Sun, 12 Jan 2025 00:56:57 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f602facc644055801de28514bc53fa69
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 25ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: f602facc644055801de28514bc53fa69
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 12 Jan 2025 00:56:56 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-12 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-12 00:34

    HTTP/1.1 200 OK
    Date: Sun, 12 Jan 2025 00:34:12 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: decb120977782a5c5c8161d26868038c
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 21ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: decb120977782a5c5c8161d26868038c
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 12 Jan 2025 00:34:12 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-12 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-10 23:55

    HTTP/1.1 200 OK
    Date: Fri, 10 Jan 2025 23:55:30 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f6489b3ce1df67a87abc33e7a611554c
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 13ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    X-Request-Id: f6489b3ce1df67a87abc33e7a611554c
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 10 Jan 2025 23:55:28 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-10 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-10 11:44

    HTTP/1.1 200 OK
    Date: Fri, 10 Jan 2025 11:44:18 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 45183d022fff1451db8f94fdc44b1509
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 44ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 3
    Accept-Ranges: bytes
    X-Request-Id: 45183d022fff1451db8f94fdc44b1509
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 10 Jan 2025 11:44:15 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-10 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.pdvepagar.vitrineht.com

    2025-01-10 05:09

    HTTP/1.1 200 OK
    Date: Fri, 10 Jan 2025 05:09:21 GMT
    Content-Type: text/html
    Content-Length: 3427
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f66462afa525fdec99b07568d6f0969f
    Accept-Ranges: bytes
    Vary: Accept-Encoding
    Expires: Thu, 1 Jan 1970 00:00:00 GMT
    Pragma: no-cache
    Cache-Control: max-age=0, no-cache, no-store, must-revalidate
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: f66462afa525fdec99b07568d6f0969f
    Edge-Cache-Engine-Hit: MISS
    
    Page title: PDV ePaGar
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <title>PDV ePaGar</title>
    
        <base href="/">
    
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="icon" type="image/png" href="favicon.png">
        <link rel="icon" type="image/x-icon" href="favicon.ico">
        <script defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCpVhQiwAllg1RAFaxMWSpQruuGARy0Y1k&libraries=places"></script>
    <link rel="stylesheet" href="styles.0bc8fd53301fbcdc540f.css"></head>
    
    <body>
        <ngx-app> </ngx-app>
    <!-- 
        <style>
            @-webkit-keyframes spin {
                0% {
                    transform: rotate(0)
                }
                100% {
                    transform: rotate(360deg)
                }
            }
            
            @-moz-keyframes spin {
                0% {
                    -moz-transform: rotate(0)
                }
                100% {
                    -moz-transform: rotate(360deg)
                }
            }
            
            @keyframes spin {
                0% {
                    transform: rotate(0)
                }
                100% {
                    transform: rotate(360deg)
                }
            }
            
            .spinner {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1003;
                background: #000000;
                overflow: hidden
            }
            
            .spinner div:first-child {
                display: block;
                position: relative;
                left: 50%;
                top: 50%;
                width: 150px;
                height: 150px;
                margin: -75px 0 0 -75px;
                border-radius: 50%;
                box-shadow: 0 3px 3px 0 rgba(255, 56, 106, 1);
                transform: translate3d(0, 0, 0);
                animation: spin 2s linear infinite
            }
            
            .spinner div:first-child:after,
            .spinner div:first-child:before {
                content: '';
                position: absolute;
                border-radius: 50%
            }
            
            .spinner div:first-child:before {
                top: 5px;
                left: 5px;
                right: 5px;
                bottom: 5px;
                box-shadow: 0 3px 3px 0 rgb(255, 228, 32);
                -webkit-animation: spin 3s linear infinite;
                animation: spin 3s linear infinite
            }
            
            .spinner div:first-child:after {
                top: 15px;
                left: 15px;
                right: 15px;
                bottom: 15px;
                box-shadow: 0 3px 3px 0 rgba(61, 175, 255, 1);
                animation: spin 1.5s linear infinite
            }
        </style>
        <div id="nb-global-spinner" class="spinner">
            <div class="blob blob-0"></div>
            <div class="blob blob-1"></div>
            <div class="blob blob-2"></div>
            <div class="blob blob-3"></div>
            <div class="blob blob-4"></div>
            <div class="blob blob-5"></div>
        </div> -->
    
    <script src="runtime-es2015.391a1a3930c27d514199.js" type="module"></script><script src="runtime-es5.391a1a3930c27d514199.js" nomodule defer></script><script src="polyfills-es5.aef21bb56f6d5f64f5d1.js" nomodule defer></script><script src="polyfills-es2015.833ed62a9adf8a3a59cc.js" type="module"></script><script src="scripts.345179a7913dc9a35f8e.js" defer></script><script src="main-es2015.9d83ce2ccee207ea0a79.js" type="module"></script><script src="main-es5.9d83ce2ccee207ea0a79.js" nomodule defer></script></body>
    
    </html>
    Found 2025-01-10 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-10 01:19

    HTTP/1.1 200 OK
    Date: Fri, 10 Jan 2025 01:19:20 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: af445a1b480953b060921103c661eda2
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 16ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: af445a1b480953b060921103c661eda2
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 10 Jan 2025 01:19:19 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-10 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · sandbox-pay.epagarmoney.com

    2025-01-09 05:10

    HTTP/1.1 302 Found
    Date: Thu, 09 Jan 2025 05:10:28 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 414
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7b2c3f00a7f3aed4ecadac309f0ac294
    Cache-Control: no-cache, private
    Set-Cookie: XSRF-TOKEN=eyJpdiI6IjJWR0t0Z0gyQjlvM1plRWNhN29GR1E9PSIsInZhbHVlIjoiRll3eW1rY2RqV202c2o2N2YrYzN2SFE4SWpSZ21zd0o0eEJ4Q2NMQUFUNktFSW5ETHJkYUtFOVJKVmdsZGhrKyIsIm1hYyI6IjMyYTI5ZGNiNmU3NWZkZWE5NDZlMWJmNzc1YTFhM2YxZmM0ZmVjYTlmY2E1MjQ5MTM0MDI3MGY4ZWQyZTQwMjAifQ%3D%3D; expires=Thu, 09-Jan-2025 07:10:28 GMT; Max-Age=7200; path=/
    Set-Cookie: laravel_session=eyJpdiI6Im9UTGtvV241TzEzanhrbDdONEg0alE9PSIsInZhbHVlIjoiV1wvZlFoQUNxSFk5SVhQVHRydHAyXC9nanNDTE5jRVI4QmE3XC80c2JmbGZQbk5FREE2RUd3dWhYRmtKSm56U1BTZCIsIm1hYyI6ImE1YzkyYjI3ODlmYTgyNmRkMjQ0NGExZGFiNGJlMDUyMmEyNjg3OWFjMWE5ODkxYmQyMjc1MWM5NjA4NTgzOTIifQ%3D%3D; expires=Thu, 09-Jan-2025 07:10:28 GMT; Max-Age=7200; path=/; httponly
    Location: https://sandbox-pay.epagarmoney.com/failed
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 7b2c3f00a7f3aed4ecadac309f0ac294
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://sandbox-pay.epagarmoney.com/failed
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://sandbox-pay.epagarmoney.com/failed'" />
    
            <title>Redirecting to https://sandbox-pay.epagarmoney.com/failed</title>
        </head>
        <body>
            Redirecting to <a href="https://sandbox-pay.epagarmoney.com/failed">https://sandbox-pay.epagarmoney.com/failed</a>.
        </body>
    </html>
    Found 2025-01-09 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-07 01:11

    HTTP/1.1 200 OK
    Date: Tue, 07 Jan 2025 01:11:41 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: e0410df39de44005cdc766a9fd9d79ef
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 30ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 1
    Accept-Ranges: bytes
    X-Request-Id: e0410df39de44005cdc766a9fd9d79ef
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Tue, 07 Jan 2025 01:11:39 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-07 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-06 20:08

    HTTP/1.1 200 OK
    Date: Mon, 06 Jan 2025 20:08:30 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 1286fe7166aba8a4a38036f2cd7989ca
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 10
    Accept-Ranges: bytes
    X-Request-Id: 1286fe7166aba8a4a38036f2cd7989ca
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-06 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · bricolabapp.vitrineht.com

    2025-01-05 05:09

    HTTP/1.1 302 Found
    Date: Sun, 05 Jan 2025 05:09:16 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 402
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 9ce529ca0a0bc46e66a8de252f211526
    Access-Control-Allow-Origin: *
    Cache-Control: no-cache, private
    Set-Cookie: food_delivery_session=eyJpdiI6ImdaN0JocVZzQ3JvTzBQYXlieFBobUE9PSIsInZhbHVlIjoiZ3p4czFsWEo0cmhnYk80SFFjcVA2T1wvOEtIUFFxTlRHSTVaeHJjbjhubjh2QmVWeE5LUUpjN1RoS1dZeTE3UlAiLCJtYWMiOiIzODQ2NzJkMTdlMzZhNDQ3ZGMyMWMwYjMwMmI5NDNkNjA3OWI1MmJjMGRhNjk4NWZhYTI2MDEzYmY5ZGU2YTQ0In0%3D; expires=Sun, 05-Jan-2025 07:09:16 GMT; Max-Age=7200; path=/; httponly
    Location: https://bricolabapp.vitrineht.com/login
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 9ce529ca0a0bc46e66a8de252f211526
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://bricolabapp.vitrineht.com/login
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://bricolabapp.vitrineht.com/login'" />
    
            <title>Redirecting to https://bricolabapp.vitrineht.com/login</title>
        </head>
        <body>
            Redirecting to <a href="https://bricolabapp.vitrineht.com/login">https://bricolabapp.vitrineht.com/login</a>.
        </body>
    </html>
    Found 2025-01-05 by HttpPlugin
    Create report
  • Open service 195.110.34.158:80 · www.bricolabapp.vitrineht.com

    2025-01-05 05:09

    HTTP/1.1 301 Moved Permanently
    Date: Sun, 05 Jan 2025 05:09:06 GMT
    Content-Type: text/html; charset=iso-8859-1
    Content-Length: 246
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 2959b6f4b87c794df8b5edc01c129124
    Location: https://www.bricolabapp.vitrineht.com/
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 2959b6f4b87c794df8b5edc01c129124
    Edge-Cache-Engine-Hit: HIT
    
    Page title: 301 Moved Permanently
    
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>301 Moved Permanently</title>
    </head><body>
    <h1>Moved Permanently</h1>
    <p>The document has moved <a href="https://www.bricolabapp.vitrineht.com/">here</a>.</p>
    </body></html>
    
    Found 2025-01-05 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.bricolabapp.vitrineht.com

    2025-01-05 05:09

    HTTP/1.1 302 Found
    Date: Sun, 05 Jan 2025 05:09:07 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 46bacd6039afac3e0a51afd408e8cfa7
    Access-Control-Allow-Origin: *
    Cache-Control: no-cache, private
    Set-Cookie: food_delivery_session=eyJpdiI6IlFyQ2ZxajZPYVg1RVlxRWgydHptbUE9PSIsInZhbHVlIjoiWmpSSHRiQjNvNlR3a1pCNUdSQVhuY2tcL3dndG8yTUFGNElOa1h0bGFtTXluaENpU0sxV243Y0lHa2xWVVMzY0EiLCJtYWMiOiIyNzEzYTczOGIzYmVlYzYyNGRkNjg1MTRjNDc2YjQ1NzcxNjE0NDA5NDI5NDJkMzdlMDVmYjQyNTA1ODliYzU3In0%3D; expires=Sun, 05-Jan-2025 07:09:07 GMT; Max-Age=7200; path=/; httponly
    Location: https://www.bricolabapp.vitrineht.com/login
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 46bacd6039afac3e0a51afd408e8cfa7
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://www.bricolabapp.vitrineht.com/login
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://www.bricolabapp.vitrineht.com/login'" />
    
            <title>Redirecting to https://www.bricolabapp.vitrineht.com/login</title>
        </head>
        <body>
            Redirecting to <a href="https://www.bricolabapp.vitrineht.com/login">https://www.bricolabapp.vitrineht.com/login</a>.
        </body>
    </html>
    Found 2025-01-05 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-04 20:12

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 20:12:06 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: bcca69827ae50b2af06b5bd0f763d263
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: bcca69827ae50b2af06b5bd0f763d263
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-04 14:42

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 14:42:12 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 263bd41d5e7af62200d0e55dfde8d20e
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 18ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 263bd41d5e7af62200d0e55dfde8d20e
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sat, 04 Jan 2025 14:42:12 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.vakpor-chat.vakpor.com

    2025-01-04 12:04

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 12:04:40 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 995f833182a2dbc404bdf78dec51112a
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 995f833182a2dbc404bdf78dec51112a
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-04 03:48

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 03:48:34 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: ab5e4a645e4955a39b06e20255a905f2
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 43ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: ab5e4a645e4955a39b06e20255a905f2
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sat, 04 Jan 2025 03:48:33 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-04 02:44

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 02:44:08 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 4589b79ea21938df7882f0da2697bc4a
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 34ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 4589b79ea21938df7882f0da2697bc4a
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sat, 04 Jan 2025 02:44:07 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-04 01:08

    HTTP/1.1 200 OK
    Date: Sat, 04 Jan 2025 01:08:18 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 3137b206d9c6cac05692979c686ecf3e
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 31ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    X-Request-Id: 3137b206d9c6cac05692979c686ecf3e
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sat, 04 Jan 2025 01:08:16 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-04 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-03 00:21

    HTTP/1.1 200 OK
    Date: Fri, 03 Jan 2025 00:21:33 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: cda42f3a660443287dd4ab1bec741e76
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 49ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 3
    Accept-Ranges: bytes
    X-Request-Id: cda42f3a660443287dd4ab1bec741e76
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 03 Jan 2025 00:21:29 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-03 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-02 22:06

    HTTP/1.1 200 OK
    Date: Thu, 02 Jan 2025 22:06:05 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7c7882d3e38a063bbe0af5969d420e72
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 7c7882d3e38a063bbe0af5969d420e72
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-02 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-02 13:58

    HTTP/1.1 200 OK
    Date: Thu, 02 Jan 2025 13:58:46 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f948ad7af3880109b40e2030df13d1da
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 49ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: f948ad7af3880109b40e2030df13d1da
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Thu, 02 Jan 2025 13:58:45 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-02 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-02 04:13

    HTTP/1.1 200 OK
    Date: Thu, 02 Jan 2025 04:13:19 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: a3d9982b1b0c6697233d06ac62ea8176
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 34ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: a3d9982b1b0c6697233d06ac62ea8176
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Thu, 02 Jan 2025 04:13:18 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-02 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · vakpor-chat.vakpor.com

    2025-01-01 21:38

    HTTP/1.1 200 OK
    Date: Wed, 01 Jan 2025 21:38:37 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7ba6632aaa594ab1886b9be97ccbfd56
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 4
    Accept-Ranges: bytes
    X-Request-Id: 7ba6632aaa594ab1886b9be97ccbfd56
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-01 18:52

    HTTP/1.1 200 OK
    Date: Wed, 01 Jan 2025 18:52:06 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 4763a37b44974e41e348226c3b8bbd5e
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 45ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 4763a37b44974e41e348226c3b8bbd5e
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Wed, 01 Jan 2025 18:52:05 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-01 12:02

    HTTP/1.1 200 OK
    Date: Wed, 01 Jan 2025 12:02:39 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: e90c092380fba2f17bc57fe8d8893656
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 18ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: e90c092380fba2f17bc57fe8d8893656
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Wed, 01 Jan 2025 12:02:38 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.vakpor-chat.vakpor.com

    2025-01-01 09:09

    HTTP/1.1 200 OK
    Date: Wed, 01 Jan 2025 09:09:36 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 51d1772651cf76a893c32498acbb30a8
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 3
    Accept-Ranges: bytes
    X-Request-Id: 51d1772651cf76a893c32498acbb30a8
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2025-01-01 03:42

    
                                
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2025-01-01 01:36

    
                                
    Found 2025-01-01 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2024-12-24 04:33

    HTTP/1.1 200 OK
    Date: Tue, 24 Dec 2024 04:33:24 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 87ecb7808a7d1f9192c2b8d3e2025d0c
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 35ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 87ecb7808a7d1f9192c2b8d3e2025d0c
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Tue, 24 Dec 2024 04:33:24 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-24 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.modetestmarchand.epagarmoney.com

    2024-12-23 11:06

    HTTP/1.1 200 OK
    Date: Mon, 23 Dec 2024 11:07:01 GMT
    Content-Type: text/html
    Content-Length: 1774
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 9e244fb8b5e4b195ef8fde7725b0aad5
    Last-Modified: Wed, 30 Aug 2023 16:14:50 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 9e244fb8b5e4b195ef8fde7725b0aad5
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Panel utilisateur - ePaGar
    
    <!doctype html>
    <html>
    <head>
        <base href='/' />
    
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    
        <title>Panel utilisateur - ePaGar</title>
    
        <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
        <meta name="viewport" content="width=device-width" />
    
        <link rel="manifest" href="./assets/fb/manifest.json">
        <script src="./assets/fb/firebase-messaging-sw.js"></script>
        <script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-app.js"></script>
        
        <link rel="apple-touch-icon" sizes="76x76" href="./assets/img/logo/apple-icon.png" />
        <link rel="icon" type="image/png" href="./assets/img/logo/favicon.png" />
        
        <!-- Fonts and icons -->
        <link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet" type="text/css"/>
    <link rel="stylesheet" href="styles.eb2a70d43b9e7af7190c.css"></head>
    <body>
        <app-root>
            <div class="loader">
                <svg class="circular" viewBox="25 25 50 50">
                    <circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10"/>
                </svg>
            </div>
        </app-root>
    <script src="runtime.5f611200ab9874013431.js" defer></script><script src="polyfills-es5.844d4dd9c6eeb2c18abd.js" nomodule defer></script><script src="polyfills.b9e1689a9fa4e2bf1477.js" defer></script><script src="scripts.143e83eada69ad60155b.js" defer></script><script src="main.f4eeb8079adddbd94aa8.js" defer></script></body>
    
    <script >
        
    </script>
    
    </html>
    
    Found 2024-12-23 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · modetestmarchand.epagarmoney.com

    2024-12-23 11:06

    HTTP/1.1 200 OK
    Date: Mon, 23 Dec 2024 11:07:01 GMT
    Content-Type: text/html
    Content-Length: 1774
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 0b17a9dad1d6543ad559e94a2aac52a6
    Last-Modified: Wed, 30 Aug 2023 16:14:50 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 0b17a9dad1d6543ad559e94a2aac52a6
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Panel utilisateur - ePaGar
    
    <!doctype html>
    <html>
    <head>
        <base href='/' />
    
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    
        <title>Panel utilisateur - ePaGar</title>
    
        <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
        <meta name="viewport" content="width=device-width" />
    
        <link rel="manifest" href="./assets/fb/manifest.json">
        <script src="./assets/fb/firebase-messaging-sw.js"></script>
        <script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-app.js"></script>
        
        <link rel="apple-touch-icon" sizes="76x76" href="./assets/img/logo/apple-icon.png" />
        <link rel="icon" type="image/png" href="./assets/img/logo/favicon.png" />
        
        <!-- Fonts and icons -->
        <link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet" type="text/css"/>
    <link rel="stylesheet" href="styles.eb2a70d43b9e7af7190c.css"></head>
    <body>
        <app-root>
            <div class="loader">
                <svg class="circular" viewBox="25 25 50 50">
                    <circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10"/>
                </svg>
            </div>
        </app-root>
    <script src="runtime.5f611200ab9874013431.js" defer></script><script src="polyfills-es5.844d4dd9c6eeb2c18abd.js" nomodule defer></script><script src="polyfills.b9e1689a9fa4e2bf1477.js" defer></script><script src="scripts.143e83eada69ad60155b.js" defer></script><script src="main.f4eeb8079adddbd94aa8.js" defer></script></body>
    
    <script >
        
    </script>
    
    </html>
    
    Found 2024-12-23 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2024-12-22 07:21

    HTTP/1.1 200 OK
    Date: Sun, 22 Dec 2024 07:21:26 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: ae7877055e3e3a670133c344ac84dd87
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 29ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    X-Request-Id: ae7877055e3e3a670133c344ac84dd87
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 22 Dec 2024 07:21:24 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-22 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2024-12-22 04:41

    HTTP/1.1 200 OK
    Date: Sun, 22 Dec 2024 04:41:57 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: bbae1977b2611fa8597bb2c7e3ed3f14
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 28ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: bbae1977b2611fa8597bb2c7e3ed3f14
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 22 Dec 2024 04:41:56 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-22 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2024-12-22 02:01

    HTTP/1.1 200 OK
    Date: Sun, 22 Dec 2024 02:01:11 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: fec6d1f04b7d2efde6d85aacf4b18577
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 86ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: fec6d1f04b7d2efde6d85aacf4b18577
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Sun, 22 Dec 2024 02:01:11 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-22 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.vakpor-chat.vakpor.com

    2024-12-20 18:27

    HTTP/1.1 200 OK
    Date: Fri, 20 Dec 2024 18:27:07 GMT
    Content-Type: text/javascript
    Content-Length: 2464
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: a7752ae565b4dd2343130d34da996ffe
    Last-Modified: Sun, 26 Dec 2021 01:34:59 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 1
    Accept-Ranges: bytes
    X-Request-Id: a7752ae565b4dd2343130d34da996ffe
    Edge-Cache-Engine-Hit: HIT
    
    
    const http = require('http');
    const express = require('express');
    const socketio = require('socket.io');
    const cors = require('cors');
    const dotenv = require("dotenv");
    const mongoose = require("mongoose");
    
    const { addUser, removeUser, getUser, getUsersInRoom, getRoomByUsers, getRoomById, getUserChats, addMessage } = require('./users');
    
    const router = require('./router');
    
    const app = express();
    const server = http.createServer(app);
    const io = socketio(server);
    
    
    dotenv.config();
    app.use(cors());
    app.use(router);
    
    mongoose.connect(process.env.MONGO_URL, { useNewUrlParser: true }, () => {
      console.log("Connected to MongoDB");
    });
    
    io.on('connection', async (socket) => {
      // socket.emit('notification', { text: `Vous êtes connecté au chat.` });
      console.log('Connected');
      socket.on('join', async ({ user, vendor }, callback) => {
        const { error, room } = await addUser({ user, vendor });
    
        if (error) return callback(error);
    
        socket.join(room.id);
    
        // socket.emit('notification', { text: `Vous discutez avec ${vendor.name}.` });
        socket.broadcast.to(room.id).emit('status', { user, status: `En ligne` });
    
        io.to(room.id).emit('roomData', room);
    
        callback();
      });
    
      socket.on('joinAll', async ({ userId }) => {
        const chats = await getUserChats(userId);
    
        if (chats && chats instanceof Array) {
          chats.forEach(chat => {
            socket.join(chat.id);
          });
        }
    
      });
    
      socket.on('sendMessage', async ({ from, roomId, message, date }) => {
        const fromUser = await getUser(from);
    
        const room = await getRoomById(roomId);
    
        // console.log("sendMessage", fromUser, room);
    
        if (room && fromUser) {
          if (room.users.find(user => user.id == from)) {
    
            const id = "id" + Math.random().toString(16).slice(2) + new Date().getTime();
            const msg = { id, user: from, text: message, date };
    
            // put the message in the room message
            // room.messages.push(msg);
            addMessage(roomId, msg);
    
            io.to(room.id).emit('message', { room: roomId, message: msg });
          }
        }
      });
    
      socket.on('disconnect', () => {
        // const user = removeUser(socket.id);
    
        // if (user) {
        //   socket.broadcast.to(room.id).emit('status', { user, status: `Hors ligne` });
        //   io.to(user.room).emit('roomData', { room: user.room, users: getUsersInRoom(user.room) });
        // }
      })
    });
    
    server.listen(process.env.PORT || 5000, () => console.log(`Server has started.`));
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.sgh-iot.vitrineht.com

    2024-12-20 17:09

    HTTP/1.1 302 Found
    Date: Fri, 20 Dec 2024 17:09:25 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 422
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 6f61914a4b305a8f79cedfb3f2c902e4
    Cache-Control: no-cache, private
    Set-Cookie: XSRF-TOKEN=eyJpdiI6ImN0YTF5TEZSRml0Nnl3RWc3MlZ3Unc9PSIsInZhbHVlIjoiYjFBSitpK1NiWEN4VEl6dVVyZURiakFBbDFqWUR4T2J4NDVWQkozMG5HR2hpT1lhTkQrRUdcL2x5S0s0U20ydGNXNUVvWGdVTjJVRVQ4XC9EZ29USHVJZz09IiwibWFjIjoiNjc1YTYzODkwZWEwZmM5MDhiMjAyMmU4MDVhOWY1MTdiZTNjNGY4YjY5YTVkMzk2YmQ3ZDMwYjVhNWRiODFkZSJ9; expires=Sat, 20-Dec-2025 17:09:25 GMT; Max-Age=31536000; path=/
    Set-Cookie: laravel_session=eyJpdiI6Im4yejRZXC9cLzhFQzI3YVZ0ZlRWVE9Ldz09IiwidmFsdWUiOiJNbDVIcXU3cEF1VGRUektpbFM1MFAwUThJTlNHU21KRGxlNVFneTE3ejJZVUdzY09Ta3I4TmdadUhlcHBsWEVwODYxaFJ0Y003Mk5sZWdpOG5pOW5cL1E9PSIsIm1hYyI6ImViNzMzZjNmODcxNGRkMjY2NDIxMTYwY2ZiODAzMTg1NTgwNDU2MjJhODBhNGE1ZTdkNDM3ZTU5NmM5ODczNDgifQ%3D%3D; expires=Sat, 20-Dec-2025 17:09:25 GMT; Max-Age=31536000; path=/; httponly
    Location: https://www.sgh-iot.vitrineht.com/auth/login
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 6f61914a4b305a8f79cedfb3f2c902e4
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://www.sgh-iot.vitrineht.com/auth/login
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://www.sgh-iot.vitrineht.com/auth/login'" />
    
            <title>Redirecting to https://www.sgh-iot.vitrineht.com/auth/login</title>
        </head>
        <body>
            Redirecting to <a href="https://www.sgh-iot.vitrineht.com/auth/login">https://www.sgh-iot.vitrineht.com/auth/login</a>.
        </body>
    </html>
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:80 · www.sgh-iot.vitrineht.com

    2024-12-20 17:09

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 20 Dec 2024 17:09:22 GMT
    Content-Type: text/html; charset=iso-8859-1
    Content-Length: 242
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 8e7ce272c12f885196415f868fb812b8
    Location: https://www.sgh-iot.vitrineht.com/
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 8e7ce272c12f885196415f868fb812b8
    Edge-Cache-Engine-Hit: HIT
    
    Page title: 301 Moved Permanently
    
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>301 Moved Permanently</title>
    </head><body>
    <h1>Moved Permanently</h1>
    <p>The document has moved <a href="https://www.sgh-iot.vitrineht.com/">here</a>.</p>
    </body></html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · sgh-iot.vitrineht.com

    2024-12-20 17:09

    HTTP/1.1 302 Found
    Date: Fri, 20 Dec 2024 17:09:23 GMT
    Content-Type: text/html; charset=UTF-8
    Content-Length: 406
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: ffb1b122190d6dea23928a0887653a2b
    Cache-Control: no-cache, private
    Set-Cookie: XSRF-TOKEN=eyJpdiI6Ikd6K1Z2OUlJVGJQRjRXZzVnQnVlS0E9PSIsInZhbHVlIjoicUoyc3hndWhlZHV5QVpxdjZFaHJrd0NhaHd3QnpJaUNzajhmZVJydWxZTW4yQ0dpYnVvbGJjSGg5SWZEb1VCR3E2V0kzeEpIK1RreVwvWkhwQ3I5MmJ3PT0iLCJtYWMiOiJlYzNmZjg4ODVmMDk0NGI2OTEwNjk0MTMwOTkzZDg2ODQ3MGRmOWVlNmFmMDlmZTAwOTQzMzJkZDUxMzVkMWFjIn0%3D; expires=Sat, 20-Dec-2025 17:09:23 GMT; Max-Age=31536000; path=/
    Set-Cookie: laravel_session=eyJpdiI6ImdKV2gyeVhkZzBLUU9zUTk3UUlXV0E9PSIsInZhbHVlIjoid0dHM0wzRGhhNDlPTXk5S2pnV3FpWFwvT21mREQyclhIOGxzcUNLM2M5V3dtWEFIbjIxZTFOT3I0RWJ0UnZFeE80OXVvdHVNYkltcmZBanhEVG40Z1ZnPT0iLCJtYWMiOiJiYmI5NjVjMDkyZjUxMmVlNWMxZGMyYWM4ZGQ0OTNjOWU0MTQzM2IwYmIzOWNhMjcwZWI5NGMwMWMyMjJkNzA5In0%3D; expires=Sat, 20-Dec-2025 17:09:23 GMT; Max-Age=31536000; path=/; httponly
    Location: https://sgh-iot.vitrineht.com/auth/login
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: ffb1b122190d6dea23928a0887653a2b
    Edge-Cache-Engine-Hit: MISS
    
    Page title: Redirecting to https://sgh-iot.vitrineht.com/auth/login
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8" />
            <meta http-equiv="refresh" content="0;url='https://sgh-iot.vitrineht.com/auth/login'" />
    
            <title>Redirecting to https://sgh-iot.vitrineht.com/auth/login</title>
        </head>
        <body>
            Redirecting to <a href="https://sgh-iot.vitrineht.com/auth/login">https://sgh-iot.vitrineht.com/auth/login</a>.
        </body>
    </html>
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:80 · sgh-iot.vitrineht.com

    2024-12-20 17:09

    HTTP/1.1 301 Moved Permanently
    Date: Fri, 20 Dec 2024 17:09:22 GMT
    Content-Type: text/html; charset=iso-8859-1
    Content-Length: 238
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f149198b1a8f4512350737593234fcb5
    Location: https://sgh-iot.vitrineht.com/
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: f149198b1a8f4512350737593234fcb5
    Edge-Cache-Engine-Hit: HIT
    
    Page title: 301 Moved Permanently
    
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>301 Moved Permanently</title>
    </head><body>
    <h1>Moved Permanently</h1>
    <p>The document has moved <a href="https://sgh-iot.vitrineht.com/">here</a>.</p>
    </body></html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2024-12-20 07:26

    HTTP/1.1 200 OK
    Date: Fri, 20 Dec 2024 07:26:20 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 92a4994679db83420cbb7464a542342a
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 28ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 92a4994679db83420cbb7464a542342a
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 20 Dec 2024 07:26:20 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2024-12-20 05:27

    HTTP/1.1 200 OK
    Date: Fri, 20 Dec 2024 05:27:28 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: f65e3f7a2955d1f231506a92f29ab75d
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 38ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: f65e3f7a2955d1f231506a92f29ab75d
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 20 Dec 2024 05:27:28 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2024-12-20 03:24

    HTTP/1.1 200 OK
    Date: Fri, 20 Dec 2024 03:24:35 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 485b615069952d4a33772acfa0bbef30
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 45ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 2
    Accept-Ranges: bytes
    X-Request-Id: 485b615069952d4a33772acfa0bbef30
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 20 Dec 2024 03:24:33 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · backend.vakpor.com

    2024-12-20 02:56

    HTTP/1.1 200 OK
    Date: Fri, 20 Dec 2024 02:56:04 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: ef759aeb5568a6afe436e57d119d8c79
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Response-Time: 18ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: ef759aeb5568a6afe436e57d119d8c79
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Fri, 20 Dec 2024 02:56:03 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-20 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.epagar.vitrineht.com

    2024-12-18 20:12

    HTTP/1.1 200 OK
    Date: Wed, 18 Dec 2024 20:12:59 GMT
    Content-Type: text/html
    Content-Length: 3858
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 9b9bfccde76b3fbfb3cefbf66bccc60b
    Last-Modified: Mon, 09 Nov 2020 10:24:22 GMT
    Vary: Accept-Encoding
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 9b9bfccde76b3fbfb3cefbf66bccc60b
    Edge-Cache-Engine-Hit: HIT
    
    Page title: ePaGar
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="utf-8" />
      <!-- Chrome firefox opera -->
      <meta name="theme-color" content="#fbb53c" />
      <!-- Windows Phone -->
      <meta name="msapplication-navbutton-color" content="#fbb53c">
      <!-- iOS Safari -->
      <meta name="apple-mobile-web-app-status-bar-style" content="#fbb53c">
      <!-- description -->
      <meta property="og:type" content="ePaGar" />
      <meta property="og:site_name" content="ePaGar" />
      <meta property="og:title" content="ePaGar" />
      <meta property="og:description" content="ePagar, mon compte virtuel qui me permet un paiement électronique depuis mon smartphone. J envoie et reçois de l argent où et quand je veux avec des transactions rapides et sécurisées!" />
      <meta property="og:url" content="url([[routerLink]="['/routePath']" routerLinkActive="router-link-active" ])" />
      <meta property="og:image" content="./assets/img/logo-b.png" />
      <meta property="og:image:width" content="285" />
      <meta property="og:image:height" content="285" />
      <meta property="og:locale" content="fr_MA" />
    
    
      <!-- needs to be right at the top to prevent Chrome from reloading favicon on every route change -->
      <link rel="icon" type="image/x-icon" href="favicon.ico" />
    
    
      <link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
      <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
      <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
      <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
      <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
      <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
      <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
      <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
      <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
      <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
      <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
      <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
      <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
      <link rel="manifest" href="/manifest.json">
      <meta name="msapplication-TileColor" content="#ffffff">
      <meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
      <meta name="theme-color" content="#ffffff">
    
    
    
    
    
    
      <meta name="viewport" content="width=device-width, initial-scale=1" />
      <meta name="theme-color" content="#ff6f61" />
      <!-- add to homescreen for ios -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="default" />
      <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
    
      <link href="https://fonts.googleapis.com/css?family=Poppins:100,300,400,700,900" rel="stylesheet" />
      <link href="https://fonts.googleapis.com/css?family=Roboto:700" rel="stylesheet" />
    
      <title>ePaGar</title>
      <base href="/" />
    <link rel="stylesheet" href="styles.f874ecc5bd1f43fb9fd3.css"></head>
    
    <body>
     
      <noscript>
        <p>
          This page requires JavaScript to work properly. Please enable JavaScript
          in your browser.
        </p>
      </noscript>
    
      <app-root></app-root>
    <script src="runtime-es2015.1830d3822e6c0d192555.js" type="module"></script><script src="runtime-es5.1830d3822e6c0d192555.js" nomodule defer></script><script src="polyfills-es5.95f4def34eb37295ab4b.js" nomodule defer></script><script src="polyfills-es2015.e25137563fa2e5cf7524.js" type="module"></script><script src="scripts.8c895b14ac5afb48e4f9.js" defer></script><script src="main-es2015.3909d70c69a4ddf1de99.js" type="module"></script><script src="main-es5.3909d70c69a4ddf1de99.js" nomodule defer></script></body>
    
    </html>
    Found 2024-12-18 by HttpPlugin
    Create report
  • Open service 195.110.34.158:80 · copro360.com

    2024-12-18 17:09

    HTTP/1.1 301 Moved Permanently
    Date: Wed, 18 Dec 2024 17:09:18 GMT
    Content-Type: text/html; charset=iso-8859-1
    Content-Length: 229
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 01a0f27b767a93c31c4570a319435e5e
    Location: https://copro360.com/
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    X-Request-Id: 01a0f27b767a93c31c4570a319435e5e
    Edge-Cache-Engine-Hit: HIT
    
    Page title: 301 Moved Permanently
    
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>301 Moved Permanently</title>
    </head><body>
    <h1>Moved Permanently</h1>
    <p>The document has moved <a href="https://copro360.com/">here</a>.</p>
    </body></html>
    
    Found 2024-12-18 by HttpPlugin
    Create report
  • Open service 195.110.34.158:443 · www.backend.vakpor.com

    2024-12-18 06:11

    HTTP/1.1 200 OK
    Date: Wed, 18 Dec 2024 06:11:45 GMT
    Content-Type: text/html; charset=utf-8
    Content-Length: 3496
    Connection: close
    server: fastestcache
    Edge-Cache-Engine: varnish
    Edge-Request-Id: 7e178c29faddb24f23661d5b185193a1
    Vary: Origin,Accept-Encoding
    Strict-Transport-Security: max-age=31536000; includeSubDomains
    X-Powered-By: Strapi <strapi.io>, Phusion Passenger(R) 6.0.23
    X-Response-Time: 37ms
    X-Frame-Options: SAMEORIGIN
    Status: 200 OK
    Edge-Cache-Engine-Mode: ACTIVE
    Age: 0
    Accept-Ranges: bytes
    X-Request-Id: 7e178c29faddb24f23661d5b185193a1
    Edge-Cache-Engine-Hit: HIT
    
    Page title: Welcome to your Strapi app
    
    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Welcome to your Strapi app</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" rel="stylesheet" />
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" />
        <link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet" />
        <style>
          *{-webkit-box-sizing:border-box;text-decoration:none}body,html{margin:0;padding:0;font-size:62.5%;-webkit-font-smoothing:antialiased}body{font-size:1.3rem;font-family:Lato,Helvetica,Arial,Verdana,sans-serif;background:#fafafb;margin:0;padding:80px 0;color:#333740;line-height:1.8rem}strong{font-weight:700}.wrapper{width:684px;margin:auto}h1{text-align:center}h2{font-size:1.8rem;font-weight:700;margin-bottom:1px}.logo{height:40px;margin-bottom:74px}.informations{position:relative;overflow:hidden;display:flex;justify-content:space-between;width:100%;height:126px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.informations:before{position:absolute;top:0;left:0;content:'';display:block;width:100%;height:2px;background:#007eff}.environment{display:inline-block;padding:0 10px;height:20px;margin-bottom:36px;background:#e6f0fb;border:1px solid #aed4fb;border-radius:2px;text-transform:uppercase;color:#007eff;font-size:1.2rem;font-weight:700;line-height:20px;letter-spacing:.05rem}.cta{display:inline-block;height:30px;padding:0 15px;margin-top:32px;border-radius:2px;color:#fff;font-weight:700;line-height:28px}.cta i{position:relative;display:inline-block;height:100%;vertical-align:middle;font-size:1rem;margin-right:20px}.cta i:before{position:absolute;top:8px}.cta-primary{background:#007eff}.cta-secondary{background:#6dbb1a}.text-align-right{text-align:right}.lets-started{position:relative;overflow:hidden;width:100%;height:144px;margin-top:18px;padding:20px 30px;background:#fff;border-radius:2px;box-shadow:0 2px 4px 0 #e3e9f3}.people-saying-hello{position:absolute;right:30px;bottom:-8px;width:113px;height:70px}.visible{opacity:1!important}.people-saying-hello img{position:absolute;max-width:100%;opacity:0;transition:opacity .2s ease-out}@media only screen and (max-width:768px){.wrapper{width:auto!important;margin:0 20px}.informations{flex-direction:column;height:auto}.environment{width:100%;text-align:center;margin-bottom:18px}.text-align-right{margin-top:18px;text-align:center}.cta{width:100%;text-align:center}.lets-started{height:auto}.people-saying-hello{display:none}}
        </style>
      </head>
      <body lang="en">
        <section class="wrapper">
          <h1><img class="logo" src="/assets/images/logo_login.png" /></h1>
          
            <div class="informations">
              <div>
                <span class="environment">development</span>
                <p>
                  The server is running successfully (<strong>v0.1.0)</strong>
                </p>
              </div>
              <div class="text-align-right">
                <p>Wed, 18 Dec 2024 06:11:45 GMT</p>
                
                <a class="cta cta-primary" href="/admin" target="_blank" title="Click to open the administration" ><i class="fas fa-external-link-alt"></i>Open the administration</a>
                
              </div>
            </div>
          
        </section>
    
        
      </body>
    </html>
    
    Found 2024-12-18 by HttpPlugin
    Create report
vakpor-chat.vakpor.comwww.vakpor-chat.vakpor.com
CN:
vakpor-chat.vakpor.com
Key:
RSA-2048
Issuer:
R11
Not before:
2024-11-23 04:10
Not after:
2025-02-21 04:10
adminepagar.vitrineht.comwww.adminepagar.vitrineht.com
CN:
adminepagar.vitrineht.com
Key:
RSA-2048
Issuer:
R10
Not before:
2025-01-14 04:07
Not after:
2025-04-14 04:07
backend.vakpor.comwww.backend.vakpor.com
CN:
www.backend.vakpor.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-12-28 04:08
Not after:
2025-03-28 04:08
pdvepagar.vitrineht.comwww.pdvepagar.vitrineht.com
CN:
pdvepagar.vitrineht.com
Key:
RSA-2048
Issuer:
R10
Not before:
2025-01-10 04:09
Not after:
2025-04-10 04:09
sandbox-pay.epagarmoney.comwww.sandbox-pay.epagarmoney.com
CN:
sandbox-pay.epagarmoney.com
Key:
RSA-2048
Issuer:
R11
Not before:
2025-01-09 04:11
Not after:
2025-04-09 04:11
bricolabapp.vitrineht.comwww.bricolabapp.vitrineht.com
CN:
bricolabapp.vitrineht.com
Key:
RSA-2048
Issuer:
R11
Not before:
2025-01-05 04:09
Not after:
2025-04-05 04:09
backend.vakpor.comwww.backend.vakpor.com
CN:
backend.vakpor.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-10-28 04:08
Not after:
2025-01-26 04:08
modetestmarchand.epagarmoney.comwww.modetestmarchand.epagarmoney.com
CN:
modetestmarchand.epagarmoney.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-12-23 10:07
Not after:
2025-03-23 10:07
sgh-iot.vitrineht.comwww.sgh-iot.vitrineht.com
CN:
sgh-iot.vitrineht.com
Key:
RSA-2048
Issuer:
R11
Not before:
2024-12-20 16:09
Not after:
2025-03-20 16:09
*.vitrineht.comvitrineht.comwww.bricolab.vitrineht.comwww.epagar.vitrineht.com
CN:
*.vitrineht.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-12-18 19:13
Not after:
2025-03-18 19:13