Returning 10 result(s) out of 451,691 in 0.309 second(s)

  • 51.75.241.212:8060 (tcp/http) - last seen on 2024-11-07 at 05:54:57 UTC

    • IP
      51.75.241.212
      Network
      51.75.0.0/16
      Domain(s)
      ip-51-75-241.eu
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux sUse
      URL

      http://51.75.241.212:8060/ 200

      Reverse DNS
      ns3131460.ip-51-75-241.eu
      ASN
      AS16276
      Organization
      OVH SAS
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux sUse
      Product
      F5 Nginx
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      5cb680978a20918cee76372d60e26c4e
      HTTP Header MD5
      3a6ae7c2a8bc500b40975937afb5eb8c
      HTTP Body MD5
      94f8ebee79e79aa36c914c95bef1028b
      Favicon MD5
      f3b331ecac5743ec328d0d0ebf982831
      Favicon MMH3
      -1334617766
    • HTTP/1.1 200 OK
      Server: nginx
      Date: Thu, 07 Nov 2024 04:54:31 GMT
      Content-Type: text/html
      Transfer-Encoding: chunked
      Connection: close
      Vary: Accept-Encoding
      X-Content-Type-Options: nosniff
      X-XSS-Protection: 1; mode=block
      Permissions-Policy: interest-cohort=()
      
      86
      <html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
        <head>
          
      f5
      
          <meta charset="utf-8">
          <meta http-equiv="content-type" content="text/html;charset=utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
          <meta name="theme-color" content="#2A3A4B">
          
      12
      <base href="/" />
      
      81
      
      
          <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
          <link rel="stylesheet" href="css/all.css?v=5764">
          
      1e43
      
          <link rel="manifest" id="manifest-placeholder">
      
          <script>
              // Dynamically generate the manifest location URL. It must be served from the document origin, and we may have
              // the base pointing to the CDN. This way we can generate a full URL which will bypass the base.
              document.querySelector('#manifest-placeholder').setAttribute('href', window.location.origin + '/manifest.json');
      
              document.addEventListener('DOMContentLoaded', () => {
                  if (!JitsiMeetJS.app) {
                      return;
                  }
      
                  JitsiMeetJS.app.renderEntryPoint({
                      Component: JitsiMeetJS.app.entryPoints.APP
                  })
      
                  const inIframe = () => {
                      try {
                          return window.self !== window.top;
                      } catch (e) {
                          return true;
                      }
                  };
      
                  const isElectron = navigator.userAgent.includes('Electron');
                  const shouldRegisterWorker = !isElectron && !inIframe() && 'serviceWorker' in navigator;
      
                  if (shouldRegisterWorker) {
                      navigator.serviceWorker
                          .register(window.location.origin + '/pwa-worker.js')
                          .then(reg => {
                              console.log('Service worker registered.', reg);
                          })
                          .catch(err => {
                              console.log(err);
                          });
                  }
              });
          </script>
          <script>
              // IE11 and earlier can be identified via their user agent and be
              // redirected to a page that is known to have no newer js syntax.
              if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {
                  var roomName = encodeURIComponent(window.location.pathname);
                  window.location.href = "static/recommendedBrowsers.html" + "?room=" + roomName;
              }
      
              window.indexLoadedTime = window.performance.now();
              console.log("(TIME) index.html loaded:\t", indexLoadedTime);
              // XXX the code below listeners for errors and displays an error message
              // in the document body when any of the required files fails to load.
              // The intention is to prevent from displaying broken page.
              var criticalFiles = [
                  "config.js",
                  "utils.js",
                  "do_external_connect.js",
                  "interface_config.js",
                  "logging_config.js",
                  "lib-jitsi-meet.min.js",
                  "app.bundle.min.js",
                  "all.css?v=5764"
              ];
              var loadErrHandler = function(e) {
                  var target = e.target;
                  // Error on <script> and <link>(CSS)
                  // <script> will have .src and <link> .href
                  var fileRef = (target.src ? target.src : target.href);
                  if (("SCRIPT" === target.tagName || "LINK" === target.tagName)
                      && criticalFiles.some(
                          function(file) { return fileRef.indexOf(file) !== -1 })) {
                      window.onload = function() {
                          // The whole complex part below implements page reloads with
                          // "exponential backoff". The retry attempt is passes as
                          // "rCounter" query parameter
                          var href = window.location.href;
      
                          var retryMatch = href.match(/.+(\?|&)rCounter=(\d+)/);
                          var retryCountStr = retryMatch ? retryMatch[2] : "0";
                          var retryCount = Number.parseInt(retryCountStr);
      
                          if (retryMatch == null) {
                              var separator = href.indexOf("?") === -1 ? "?" : "&";
                              var hashIdx = href.indexOf("#");
      
                              if (hashIdx === -1) {
                                  href += separator + "rCounter=1";
                              } else {
                                  var hashPart = href.substr(hashIdx);
      
                                  href = href.substr(0, hashIdx)
                                      + separator + "rCounter=1" + hashPart;
                              }
                          } else {
                              var separator = retryMatch[1];
      
                              href = href.replace(
                                  /(\?|&)rCounter=(\d+)/,
                                  separator + "rCounter=" + (retryCount + 1));
                          }
      
                          var delay = Math.pow(2, retryCount) * 2000;
                          if (isNaN(delay) || delay < 2000 || delay > 60000)
                              delay = 10000;
      
                          var showMoreText = "show more";
                          var showLessText = "show less";
      
                          document.body.innerHTML
                              = "<div style='"
                              + "position: absolute;top: 50%;left: 50%;"
                              + "text-align: center;"
                              + "font-size: medium;"
                              + "font-weight: 400;"
                              + "transform: translate(-50%, -50%)'>"
                              + "Uh oh! We couldn't fully download everything we needed :("
                              + "<br/> "
                              + "We will try again shortly. In the mean time, check for problems with your Internet connection!"
                              + "<br/><br/> "
                              + "<div id='moreInfo' style='"
                              + "display: none;'>" + "Missing " + fileRef
                              + "<br/><br/></div>"
                              + "<a id='showMore' style='"
                              + "text-decoration: underline;"
                              + "font-size:small;"
                              + "cursor: pointer'>" + showMoreText + "</a>"
                              + "&nbsp;&nbsp;&nbsp;"
                              + "<a id ='reloadLink' style='"
                              + "text-decoration: underline;"
                              + "font-size:small;"
                              + "'>reload now</a>"
                              + "</div>";
      
                          var reloadLink = document.getElementById('reloadLink');
                          reloadLink.setAttribute('href', href);
      
                          var showMoreElem = document.getElementById("showMore");
                          showMoreElem.addEventListener('click', function () {
                                  var moreInfoElem
                                          = document.getElementById("moreInfo");
      
                                  if (showMoreElem.innerHTML === showMoreText) {
                                      moreInfoElem.setAttribute(
                                          "style",
                                          "display: block;"
                                          + "color:#FF991F;"
                                          + "font-size:small;"
                                          + "user-select:text;");
                                      showMoreElem.innerHTML = showLessText;
                                  }
                                  else {
                                      moreInfoElem.setAttribute(
                                          "style", "display: none;");
                                      showMoreElem.innerHTML = showMoreText;
                                  }
                              });
      
                          window.setTimeout(
                              function () { window.location.replace(href); }, delay);
      
                          // Call extra handler if defined.
                          if (typeof postLoadErrorHandler === "function") {
                              postLoadErrorHandler(fileRef);
                          }
                      };
                      window.removeEventListener(
                          'error', loadErrHandler, true /* capture phase */);
                  }
              };
              window.addEventListener(
                  'error', loadErrHandler, true /* capture phase type of listener */);
          </script>
          <script>
      dbed
      /* eslint-disable no-unused-vars, no-var */
      
      var config = {
          // Connection
          //
      
          hosts: {
              // XMPP domain.
              domain: 'jitsi-meet.example.com',
      
              // When using authentication, domain for guest users.
              // anonymousdomain: 'guest.example.com',
      
              // Domain for authenticated users. Defaults to <domain>.
              // authdomain: 'jitsi-meet.example.com',
      
              // Focus component domain. Defaults to focus.<domain>.
              // focus: 'focus.jitsi-meet.example.com',
      
              // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
              muc: 'conference.jitsi-meet.example.com'
          },
      
          // BOSH URL. FIXME: use XEP-0156 to discover it.
          bosh: '//jitsi-meet.example.com/http-bind',
      
          // Websocket URL
          // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
      
          // The real JID of focus participant - can be overridden here
          // Do not change username - FIXME: Make focus username configurable
          // https://github.com/jitsi/jitsi-meet/issues/7376
          // focusUserJid: 'focus@auth.jitsi-meet.example.com',
      
      
          // Testing / experimental features.
          //
      
          testing: {
              // Disables the End to End Encryption feature. Useful for debugging
              // issues related to insertable streams.
              // disableE2EE: false,
      
              // Enables/disables thumbnail reordering in the filmstrip. It is enabled by default unless explicitly
              // disabled by the below option.
              // enableThumbnailReordering: true,
      
              // Enables XMPP WebSocket (as opposed to BOSH) for the given amount of users.
              // mobileXmppWsThreshold: 10 // enable XMPP WebSockets on mobile for 10% of the users
      
              // P2P test mode disables automatic switching to P2P when there are 2
              // participants in the conference.
              // p2pTestMode: false,
      
              // Enables the test specific features consumed by jitsi-meet-torture
              // testMode: false
      
              // Disables the auto-play behavior of *all* newly created video element.
              // This is useful when the client runs on a host with limited resources.
              // noAutoPlayVideo: false
      
              // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
              // simulcast is turned off for the desktop share. If presenter is turned
              // on while screensharing is in progress, the max bitrate is automatically
              // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
              // the probability for this to be enabled. This setting has been deprecated.
              // desktopSharingFrameRate.max now determines whether simulcast will be enabled
              // or disabled for the screenshare.
              // capScreenshareBitrate: 1 // 0 to disable - deprecated.
      
              // Enable callstats only for a percentage of users.
              // This takes a value between 0 and 100 which determines the probability for
              // the callstats to be enabled.
              // callStatsThreshold: 5 // enable callstats for 5% of the users.
          },
      
          // Feature Flags.
          flags: {
              // Enables source names in the signaling.
              // sourceNameSignaling: false,
          },
      
          // Disables moderator indicators.
          // disableModeratorIndicator: false,
      
          // Disables the reactions feature.
          // disableReactions: true,
      
          // Disables the reactions moderation feature.
          // disableReactionsModeration: false,
      
          // Disables polls feature.
          // disablePolls: false,
      
          // Disables self-view tile. (hides it from tile view and from filmstrip)
          // disableSelfView: false,
      
          // Disables self-view settings in UI
          // disableSelfViewSettings: false,
      
          // Disables ICE/UDP by filtering out local and remote UDP candidates in
          // signalling.
          // webrtcIceUdpDisable: false,
      
          // Disables ICE/TCP by filtering out local and remote TCP candidates in
          // signalling.
          // webrtcIceTcpDisable: false,
      
      
          // Media
          //
      
          // Enable unified plan implementation support on Chromium based browsers.
          // enableUnifiedOnChrome: false,
      
          // Audio
      
          // Disable measuring of audio levels.
          // disableAudioLevels: false,
          // audioLevelsInterval: 200,
      
          // Enabling this will run the lib-jitsi-meet no audio detection module which
          // will notify the user if the current selected microphone has no audio
          // input and will suggest another valid device if one is present.
          enableNoAudioDetection: true,
      
          // Enabling this will show a "Save Logs" link in the GSM popover that can be
          // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
          // about the call.
          // enableSaveLogs: false,
      
          // Enabling this will hide the "Show More" link in the GSM popover that can be
          // used to display more statistics about the connection (IP, Port, protocol, etc).
          // disableShowMoreStats: true,
      
          // Enabling this will run the lib-jitsi-meet noise detection module which will
          // notify the user if there is noise, other than voice, coming from the current
          // selected microphone. The purpose it to let the user know that the input could
          // be potentially unpleasant for other meeting participants.
          enableNoisyMicDetection: true,
      
          // Start the conference in audio only mode (no video is being received nor
          // sent).
          // startAudioOnly: false,
      
          // Every participant after the Nth will start audio muted.
          // startAudioMuted: 10,
      
          // Start calls with audio muted. Unlike the option above, this one is only
          // applied locally. FIXME: having these 2 options is confusing.
          // startWithAudioMuted: false,
      
          // Enabling it (with #params) will disable local audio output of remote
          // participants and to enable it back a reload is needed.
          // startSilent: false
      
          // Enables support for opus-red (redundancy for Opus).
          // enableOpusRed: false,
      
          // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.
          // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.
          // audioQuality: {
          //     stereo: false,
          //     opusMaxAverageBitrate: null // Value to fit the 6000 to 510000 range.
          // },
      
          // Video
      
          // Sets the preferred resolution (height) for local video. Defaults to 720.
          // resolution: 720,
      
          // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not
          // disableRemoveRaisedHandOnFocus: false,
      
          // Specifies whether there will be a search field in speaker stats or not
          // disableSpeakerStatsSearch: false,
      
          // Specifies whether participants in speaker stats should be ordered or not, and with what priority
          // speakerStatsOrder: [
          //  'role', <- Moderators on top
          //  'name', <- Alphabetically by name
          //  'hasLeft', <- The ones that have left in the bottom
          // ] <- the order of the array elements determines priority
      
          // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
          // Use -1 to disable.
          // maxFullResolutionParticipants: 2,
      
          // w3c spec-compliant video constraints to use for video capture. Currently
          // used by browsers that return true from lib-jitsi-meet's
          // util#browser#usesNewGumFlow. The constraints are independent from
          // this config's resolution value. Defaults to requesting an ideal
          // resolution of 720p.
          // constraints: {
          //     video: {
          //         height: {
          //             ideal: 720,
          //             max: 720,
          //             min: 240
          //         }
          //     }
          // },
      
          // Enable / disable simulcast support.
          // disableSimulcast: false,
      
          // Enable / disable layer suspension.  If enabled, endpoints whose HD layers are not in use will be suspended
          // (no longer sent)
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:54:57.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "w3.org",
                  "ogp.me",
                  "github.com",
                  "schema.org"
               ],
               "file" : [
                  "manifest.json"
               ],
               "hostname" : [
                  "github.com",
                  "ogp.me",
                  "schema.org",
                  "www.w3.org"
               ],
               "url" : [
                  "http://ogp.me/ns",
                  "http://schema.org/Product",
                  "http://www.w3.org/1999/html",
                  "https://github.com/jitsi/jitsi-meet/issues/7376"
               ]
            },
            "favicon" : {
               "image" : "AAABAAIAEBAAAAEACABoBQAAJgAAACAgAAABAAgAqAgAAI4FAAAoAAAAEAAAACAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvHYRAL13EgC9eRYAv30dAMB+IADBgCMAwoQpAMWKNADFijUAx405AMeNOgDHjjwAyY88AMePPgDIkD8Ax5BAAMiQQADIkUEAyJFCAMqTRADJk0YAy5RGAMqURwDLlkoAy5ZLAMuXSwDLl00AzJlQAMyaUgDMmlMAzZtTAM2bVADNnFQAzZxVAM6dVgDNnVcAzp5YAM+fWgDPoF0A0aJfANGiYADRo2EA0KNjANKkYQDRpGMA0KRlANKlYwDOpWoA06ZmANKmaADUqGkA0qhrANKobADSqW0A06ltANWrbgDUrXMA1a1zANWtdQDVrnQA1a51ANewdgDVsHsA2LF6ANi0gQDWtIIA2bWAANm1gQDYtoQA2bqOANu8jgDfvYsA3L2QAN2/lADhw5gA38OcAOLGnQDix6AA48iiAObNqQDn0bAA69i9AOvZvwDs28EA79/JAPLn1gDy59cA8+nbAPTq3AD0690A9u7jAPn28AD+/fwA/v39AP/+/gD///4A////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYFVQYGBgYGBgYGBgYGBgYGAlP2BgYGBgYGBgYGBgYGBWDxNfXl9gYGBgYGBgYGBgTDQZKQgIMFlgYGBgYGBgYEciLTUcHzMJTlxgYGBgYGBKLCo5EAAAOh0uYGBgYGBgWgpIGkkfAhkhG1FgYGBgYGBUFyMFBD4SQEs3YGBgYGBgYEIhFkEmHgRFFV5gYGBgYGBPGw0BIAMUKAxfYGBgYGBgXT0LRAY4QzEnYGBgYGBgYGBgUiQYOzYOWGBgYGBgYGBgYFsIH0YRV2BgYGBgYGBgYGBgUQ48L01gYGBgYGBgYGBgYGBcBzJTYGBgYGBgYGBgYGBgYCsYXGBgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACAAAABAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL13EQC+eBIAwHkRAL55FQDCexQAvnsaAMF8FwDAfBkAvnwdAL9+IQDAfyEAwYAjAMGBJgDBgykAwIMsAMOEKgDChS0AwYYxAMWJMgDFijYAwoo5AMWLOADGjDoAxo49AMiPPgDGj0AAyJBAAMeQQQDJkkQAyZRHAMqVSQDKl00AzJlOAMuZUADMmlIAzZtUAMydWQDRn1YAzqBeANChXgDPoWAA0KNgANKkYgDSpWUA1aZiANGmaQDSqGsA1KlrANKpbQDUqm4A1KtxANOrcgDWrXMA1a51ANWveADXsXoA1rJ+ANmzewDZs30A1rOAANOzhQDWtIIA1rWFANm2ggDZt4cA1reKANu4hgDWuIwA2rmJAN26iADauo0A3LyNANq9kwDbvpQA3b+TAN2/lADXvpoA3sGWAN7CmQDdw5wA3MSfAOHFnADexqIA4cmnAOHKqgDkzKoA4s2tAOTOrwDjz7IA5tCxAN7PuADj0LUA5dK1AOXUuwDp1bkA5ta+AOXWwADp2cIA5tnFAOvdyADr3swA7eHOAOvh0gDt4tEA8ebXAPLn2QDy6d0A8uvhAPDr5AD07eIA9e/lAPbx6gD18ewA9/XxAPn28QD7+PUA/Pr3AP39+wD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2dnZ2dnZ2bzt2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnYzHHZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2agMFc3Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnYqAABjdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2aQAOAEp2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZEAFgDI3Z2dnV1dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2diEFbCMDZEohEBAgRm12dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2DRkzWAEAAAUYFwUAAzt0dnZ2dnZ2dnZ2dnZ2dnZ2dnYFJSIiTwxJUj9CU1QbAB9zdnZ2dnZ2dnZ2dnZ2dnZ2dgYmIQBJZg8AAAAAC1I1AAg1cnZ2dnZ2dnZ2dnZ2dnZ2CCAxAFsrTgoAAAAAAEokFQAXb3Z2dnZ2dnZ2dnZ2dnYeCFwBWAtUXQEAAAAAA2c4PgAjdnZ2dnZ2dnZ2dnZ2dk4ARkRwXRcvJgAAAAAANxYuLQBZdnZ2dnZ2dnZ2dnZ2cxUAMCgDDFxlXTQMAAhCRAxUBR52dnZ2dnZ2dnZ2dnZ2bR0AAABPDAADHD9IThocXGsnAW52dnZ2dnZ2dnZ2dnZ2dmoNED8WBQABIj4DA0Y4S04CVnZ2dnZ2dnZ2dnZ2dnZ2cQMpHhNhYjweDDFOFwE+TwFFdXZ2dnZ2dnZ2dnZ2dnZwACsbAAAaOkc1EwAACTlMADB2dnZ2dnZ2dnZ2dnZ2dnUMEkQAAAAAAAEAAAAvElEDLHZ2dnZ2dnZ2dnZ2dnZ2dj8ANU4XAwA3WBoAAEECUAErdnZ2dnZ2dnZ2dnZ2dnZ2cx4AEkRWYy0FQC0HQANUAEV2dnZ2dnZ2dnZ2dnZ2dnZ2dEIJAAJBAAADY1dcTR8BZ3Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnQyAFkWAUYxXyoPADV2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dk0BQyc+YAQ9ABBNdXZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2YwA2EgFAYS0AZ3Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ1EwNGOw9iNgBRdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZpEAAIO11SBR92dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZyThMARFoRFHZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2cxARbwMndnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2JQdNAVV2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnYqAQsLc3Z2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dmgWEF52dnZ2dnZ2dnZ2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
               "imagemd5" : "f3b331ecac5743ec328d0d0ebf982831",
               "imagemmh3" : -1334617766,
               "length" : 3638,
               "url" : "/favicon.ico"
            },
            "http" : {
               "bodymd5" : "94f8ebee79e79aa36c914c95bef1028b",
               "bodymmh3" : 59673464,
               "headermd5" : "3a6ae7c2a8bc500b40975937afb5eb8c",
               "headermmh3" : -1668975993
            },
            "length" : 16384
         },
         "asn" : "AS16276",
         "country" : "FR",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Thu, 07 Nov 2024 04:54:31 GMT\r\nContent-Type: text/html\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nX-Content-Type-Options: nosniff\r\nX-XSS-Protection: 1; mode=block\r\nPermissions-Policy: interest-cohort=()\r\n\r\n86\r\n<html itemscope itemtype=\"http://schema.org/Product\" prefix=\"og: http://ogp.me/ns#\" xmlns=\"http://www.w3.org/1999/html\">\n  <head>\n    \r\nf5\r\n\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0\">\n    <meta name=\"theme-color\" content=\"#2A3A4B\">\n    \r\n12\r\n<base href=\"/\" />\n\r\n81\r\n\n\n    <link rel=\"apple-touch-icon\" href=\"images/apple-touch-icon.png\">\n    <link rel=\"stylesheet\" href=\"css/all.css?v=5764\">\n    \r\n1e43\r\n\n    <link rel=\"manifest\" id=\"manifest-placeholder\">\n\n    <script>\n        // Dynamically generate the manifest location URL. It must be served from the document origin, and we may have\n        // the base pointing to the CDN. This way we can generate a full URL which will bypass the base.\n        document.querySelector('#manifest-placeholder').setAttribute('href', window.location.origin + '/manifest.json');\n\n        document.addEventListener('DOMContentLoaded', () => {\n            if (!JitsiMeetJS.app) {\n                return;\n            }\n\n            JitsiMeetJS.app.renderEntryPoint({\n                Component: JitsiMeetJS.app.entryPoints.APP\n            })\n\n            const inIframe = () => {\n                try {\n                    return window.self !== window.top;\n                } catch (e) {\n                    return true;\n                }\n            };\n\n            const isElectron = navigator.userAgent.includes('Electron');\n            const shouldRegisterWorker = !isElectron && !inIframe() && 'serviceWorker' in navigator;\n\n            if (shouldRegisterWorker) {\n                navigator.serviceWorker\n                    .register(window.location.origin + '/pwa-worker.js')\n                    .then(reg => {\n                        console.log('Service worker registered.', reg);\n                    })\n                    .catch(err => {\n                        console.log(err);\n                    });\n            }\n        });\n    </script>\n    <script>\n        // IE11 and earlier can be identified via their user agent and be\n        // redirected to a page that is known to have no newer js syntax.\n        if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {\n            var roomName = encodeURIComponent(window.location.pathname);\n            window.location.href = \"static/recommendedBrowsers.html\" + \"?room=\" + roomName;\n        }\n\n        window.indexLoadedTime = window.performance.now();\n        console.log(\"(TIME) index.html loaded:\\t\", indexLoadedTime);\n        // XXX the code below listeners for errors and displays an error message\n        // in the document body when any of the required files fails to load.\n        // The intention is to prevent from displaying broken page.\n        var criticalFiles = [\n            \"config.js\",\n            \"utils.js\",\n            \"do_external_connect.js\",\n            \"interface_config.js\",\n            \"logging_config.js\",\n            \"lib-jitsi-meet.min.js\",\n            \"app.bundle.min.js\",\n            \"all.css?v=5764\"\n        ];\n        var loadErrHandler = function(e) {\n            var target = e.target;\n            // Error on <script> and <link>(CSS)\n            // <script> will have .src and <link> .href\n            var fileRef = (target.src ? target.src : target.href);\n            if ((\"SCRIPT\" === target.tagName || \"LINK\" === target.tagName)\n                && criticalFiles.some(\n                    function(file) { return fileRef.indexOf(file) !== -1 })) {\n                window.onload = function() {\n                    // The whole complex part below implements page reloads with\n                    // \"exponential backoff\". The retry attempt is passes as\n                    // \"rCounter\" query parameter\n                    var href = window.location.href;\n\n                    var retryMatch = href.match(/.+(\\?|&)rCounter=(\\d+)/);\n                    var retryCountStr = retryMatch ? retryMatch[2] : \"0\";\n                    var retryCount = Number.parseInt(retryCountStr);\n\n                    if (retryMatch == null) {\n                        var separator = href.indexOf(\"?\") === -1 ? \"?\" : \"&\";\n                        var hashIdx = href.indexOf(\"#\");\n\n                        if (hashIdx === -1) {\n                            href += separator + \"rCounter=1\";\n                        } else {\n                            var hashPart = href.substr(hashIdx);\n\n                            href = href.substr(0, hashIdx)\n                                + separator + \"rCounter=1\" + hashPart;\n                        }\n                    } else {\n                        var separator = retryMatch[1];\n\n                        href = href.replace(\n                            /(\\?|&)rCounter=(\\d+)/,\n                            separator + \"rCounter=\" + (retryCount + 1));\n                    }\n\n                    var delay = Math.pow(2, retryCount) * 2000;\n                    if (isNaN(delay) || delay < 2000 || delay > 60000)\n                        delay = 10000;\n\n                    var showMoreText = \"show more\";\n                    var showLessText = \"show less\";\n\n                    document.body.innerHTML\n                        = \"<div style='\"\n                        + \"position: absolute;top: 50%;left: 50%;\"\n                        + \"text-align: center;\"\n                        + \"font-size: medium;\"\n                        + \"font-weight: 400;\"\n                        + \"transform: translate(-50%, -50%)'>\"\n                        + \"Uh oh! We couldn't fully download everything we needed :(\"\n                        + \"<br/> \"\n                        + \"We will try again shortly. In the mean time, check for problems with your Internet connection!\"\n                        + \"<br/><br/> \"\n                        + \"<div id='moreInfo' style='\"\n                        + \"display: none;'>\" + \"Missing \" + fileRef\n                        + \"<br/><br/></div>\"\n                        + \"<a id='showMore' style='\"\n                        + \"text-decoration: underline;\"\n                        + \"font-size:small;\"\n                        + \"cursor: pointer'>\" + showMoreText + \"</a>\"\n                        + \"&nbsp;&nbsp;&nbsp;\"\n                        + \"<a id ='reloadLink' style='\"\n                        + \"text-decoration: underline;\"\n                        + \"font-size:small;\"\n                        + \"'>reload now</a>\"\n                        + \"</div>\";\n\n                    var reloadLink = document.getElementById('reloadLink');\n                    reloadLink.setAttribute('href', href);\n\n                    var showMoreElem = document.getElementById(\"showMore\");\n                    showMoreElem.addEventListener('click', function () {\n                            var moreInfoElem\n                                    = document.getElementById(\"moreInfo\");\n\n                            if (showMoreElem.innerHTML === showMoreText) {\n                                moreInfoElem.setAttribute(\n                                    \"style\",\n                                    \"display: block;\"\n                                    + \"color:#FF991F;\"\n                                    + \"font-size:small;\"\n                                    + \"user-select:text;\");\n                                showMoreElem.innerHTML = showLessText;\n                            }\n                            else {\n                                moreInfoElem.setAttribute(\n                                    \"style\", \"display: none;\");\n                                showMoreElem.innerHTML = showMoreText;\n                            }\n                        });\n\n                    window.setTimeout(\n                        function () { window.location.replace(href); }, delay);\n\n                    // Call extra handler if defined.\n                    if (typeof postLoadErrorHandler === \"function\") {\n                        postLoadErrorHandler(fileRef);\n                    }\n                };\n                window.removeEventListener(\n                    'error', loadErrHandler, true /* capture phase */);\n            }\n        };\n        window.addEventListener(\n            'error', loadErrHandler, true /* capture phase type of listener */);\n    </script>\n    <script>\r\ndbed\r\n/* eslint-disable no-unused-vars, no-var */\n\nvar config = {\n    // Connection\n    //\n\n    hosts: {\n        // XMPP domain.\n        domain: 'jitsi-meet.example.com',\n\n        // When using authentication, domain for guest users.\n        // anonymousdomain: 'guest.example.com',\n\n        // Domain for authenticated users. Defaults to <domain>.\n        // authdomain: 'jitsi-meet.example.com',\n\n        // Focus component domain. Defaults to focus.<domain>.\n        // focus: 'focus.jitsi-meet.example.com',\n\n        // XMPP MUC domain. FIXME: use XEP-0030 to discover it.\n        muc: 'conference.jitsi-meet.example.com'\n    },\n\n    // BOSH URL. FIXME: use XEP-0156 to discover it.\n    bosh: '//jitsi-meet.example.com/http-bind',\n\n    // Websocket URL\n    // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',\n\n    // The real JID of focus participant - can be overridden here\n    // Do not change username - FIXME: Make focus username configurable\n    // https://github.com/jitsi/jitsi-meet/issues/7376\n    // focusUserJid: 'focus@auth.jitsi-meet.example.com',\n\n\n    // Testing / experimental features.\n    //\n\n    testing: {\n        // Disables the End to End Encryption feature. Useful for debugging\n        // issues related to insertable streams.\n        // disableE2EE: false,\n\n        // Enables/disables thumbnail reordering in the filmstrip. It is enabled by default unless explicitly\n        // disabled by the below option.\n        // enableThumbnailReordering: true,\n\n        // Enables XMPP WebSocket (as opposed to BOSH) for the given amount of users.\n        // mobileXmppWsThreshold: 10 // enable XMPP WebSockets on mobile for 10% of the users\n\n        // P2P test mode disables automatic switching to P2P when there are 2\n        // participants in the conference.\n        // p2pTestMode: false,\n\n        // Enables the test specific features consumed by jitsi-meet-torture\n        // testMode: false\n\n        // Disables the auto-play behavior of *all* newly created video element.\n        // This is useful when the client runs on a host with limited resources.\n        // noAutoPlayVideo: false\n\n        // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,\n        // simulcast is turned off for the desktop share. If presenter is turned\n        // on while screensharing is in progress, the max bitrate is automatically\n        // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines\n        // the probability for this to be enabled. This setting has been deprecated.\n        // desktopSharingFrameRate.max now determines whether simulcast will be enabled\n        // or disabled for the screenshare.\n        // capScreenshareBitrate: 1 // 0 to disable - deprecated.\n\n        // Enable callstats only for a percentage of users.\n        // This takes a value between 0 and 100 which determines the probability for\n        // the callstats to be enabled.\n        // callStatsThreshold: 5 // enable callstats for 5% of the users.\n    },\n\n    // Feature Flags.\n    flags: {\n        // Enables source names in the signaling.\n        // sourceNameSignaling: false,\n    },\n\n    // Disables moderator indicators.\n    // disableModeratorIndicator: false,\n\n    // Disables the reactions feature.\n    // disableReactions: true,\n\n    // Disables the reactions moderation feature.\n    // disableReactionsModeration: false,\n\n    // Disables polls feature.\n    // disablePolls: false,\n\n    // Disables self-view tile. (hides it from tile view and from filmstrip)\n    // disableSelfView: false,\n\n    // Disables self-view settings in UI\n    // disableSelfViewSettings: false,\n\n    // Disables ICE/UDP by filtering out local and remote UDP candidates in\n    // signalling.\n    // webrtcIceUdpDisable: false,\n\n    // Disables ICE/TCP by filtering out local and remote TCP candidates in\n    // signalling.\n    // webrtcIceTcpDisable: false,\n\n\n    // Media\n    //\n\n    // Enable unified plan implementation support on Chromium based browsers.\n    // enableUnifiedOnChrome: false,\n\n    // Audio\n\n    // Disable measuring of audio levels.\n    // disableAudioLevels: false,\n    // audioLevelsInterval: 200,\n\n    // Enabling this will run the lib-jitsi-meet no audio detection module which\n    // will notify the user if the current selected microphone has no audio\n    // input and will suggest another valid device if one is present.\n    enableNoAudioDetection: true,\n\n    // Enabling this will show a \"Save Logs\" link in the GSM popover that can be\n    // used to collect debug information (XMPP IQs, SDP offer/answer cycles)\n    // about the call.\n    // enableSaveLogs: false,\n\n    // Enabling this will hide the \"Show More\" link in the GSM popover that can be\n    // used to display more statistics about the connection (IP, Port, protocol, etc).\n    // disableShowMoreStats: true,\n\n    // Enabling this will run the lib-jitsi-meet noise detection module which will\n    // notify the user if there is noise, other than voice, coming from the current\n    // selected microphone. The purpose it to let the user know that the input could\n    // be potentially unpleasant for other meeting participants.\n    enableNoisyMicDetection: true,\n\n    // Start the conference in audio only mode (no video is being received nor\n    // sent).\n    // startAudioOnly: false,\n\n    // Every participant after the Nth will start audio muted.\n    // startAudioMuted: 10,\n\n    // Start calls with audio muted. Unlike the option above, this one is only\n    // applied locally. FIXME: having these 2 options is confusing.\n    // startWithAudioMuted: false,\n\n    // Enabling it (with #params) will disable local audio output of remote\n    // participants and to enable it back a reload is needed.\n    // startSilent: false\n\n    // Enables support for opus-red (redundancy for Opus).\n    // enableOpusRed: false,\n\n    // Specify audio quality stereo and opusMaxAverageBitrate values in order to enable HD audio.\n    // Beware, by doing so, you are disabling echo cancellation, noise suppression and AGC.\n    // audioQuality: {\n    //     stereo: false,\n    //     opusMaxAverageBitrate: null // Value to fit the 6000 to 510000 range.\n    // },\n\n    // Video\n\n    // Sets the preferred resolution (height) for local video. Defaults to 720.\n    // resolution: 720,\n\n    // Specifies whether the raised hand will hide when someone becomes a dominant speaker or not\n    // disableRemoveRaisedHandOnFocus: false,\n\n    // Specifies whether there will be a search field in speaker stats or not\n    // disableSpeakerStatsSearch: false,\n\n    // Specifies whether participants in speaker stats should be ordered or not, and with what priority\n    // speakerStatsOrder: [\n    //  'role', <- Moderators on top\n    //  'name', <- Alphabetically by name\n    //  'hasLeft', <- The ones that have left in the bottom\n    // ] <- the order of the array elements determines priority\n\n    // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.\n    // Use -1 to disable.\n    // maxFullResolutionParticipants: 2,\n\n    // w3c spec-compliant video constraints to use for video capture. Currently\n    // used by browsers that return true from lib-jitsi-meet's\n    // util#browser#usesNewGumFlow. The constraints are independent from\n    // this config's resolution value. Defaults to requesting an ideal\n    // resolution of 720p.\n    // constraints: {\n    //     video: {\n    //         height: {\n    //             ideal: 720,\n    //             max: 720,\n    //             min: 240\n    //         }\n    //     }\n    // },\n\n    // Enable / disable simulcast support.\n    // disableSimulcast: false,\n\n    // Enable / disable layer suspension.  If enabled, endpoints whose HD layers are not in use will be suspended\n    // (no longer sent)",
         "datamd5" : "5cb680978a20918cee76372d60e26c4e",
         "datammh3" : -669467509,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "ip-51-75-241.eu"
         ],
         "geolocus" : {
            "asn" : "AS16276",
            "continent" : "EU",
            "continentname" : "Europe",
            "country" : "FR",
            "countryname" : "France",
            "domain" : [
               "ovh.net"
            ],
            "isineu" : "true",
            "latitude" : "46.227638",
            "location" : "46.227638,2.213749",
            "longitude" : "2.213749",
            "netname" : "SD-RBX-R710A25",
            "organization" : "OVH SAS",
            "subnet" : "51.75.240.0/20"
         },
         "host" : [
            "ns3131460"
         ],
         "hostname" : [
            "ns3131460.ip-51-75-241.eu"
         ],
         "ip" : "51.75.241.212",
         "ipv6" : "false",
         "latitude" : "48.8582",
         "location" : "48.8582,2.3387",
         "longitude" : "2.3387",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "OVH SAS",
         "os" : "Linux",
         "osdistribution" : "sUse",
         "osvendor" : "Linux",
         "port" : 8060,
         "product" : "Nginx",
         "productvendor" : "F5",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "ns3131460.ip-51-75-241.eu"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "51.75.0.0/16",
         "tag" : "<enterprise field>: tag",
         "tld" : [
            "eu"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 101.132.121.149:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:39 UTC

    • IP
      101.132.121.149
      Network
      101.132.0.0/15
      Device

      <enterprise field>: device.class

      Operating System
      Microsoft Windows
      URL

      http://101.132.121.149:8060/ 200

      HTTP Title
      Welcome to OpenResty!
      ASN
      AS37963
      Organization
      Hangzhou Alibaba Advertising Co.,Ltd.
      Protocol
      http
      Source
      datascan
    • Operating System
      Microsoft Windows
      Product
      OpenResty OpenResty
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      d37e5376e68ccbf1941dddf4a0c092d6
      HTTP Header MD5
      b9630050a3a18d0b869888ff6f564f0e
      HTTP Body MD5
      4c58a19da43c2e4c47593beade2c6576
    • HTTP/1.1 200 OK
      Server: openresty
      Date: Thu, 07 Nov 2024 05:49:41 GMT
      Content-Type: text/html
      Content-Length: 1125
      Last-Modified: Tue, 21 Nov 2023 04:04:34 GMT
      Connection: close
      ETag: "655c2c52-465"
      X-Frame-Options: SAMEORIGIN
      Accept-Ranges: bytes
      
      <!DOCTYPE html>
      <html>
      <head>
      <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
      <meta content="utf-8" http-equiv="encoding">
      <title>Welcome to OpenResty!</title>
      <style>
          body {
              width: 35em;
              margin: 0 auto;
              font-family: Tahoma, Verdana, Arial, sans-serif;
          }
      </style>
      </head>
      <body>
      <h1>Welcome to OpenResty!</h1>
      <p>If you see this page, the OpenResty web platform is successfully installed and
      working. Further configuration is required.</p>
      
      <p>For online documentation and support please refer to our
      <a href="https://openresty.org/">openresty.org</a> site<br/>
      Commercial support is available at
      <a href="https://openresty.com/">openresty.com</a>.</p>
      <p>We have articles on troubleshooting issues like <a href="https://blog.openresty.com/en/lua-cpu-flame-graph/?src=wb">high CPU usage</a> and
      <a href="https://blog.openresty.com/en/how-or-alloc-mem/">large memory usage</a> on <a href="https://blog.openresty.com/">our official blog site</a>.
      <p><em>Thank you for flying <a href="https://openresty.org/">OpenResty</a>.</em></p>
      </body>
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:39.000Z",
         "app" : {
            "extract" : {
               "domain" : [
                  "openresty.org",
                  "openresty.com"
               ],
               "hostname" : [
                  "blog.openresty.com",
                  "openresty.com",
                  "openresty.org"
               ],
               "url" : [
                  "https://blog.openresty.com/",
                  "https://blog.openresty.com/en/how-or-alloc-mem/",
                  "https://blog.openresty.com/en/lua-cpu-flame-graph/?src=wb",
                  "https://openresty.com/",
                  "https://openresty.org/"
               ]
            },
            "http" : {
               "bodymd5" : "4c58a19da43c2e4c47593beade2c6576",
               "bodymmh3" : -1368733428,
               "header" : [
                  {
                     "name" : "Last-Modified",
                     "value" : "Tue, 21 Nov 2023 04:04:34 GMT"
                  },
                  {
                     "value" : "655c2c52-465",
                     "name" : "ETag"
                  }
               ],
               "headermd5" : "b9630050a3a18d0b869888ff6f564f0e",
               "headermmh3" : -2083436687,
               "title" : "Welcome to OpenResty!"
            },
            "length" : 1385
         },
         "asn" : "AS37963",
         "city" : "Shanghai",
         "country" : "CN",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nServer: openresty\r\nDate: Thu, 07 Nov 2024 05:49:41 GMT\r\nContent-Type: text/html\r\nContent-Length: 1125\r\nLast-Modified: Tue, 21 Nov 2023 04:04:34 GMT\r\nConnection: close\r\nETag: \"655c2c52-465\"\r\nX-Frame-Options: SAMEORIGIN\r\nAccept-Ranges: bytes\r\n\r\n<!DOCTYPE html>\r\n<html>\r\n<head>\r\n<meta content=\"text/html;charset=utf-8\" http-equiv=\"Content-Type\">\r\n<meta content=\"utf-8\" http-equiv=\"encoding\">\r\n<title>Welcome to OpenResty!</title>\r\n<style>\r\n    body {\r\n        width: 35em;\r\n        margin: 0 auto;\r\n        font-family: Tahoma, Verdana, Arial, sans-serif;\r\n    }\r\n</style>\r\n</head>\r\n<body>\r\n<h1>Welcome to OpenResty!</h1>\r\n<p>If you see this page, the OpenResty web platform is successfully installed and\r\nworking. Further configuration is required.</p>\r\n\r\n<p>For online documentation and support please refer to our\r\n<a href=\"https://openresty.org/\">openresty.org</a> site<br/>\r\nCommercial support is available at\r\n<a href=\"https://openresty.com/\">openresty.com</a>.</p>\r\n<p>We have articles on troubleshooting issues like <a href=\"https://blog.openresty.com/en/lua-cpu-flame-graph/?src=wb\">high CPU usage</a> and\r\n<a href=\"https://blog.openresty.com/en/how-or-alloc-mem/\">large memory usage</a> on <a href=\"https://blog.openresty.com/\">our official blog site</a>.\r\n<p><em>Thank you for flying <a href=\"https://openresty.org/\">OpenResty</a>.</em></p>\r\n</body>\r\n</html>\r\n",
         "datamd5" : "d37e5376e68ccbf1941dddf4a0c092d6",
         "datammh3" : 1563151608,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS37963",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "CN",
            "countryname" : "China",
            "domain" : [
               "alibaba-inc.com",
               "cnnic.cn"
            ],
            "isineu" : "false",
            "latitude" : "35.86166",
            "location" : "35.86166,104.195397",
            "longitude" : "104.195397",
            "netname" : "ALISOFT",
            "organization" : "Alibaba (US) Technology Co., Ltd.",
            "subnet" : "101.132.0.0/15"
         },
         "ip" : "101.132.121.149",
         "ipv6" : "false",
         "latitude" : "31.2222",
         "location" : "31.2222,121.4581",
         "longitude" : "121.4581",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Hangzhou Alibaba Advertising Co.,Ltd.",
         "os" : "Windows",
         "osvendor" : "Microsoft",
         "port" : 8060,
         "product" : "OpenResty",
         "productvendor" : "OpenResty",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subnet" : "101.132.0.0/15",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 45.60.83.0:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:39 UTC

    • IP
      45.60.83.0
      Network
      45.60.64.0/18
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://45.60.83.0:8060/ 503

      ASN
      AS19551
      Organization
      INCAPSULA
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      55c3aea4f0698dc0dfb32a49670cedb3
      HTTP Header MD5
      830111c7bbbdc590a7441466d12c900b
      HTTP Body MD5
      1401484475406d388053c9e866425999
    • HTTP/1.1 503 Service Unavailable
      Content-Type: text/html
      Cache-Control: no-cache, no-store
      Connection: close
      Content-Length: 686
      X-Iinfo: 1-15390206-0 0NNN RT(1730958578610 23) q(0 -1 -1 -1) r(0 -1)
      
      <html style="height:100%"><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"><meta name="format-detection" content="telephone=no"><meta name="viewport" content="initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></head><body style="margin:0px;height:100%"><iframe id="main-iframe" src="/_Incapsula_Resource?CWUDNSAI=5&xinfo=1-15390206-0%200NNN%20RT%281730958578610%2023%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-73165712854615169&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET" frameborder=0 width="100%" height="100%" marginheight="0px" marginwidth="0px">Request unsuccessful. Incapsula incident ID: 0-73165712854615169</iframe></body></html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:39.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "1401484475406d388053c9e866425999",
               "bodymmh3" : 1277629613,
               "headermd5" : "830111c7bbbdc590a7441466d12c900b",
               "headermmh3" : 1719916722
            },
            "length" : 893
         },
         "asn" : "AS19551",
         "country" : "US",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 503 Service Unavailable\r\nContent-Type: text/html\r\nCache-Control: no-cache, no-store\r\nConnection: close\r\nContent-Length: 686\r\nX-Iinfo: 1-15390206-0 0NNN RT(1730958578610 23) q(0 -1 -1 -1) r(0 -1)\r\n\r\n<html style=\"height:100%\"><head><META NAME=\"ROBOTS\" CONTENT=\"NOINDEX, NOFOLLOW\"><meta name=\"format-detection\" content=\"telephone=no\"><meta name=\"viewport\" content=\"initial-scale=1.0\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"></head><body style=\"margin:0px;height:100%\"><iframe id=\"main-iframe\" src=\"/_Incapsula_Resource?CWUDNSAI=5&xinfo=1-15390206-0%200NNN%20RT%281730958578610%2023%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-73165712854615169&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET\" frameborder=0 width=\"100%\" height=\"100%\" marginheight=\"0px\" marginwidth=\"0px\">Request unsuccessful. Incapsula incident ID: 0-73165712854615169</iframe></body></html>",
         "datamd5" : "55c3aea4f0698dc0dfb32a49670cedb3",
         "datammh3" : 742450904,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS19551",
            "continent" : "NA",
            "continentname" : "North America",
            "country" : "US",
            "countryname" : "United States",
            "domain" : [
               "imperva.com",
               "incapsula.com",
               "thalesgroup.com"
            ],
            "isineu" : "false",
            "latitude" : "37.09024",
            "location" : "37.09024,-95.712891",
            "longitude" : "-95.712891",
            "netname" : "INCAPSULA-NET",
            "organization" : "Incapsula Inc",
            "subnet" : "45.60.83.0/24"
         },
         "ip" : "45.60.83.0",
         "ipv6" : "false",
         "latitude" : "37.7510",
         "location" : "37.7510,-97.8220",
         "longitude" : "-97.8220",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "INCAPSULA",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Service Unavailable",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 503,
         "subnet" : "45.60.64.0/18",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 154.3.88.89:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:36 UTC

    • IP
      154.3.88.89
      Network
      154.3.88.0/23
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://154.3.88.89:8060/ 407

      ASN
      AS174
      Organization
      COGENT-174
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      beff904528226673ee6dbdb9e7fe6002
      HTTP Header MD5
      4bd5a82db187fbf06a2b7f25b880c717
      HTTP Body MD5
      917a0ae17b6e9db13c448d39f37c69ca
    • HTTP/1.1 407 Proxy Authentication Required
      Proxy-Authenticate: Basic realm=""
      
      Proxy Authentication Required
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:36.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "917a0ae17b6e9db13c448d39f37c69ca",
               "bodymmh3" : -1539650452,
               "headermd5" : "4bd5a82db187fbf06a2b7f25b880c717",
               "headermmh3" : 372433470
            },
            "length" : 111
         },
         "asn" : "AS174",
         "city" : "Toronto",
         "country" : "CA",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 407 Proxy Authentication Required\r\nProxy-Authenticate: Basic realm=\"\"\r\n\r\nProxy Authentication Required",
         "datamd5" : "beff904528226673ee6dbdb9e7fe6002",
         "datammh3" : 501879459,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS174",
            "continent" : "NA",
            "continentname" : "North America",
            "country" : "US",
            "countryname" : "United States",
            "domain" : [
               "cogentco.com"
            ],
            "isineu" : "false",
            "latitude" : "37.09024",
            "location" : "37.09024,-95.712891",
            "longitude" : "-95.712891",
            "netname" : "NET-154-3-88-0-1",
            "organization" : "PSINet, Inc.",
            "subnet" : "154.3.88.0/23"
         },
         "ip" : "154.3.88.89",
         "ipv6" : "false",
         "latitude" : "43.6547",
         "location" : "43.6547,-79.3623",
         "longitude" : "-79.3623",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "COGENT-174",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Proxy Authentication Required",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 407,
         "subnet" : "154.3.88.0/23",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 109.123.248.227:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      109.123.248.227
      Network
      109.123.240.0/20
      Domain(s)
      contabo.net
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://109.123.248.227:8060/ 200

      HTTP Title
      OoklaServer
      Reverse DNS
      ip-227-248-123-109.static.contabo.net
      ASN
      AS51167
      Organization
      Contabo GmbH
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      8111ac134fea1aaa883089719bad09b3
      HTTP Header MD5
      d9fbb14d28f367446abd9957a98da08a
      HTTP Body MD5
      59556c1a4c24b1fd1d9682b1cef4f92a
    • HTTP/1.1 200 OK
      Content-Type: text/html
      Date: Thu, 07 Nov 2024 05:49:35 GMT
      Content-Length: 109
      Connection: close
      
      <html><head><title>OoklaServer</title></head><body><h1>OoklaServer</h1><p>It worked!<br /></p></body></html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "59556c1a4c24b1fd1d9682b1cef4f92a",
               "bodymmh3" : 1393880461,
               "headermd5" : "d9fbb14d28f367446abd9957a98da08a",
               "headermmh3" : -1795497534,
               "title" : "OoklaServer"
            },
            "length" : 230
         },
         "asn" : "AS51167",
         "city" : "D\u00fcsseldorf",
         "country" : "DE",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\nDate: Thu, 07 Nov 2024 05:49:35 GMT\r\nContent-Length: 109\r\nConnection: close\r\n\r\n<html><head><title>OoklaServer</title></head><body><h1>OoklaServer</h1><p>It worked!<br /></p></body></html>\n",
         "datamd5" : "8111ac134fea1aaa883089719bad09b3",
         "datammh3" : -247031561,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "contabo.net"
         ],
         "geolocus" : {
            "asn" : "AS51167",
            "continent" : "EU",
            "continentname" : "Europe",
            "country" : "DE",
            "countryname" : "Germany",
            "domain" : [
               "contabo.de",
               "contabo.net"
            ],
            "isineu" : "true",
            "latitude" : "51.165691",
            "location" : "51.165691,10.451526",
            "longitude" : "10.451526",
            "netname" : "TT-20221020",
            "organization" : "Contabo GmbH",
            "subnet" : "109.123.240.0/20"
         },
         "host" : [
            "ip-227-248-123-109"
         ],
         "hostname" : [
            "ip-227-248-123-109.static.contabo.net"
         ],
         "ip" : "109.123.248.227",
         "ipv6" : "false",
         "latitude" : "51.1878",
         "location" : "51.1878,6.8607",
         "longitude" : "6.8607",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Contabo GmbH",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "ip-227-248-123-109.static.contabo.net"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subdomains" : [
            "static.contabo.net"
         ],
         "subnet" : "109.123.240.0/20",
         "tld" : [
            "net"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 188.130.211.128:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      188.130.211.128
      Network
      188.130.210.0/23
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://188.130.211.128:8060/ 407

      HTTP Title
      407 Proxy Authentication Required
      ASN
      AS35048
      Organization
      Biterika Group LLC
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      bbdd0ef18ac1bb935546f899a9c15b82
      HTTP Header MD5
      7b6af4d669f1735012ccbd9b5f402335
      HTTP Body MD5
      d0733a01623260995e3203769289c13f
    • HTTP/1.0 407 Proxy Authentication Required
      Proxy-Authenticate: Basic realm="proxy"
      Connection: close
      Content-type: text/html; charset=utf-8
      
      <html><head><title>407 Proxy Authentication Required</title></head>
      <body><h2>407 Proxy Authentication Required</h2><h3>Access to requested resource disallowed by administrator or you need valid username/password to use this resource</h3></body></html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "d0733a01623260995e3203769289c13f",
               "bodymmh3" : -533483165,
               "headermd5" : "7b6af4d669f1735012ccbd9b5f402335",
               "headermmh3" : 1023953321,
               "realm" : "proxy",
               "title" : "407 Proxy Authentication Required"
            },
            "length" : 401
         },
         "asn" : "AS35048",
         "city" : "Moscow",
         "country" : "RU",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.0 407 Proxy Authentication Required\r\nProxy-Authenticate: Basic realm=\"proxy\"\r\nConnection: close\r\nContent-type: text/html; charset=utf-8\r\n\r\n<html><head><title>407 Proxy Authentication Required</title></head>\r\n<body><h2>407 Proxy Authentication Required</h2><h3>Access to requested resource disallowed by administrator or you need valid username/password to use this resource</h3></body></html>\r\n",
         "datamd5" : "bbdd0ef18ac1bb935546f899a9c15b82",
         "datammh3" : 709695866,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS35048",
            "continent" : "EU",
            "continentname" : "Europe",
            "country" : "RU",
            "countryname" : "Russia",
            "domain" : [
               "biterika.ru"
            ],
            "isineu" : "false",
            "latitude" : "61.52401",
            "location" : "61.52401,105.318756",
            "longitude" : "105.318756",
            "netname" : "BITERIKA-NET",
            "organization" : "Biterika Group LLC",
            "subnet" : "188.130.210.0/23"
         },
         "ip" : "188.130.211.128",
         "ipv6" : "false",
         "latitude" : "55.7483",
         "location" : "55.7483,37.6171",
         "longitude" : "37.6171",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Biterika Group LLC",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.0",
         "reason" : "Proxy Authentication Required",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 407,
         "subnet" : "188.130.210.0/23",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 78.187.83.213:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      78.187.83.213
      Network
      78.187.80.0/22
      Domain(s)
      ttnet.com.tr
      Device

      <enterprise field>: device.class

      Operating System
      Microsoft Windows
      URL

      http://78.187.83.213:8060/ 200

      HTTP Title
      OmgssWebService Web Service
      Reverse DNS
      78.187.83.213.dynamic.ttnet.com.tr
      ASN
      AS47331
      Organization
      Turk Telekom
      Protocol
      http
      Source
      datascan
    • Operating System
      Microsoft Windows
      Product
      Microsoft IIS 10.0
      HTTP Component(s)
      Microsoft ASP.NET 4.0.30319
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      f1266aab26fec031ba359ea51406ffa1
      HTTP Header MD5
      1be5e284f5fd27e90085893ff8be55b2
      HTTP Body MD5
      15060c150023e71b4904ffc0b2b3d00a
    • HTTP/1.1 200 OK
      Cache-Control: private, max-age=0
      Content-Type: text/html; charset=utf-8
      Server: Microsoft-IIS/10.0
      X-AspNet-Version: 4.0.30319
      X-Powered-By: ASP.NET
      Access-Control-Allow-Origin: *
      Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE
      Access-Control-Allow-Headers: content-type,soapaction,x-requested-with
      Date: Thu, 07 Nov 2024 05:49:34 GMT
      Connection: close
      Content-Length: 4835
      
      
      
      <html>
      
          <head><link rel="alternate" type="text/xml" href="/OmgssWebService.asmx?disco" />
      
          <style type="text/css">
          
      		BODY { color: #000000; background-color: white; font-family: Verdana; margin-left: 0px; margin-top: 0px; }
      		#content { margin-left: 30px; font-size: .70em; padding-bottom: 2em; }
      		A:link { color: #336699; font-weight: bold; text-decoration: underline; }
      		A:visited { color: #6699cc; font-weight: bold; text-decoration: underline; }
      		A:active { color: #336699; font-weight: bold; text-decoration: underline; }
      		A:hover { color: cc3300; font-weight: bold; text-decoration: underline; }
      		P { color: #000000; margin-top: 0px; margin-bottom: 12px; font-family: Verdana; }
      		pre { background-color: #e5e5cc; padding: 5px; font-family: Courier New; font-size: x-small; margin-top: -5px; border: 1px #f0f0e0 solid; }
      		td { color: #000000; font-family: Verdana; font-size: .7em; }
      		h2 { font-size: 1.5em; font-weight: bold; margin-top: 25px; margin-bottom: 10px; border-top: 1px solid #003366; margin-left: -15px; color: #003366; }
      		h3 { font-size: 1.1em; color: #000000; margin-left: -15px; margin-top: 10px; margin-bottom: 10px; }
      		ul { margin-top: 10px; margin-left: 20px; }
      		ol { margin-top: 10px; margin-left: 20px; }
      		li { margin-top: 10px; color: #000000; }
      		font.value { color: darkblue; font: bold; }
      		font.key { color: darkgreen; font: bold; }
      		font.error { color: darkred; font: bold; }
      		.heading1 { color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal; background-color: #003366; margin-top: 0px; margin-bottom: 0px; margin-left: -30px; padding-top: 10px; padding-bottom: 3px; padding-left: 15px; width: 105%; }
      		.button { background-color: #dcdcdc; font-family: Verdana; font-size: 1em; border-top: #cccccc 1px solid; border-bottom: #666666 1px solid; border-left: #cccccc 1px solid; border-right: #666666 1px solid; }
      		.frmheader { color: #000000; background: #dcdcdc; font-family: Verdana; font-size: .7em; font-weight: normal; border-bottom: 1px solid #dcdcdc; padding-top: 2px; padding-bottom: 2px; }
      		.frmtext { font-family: Verdana; font-size: .7em; margin-top: 8px; margin-bottom: 0px; margin-left: 32px; }
      		.frmInput { font-family: Verdana; font-size: 1em; }
      		.intro { margin-left: -15px; }
                 
          </style>
      
          <title>
      	OmgssWebService Web Service
      </title></head>
      
        <body>
      
          <div id="content">
      
            <p class="heading1">OmgssWebService</p><br>
      
            
      
            <span>
      
                <p class="intro">The following operations are supported.  For a formal definition, please review the <a href="OmgssWebService.asmx?WSDL">Service Description</a>. </p>
                
                
                    <ul>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=ExcOrclNonQuery">ExcOrclNonQuery</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=ExcOrclTrans">ExcOrclTrans</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=GetDefinations">GetDefinations</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=GetOrclDataSet">GetOrclDataSet</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=GetOrclScalar">GetOrclScalar</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=GetOrclTableData">GetOrclTableData</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=RafGirisCikisKaydet">RafGirisCikisKaydet</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=SaveOrder">SaveOrder</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=Test">Test</a>
                      
                      
                    </li>
                    <p>
                  
                    <li>
                      <a href="OmgssWebService.asmx?op=TestOrclConn">TestOrclConn</a>
                      
                      
                    </li>
                    <p>
                  
                    </ul>
                  
            </span>
      
            
            
      
          <span>
              
          </span>
          
            
      
            
      
          
        </body>
      </html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "15060c150023e71b4904ffc0b2b3d00a",
               "bodymmh3" : -1868730403,
               "component" : [
                  {
                     "productvendor" : "Microsoft",
                     "productversion" : "4.0.30319",
                     "product" : "ASP.NET"
                  }
               ],
               "headermd5" : "1be5e284f5fd27e90085893ff8be55b2",
               "headermmh3" : -1210940346,
               "title" : "OmgssWebService Web Service"
            },
            "length" : 5254
         },
         "asn" : "AS47331",
         "city" : "Ankara",
         "country" : "TR",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 200 OK\r\nCache-Control: private, max-age=0\r\nContent-Type: text/html; charset=utf-8\r\nServer: Microsoft-IIS/10.0\r\nX-AspNet-Version: 4.0.30319\r\nX-Powered-By: ASP.NET\r\nAccess-Control-Allow-Origin: *\r\nAccess-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE\r\nAccess-Control-Allow-Headers: content-type,soapaction,x-requested-with\r\nDate: Thu, 07 Nov 2024 05:49:34 GMT\r\nConnection: close\r\nContent-Length: 4835\r\n\r\n\r\n\r\n<html>\r\n\r\n    <head><link rel=\"alternate\" type=\"text/xml\" href=\"/OmgssWebService.asmx?disco\" />\r\n\r\n    <style type=\"text/css\">\r\n    \r\n\t\tBODY { color: #000000; background-color: white; font-family: Verdana; margin-left: 0px; margin-top: 0px; }\r\n\t\t#content { margin-left: 30px; font-size: .70em; padding-bottom: 2em; }\r\n\t\tA:link { color: #336699; font-weight: bold; text-decoration: underline; }\r\n\t\tA:visited { color: #6699cc; font-weight: bold; text-decoration: underline; }\r\n\t\tA:active { color: #336699; font-weight: bold; text-decoration: underline; }\r\n\t\tA:hover { color: cc3300; font-weight: bold; text-decoration: underline; }\r\n\t\tP { color: #000000; margin-top: 0px; margin-bottom: 12px; font-family: Verdana; }\r\n\t\tpre { background-color: #e5e5cc; padding: 5px; font-family: Courier New; font-size: x-small; margin-top: -5px; border: 1px #f0f0e0 solid; }\r\n\t\ttd { color: #000000; font-family: Verdana; font-size: .7em; }\r\n\t\th2 { font-size: 1.5em; font-weight: bold; margin-top: 25px; margin-bottom: 10px; border-top: 1px solid #003366; margin-left: -15px; color: #003366; }\r\n\t\th3 { font-size: 1.1em; color: #000000; margin-left: -15px; margin-top: 10px; margin-bottom: 10px; }\r\n\t\tul { margin-top: 10px; margin-left: 20px; }\r\n\t\tol { margin-top: 10px; margin-left: 20px; }\r\n\t\tli { margin-top: 10px; color: #000000; }\r\n\t\tfont.value { color: darkblue; font: bold; }\r\n\t\tfont.key { color: darkgreen; font: bold; }\r\n\t\tfont.error { color: darkred; font: bold; }\r\n\t\t.heading1 { color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal; background-color: #003366; margin-top: 0px; margin-bottom: 0px; margin-left: -30px; padding-top: 10px; padding-bottom: 3px; padding-left: 15px; width: 105%; }\r\n\t\t.button { background-color: #dcdcdc; font-family: Verdana; font-size: 1em; border-top: #cccccc 1px solid; border-bottom: #666666 1px solid; border-left: #cccccc 1px solid; border-right: #666666 1px solid; }\r\n\t\t.frmheader { color: #000000; background: #dcdcdc; font-family: Verdana; font-size: .7em; font-weight: normal; border-bottom: 1px solid #dcdcdc; padding-top: 2px; padding-bottom: 2px; }\r\n\t\t.frmtext { font-family: Verdana; font-size: .7em; margin-top: 8px; margin-bottom: 0px; margin-left: 32px; }\r\n\t\t.frmInput { font-family: Verdana; font-size: 1em; }\r\n\t\t.intro { margin-left: -15px; }\r\n           \r\n    </style>\r\n\r\n    <title>\r\n\tOmgssWebService Web Service\r\n</title></head>\r\n\r\n  <body>\r\n\r\n    <div id=\"content\">\r\n\r\n      <p class=\"heading1\">OmgssWebService</p><br>\r\n\r\n      \r\n\r\n      <span>\r\n\r\n          <p class=\"intro\">The following operations are supported.  For a formal definition, please review the <a href=\"OmgssWebService.asmx?WSDL\">Service Description</a>. </p>\r\n          \r\n          \r\n              <ul>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=ExcOrclNonQuery\">ExcOrclNonQuery</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=ExcOrclTrans\">ExcOrclTrans</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=GetDefinations\">GetDefinations</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=GetOrclDataSet\">GetOrclDataSet</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=GetOrclScalar\">GetOrclScalar</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=GetOrclTableData\">GetOrclTableData</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=RafGirisCikisKaydet\">RafGirisCikisKaydet</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=SaveOrder\">SaveOrder</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=Test\">Test</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              <li>\r\n                <a href=\"OmgssWebService.asmx?op=TestOrclConn\">TestOrclConn</a>\r\n                \r\n                \r\n              </li>\r\n              <p>\r\n            \r\n              </ul>\r\n            \r\n      </span>\r\n\r\n      \r\n      \r\n\r\n    <span>\r\n        \r\n    </span>\r\n    \r\n      \r\n\r\n      \r\n\r\n    \r\n  </body>\r\n</html>\r\n",
         "datamd5" : "f1266aab26fec031ba359ea51406ffa1",
         "datammh3" : -427379030,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "ttnet.com.tr"
         ],
         "geolocus" : {
            "asn" : "AS9121",
            "continent" : "AS",
            "continentname" : "Asia",
            "country" : "TR",
            "countryname" : "Turkey",
            "domain" : [
               "ttnet.com.tr",
               "turktelekom.com.tr"
            ],
            "isineu" : "false",
            "latitude" : "38.963745",
            "location" : "38.963745,35.243322",
            "longitude" : "35.243322",
            "netname" : "TurkTelekom",
            "organization" : "TurkTelecom",
            "subnet" : "78.187.80.0/22"
         },
         "host" : [
            78
         ],
         "hostname" : [
            "78.187.83.213.dynamic.ttnet.com.tr"
         ],
         "ip" : "78.187.83.213",
         "ipv6" : "false",
         "latitude" : "39.9894",
         "location" : "39.9894,32.8319",
         "longitude" : "32.8319",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Turk Telekom",
         "os" : "Windows",
         "osvendor" : "Microsoft",
         "osversion" : [
            "Server 2016",
            10
         ],
         "port" : 8060,
         "product" : "IIS",
         "productvendor" : "Microsoft",
         "productversion" : "10.0",
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "OK",
         "reverse" : [
            "78.187.83.213.dynamic.ttnet.com.tr"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 200,
         "subdomains" : [
            "213.dynamic.ttnet.com.tr",
            "dynamic.ttnet.com.tr",
            "187.83.213.dynamic.ttnet.com.tr",
            "83.213.dynamic.ttnet.com.tr"
         ],
         "subnet" : "78.187.80.0/22",
         "tld" : [
            "com.tr"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 107.154.221.66:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      107.154.221.66
      Network
      107.154.192.0/19
      Domain(s)
      incapdns.net
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://107.154.221.66:8060/ 503

      Reverse DNS
      107.154.221.66.ip.incapdns.net
      ASN
      AS19551
      Organization
      INCAPSULA
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      17260884b7d5608b16e4ce8ba0f3e0ce
      HTTP Header MD5
      dac145cf69343776e5b2cea868c80870
      HTTP Body MD5
      7452eb20b5726dd22029f52ab2f14e88
    • HTTP/1.1 503 Service Unavailable
      Content-Type: text/html
      Cache-Control: no-cache, no-store
      Connection: close
      Content-Length: 692
      X-Iinfo: 62-270194056-0 0NNN RT(1730958574993 15) q(0 -1 -1 -1) r(0 -1)
      
      <html style="height:100%"><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"><meta name="format-detection" content="telephone=no"><meta name="viewport" content="initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></head><body style="margin:0px;height:100%"><iframe id="main-iframe" src="/_Incapsula_Resource?CWUDNSAI=5&xinfo=62-270194056-0%200NNN%20RT%281730958574993%2015%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-1613803166565270206&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET" frameborder=0 width="100%" height="100%" marginheight="0px" marginwidth="0px">Request unsuccessful. Incapsula incident ID: 0-1613803166565270206</iframe></body></html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "7452eb20b5726dd22029f52ab2f14e88",
               "bodymmh3" : -1934369978,
               "headermd5" : "dac145cf69343776e5b2cea868c80870",
               "headermmh3" : -338042916
            },
            "length" : 901
         },
         "asn" : "AS19551",
         "country" : "US",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 503 Service Unavailable\r\nContent-Type: text/html\r\nCache-Control: no-cache, no-store\r\nConnection: close\r\nContent-Length: 692\r\nX-Iinfo: 62-270194056-0 0NNN RT(1730958574993 15) q(0 -1 -1 -1) r(0 -1)\r\n\r\n<html style=\"height:100%\"><head><META NAME=\"ROBOTS\" CONTENT=\"NOINDEX, NOFOLLOW\"><meta name=\"format-detection\" content=\"telephone=no\"><meta name=\"viewport\" content=\"initial-scale=1.0\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"></head><body style=\"margin:0px;height:100%\"><iframe id=\"main-iframe\" src=\"/_Incapsula_Resource?CWUDNSAI=5&xinfo=62-270194056-0%200NNN%20RT%281730958574993%2015%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-1613803166565270206&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET\" frameborder=0 width=\"100%\" height=\"100%\" marginheight=\"0px\" marginwidth=\"0px\">Request unsuccessful. Incapsula incident ID: 0-1613803166565270206</iframe></body></html>",
         "datamd5" : "17260884b7d5608b16e4ce8ba0f3e0ce",
         "datammh3" : -703216744,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "domain" : [
            "incapdns.net"
         ],
         "geolocus" : {
            "asn" : "AS19551",
            "continent" : "NA",
            "continentname" : "North America",
            "country" : "US",
            "countryname" : "United States",
            "domain" : [
               "imperva.com",
               "incapdns.net",
               "incapsula.com",
               "thalesgroup.com"
            ],
            "isineu" : "false",
            "latitude" : "37.09024",
            "location" : "37.09024,-95.712891",
            "longitude" : "-95.712891",
            "netname" : "INCAPSULA-NETWORK",
            "organization" : "Incapsula Inc",
            "subnet" : "107.154.221.66/31"
         },
         "host" : [
            107
         ],
         "hostname" : [
            "107.154.221.66.ip.incapdns.net"
         ],
         "ip" : "107.154.221.66",
         "ipv6" : "false",
         "latitude" : "37.7510",
         "location" : "37.7510,-97.8220",
         "longitude" : "-97.8220",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "INCAPSULA",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Service Unavailable",
         "reverse" : [
            "107.154.221.66.ip.incapdns.net"
         ],
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 503,
         "subdomains" : [
            "154.221.66.ip.incapdns.net",
            "221.66.ip.incapdns.net",
            "66.ip.incapdns.net",
            "ip.incapdns.net"
         ],
         "subnet" : "107.154.192.0/19",
         "tag" : "<enterprise field>: tag",
         "tld" : [
            "net"
         ],
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 45.223.231.208:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      45.223.231.208
      Network
      45.223.228.0/22
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://45.223.231.208:8060/ 503

      ASN
      AS19551
      Organization
      INCAPSULA
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      d53fd9081e416cca088af8880c2eb0ed
      HTTP Header MD5
      1a4e1e5dca44824481c5f2c3926ff362
      HTTP Body MD5
      e20051cbf148b7d566c6c193899f7163
    • HTTP/1.1 503 Service Unavailable
      Content-Type: text/html
      Cache-Control: no-cache, no-store
      Connection: close
      Content-Length: 687
      X-Iinfo: 7-69939206-0 0NNN RT(1730958575349 8) q(0 -1 -1 -1) r(0 -1)
      
      <html style="height:100%"><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"><meta name="format-detection" content="telephone=no"><meta name="viewport" content="initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></head><body style="margin:0px;height:100%"><iframe id="main-iframe" src="/_Incapsula_Resource?CWUDNSAI=5&xinfo=7-69939206-0%200NNN%20RT%281730958575349%208%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-344678001809557063&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET" frameborder=0 width="100%" height="100%" marginheight="0px" marginwidth="0px">Request unsuccessful. Incapsula incident ID: 0-344678001809557063</iframe></body></html>
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "e20051cbf148b7d566c6c193899f7163",
               "bodymmh3" : 1600157659,
               "headermd5" : "1a4e1e5dca44824481c5f2c3926ff362",
               "headermmh3" : 1905387075
            },
            "length" : 893
         },
         "asn" : "AS19551",
         "country" : "US",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.1 503 Service Unavailable\r\nContent-Type: text/html\r\nCache-Control: no-cache, no-store\r\nConnection: close\r\nContent-Length: 687\r\nX-Iinfo: 7-69939206-0 0NNN RT(1730958575349 8) q(0 -1 -1 -1) r(0 -1)\r\n\r\n<html style=\"height:100%\"><head><META NAME=\"ROBOTS\" CONTENT=\"NOINDEX, NOFOLLOW\"><meta name=\"format-detection\" content=\"telephone=no\"><meta name=\"viewport\" content=\"initial-scale=1.0\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"></head><body style=\"margin:0px;height:100%\"><iframe id=\"main-iframe\" src=\"/_Incapsula_Resource?CWUDNSAI=5&xinfo=7-69939206-0%200NNN%20RT%281730958575349%208%29%20q%280%20-1%20-1%20-1%29%20r%280%20-1%29&incident_id=0-344678001809557063&edet=22&cinfo=ffffffff&rpinfo=0&mth=GET\" frameborder=0 width=\"100%\" height=\"100%\" marginheight=\"0px\" marginwidth=\"0px\">Request unsuccessful. Incapsula incident ID: 0-344678001809557063</iframe></body></html>",
         "datamd5" : "d53fd9081e416cca088af8880c2eb0ed",
         "datammh3" : -369907580,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS19551",
            "continent" : "NA",
            "continentname" : "North America",
            "country" : "US",
            "countryname" : "United States",
            "domain" : [
               "imperva.com",
               "incapsula.com",
               "thalesgroup.com"
            ],
            "isineu" : "false",
            "latitude" : "37.09024",
            "location" : "37.09024,-95.712891",
            "longitude" : "-95.712891",
            "netname" : "INCAPSULA-NET",
            "organization" : "Incapsula Inc",
            "subnet" : "45.223.231.208/32"
         },
         "ip" : "45.223.231.208",
         "ipv6" : "false",
         "latitude" : "37.7510",
         "location" : "37.7510,-97.8220",
         "longitude" : "-97.8220",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "INCAPSULA",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.1",
         "reason" : "Service Unavailable",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 503,
         "subnet" : "45.223.228.0/22",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }
      
  • 45.134.182.66:8060 (tcp/http) - last seen on 2024-11-07 at 05:49:35 UTC

    • IP
      45.134.182.66
      Network
      45.134.180.0/22
      Device

      <enterprise field>: device.class

      Operating System
      Linux Linux Kernel
      URL

      http://45.134.182.66:8060/ 407

      HTTP Title
      407 Proxy Authentication Required
      ASN
      AS35048
      Organization
      Biterika Group LLC
      Protocol
      http
      Source
      datascan
    • Operating System
      Linux Linux Kernel
      CPE(s)

      <enterprise field>: cpe

    • This feature requires at least a "Lion View" to unlock. Go to our Pricing page for more.

    • Data MD5
      bbdd0ef18ac1bb935546f899a9c15b82
      HTTP Header MD5
      7b6af4d669f1735012ccbd9b5f402335
      HTTP Body MD5
      d0733a01623260995e3203769289c13f
    • HTTP/1.0 407 Proxy Authentication Required
      Proxy-Authenticate: Basic realm="proxy"
      Connection: close
      Content-type: text/html; charset=utf-8
      
      <html><head><title>407 Proxy Authentication Required</title></head>
      <body><h2>407 Proxy Authentication Required</h2><h3>Access to requested resource disallowed by administrator or you need valid username/password to use this resource</h3></body></html>
      
    • {
         "@category" : "datascan",
         "@timestamp" : "2024-11-07T05:49:35.000Z",
         "app" : {
            "http" : {
               "bodymd5" : "d0733a01623260995e3203769289c13f",
               "bodymmh3" : -533483165,
               "headermd5" : "7b6af4d669f1735012ccbd9b5f402335",
               "headermmh3" : 1023953321,
               "realm" : "proxy",
               "title" : "407 Proxy Authentication Required"
            },
            "length" : 401
         },
         "asn" : "AS35048",
         "country" : "RU",
         "cpe" : "<enterprise field>: cpe",
         "cpecount" : "<enterprise field>: cpecount",
         "data" : "HTTP/1.0 407 Proxy Authentication Required\r\nProxy-Authenticate: Basic realm=\"proxy\"\r\nConnection: close\r\nContent-type: text/html; charset=utf-8\r\n\r\n<html><head><title>407 Proxy Authentication Required</title></head>\r\n<body><h2>407 Proxy Authentication Required</h2><h3>Access to requested resource disallowed by administrator or you need valid username/password to use this resource</h3></body></html>\r\n",
         "datamd5" : "bbdd0ef18ac1bb935546f899a9c15b82",
         "datammh3" : 709695866,
         "device" : {
            "class" : "<enterprise field>: device.class"
         },
         "geolocus" : {
            "asn" : "AS55933",
            "continent" : "OC",
            "continentname" : "Oceania",
            "country" : "AU",
            "countryname" : "Australia",
            "domain" : [
               "apnic.net"
            ],
            "isineu" : "false",
            "latitude" : "-25.274398",
            "location" : "-25.274398,133.775136",
            "longitude" : "133.775136",
            "netname" : "IANA-NETBLOCK-45",
            "organization" : "This network range is not fully allocated to APNIC.",
            "subnet" : "45.0.0.0/8"
         },
         "ip" : "45.134.182.66",
         "ipv6" : "false",
         "latitude" : "55.7386",
         "location" : "55.7386,37.6068",
         "longitude" : "37.6068",
         "node" : {
            "country" : "<enterprise field>: node.country",
            "groupid" : "<enterprise field>: node.groupid",
            "id" : "<enterprise field>: node.id",
            "physicalcountry" : "<enterprise field>: node.physicalcountry"
         },
         "organization" : "Biterika Group LLC",
         "os" : "Linux Kernel",
         "osvendor" : "Linux",
         "port" : 8060,
         "protocol" : "http",
         "protocolversion" : "1.0",
         "reason" : "Proxy Authentication Required",
         "seen_date" : "2024-11-07",
         "source" : "datascan",
         "status" : 407,
         "subnet" : "45.134.180.0/22",
         "tag" : "<enterprise field>: tag",
         "tls" : "false",
         "transport" : "tcp",
         "url" : "/"
      }