Domain aggendo.com.br
United States
FASTLY
Software information

Varnish

tcp/80

  • MacOS file listing through .DS_Store file
    First seen 2023-01-21 19:24
    Last seen 2024-09-26 23:16
    Open for 614 days
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-26 23:16

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Thu, 26 Sep 2024 23:16:51 GMT
    X-Served-By: cache-pdk-kfty2130054-PDK
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1727392611.450602,VS0,VE2
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found one day ago by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-25 03:49

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Wed, 25 Sep 2024 03:49:53 GMT
    X-Served-By: cache-fra-eddf8230138-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1727236193.171399,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 2620:0:890::100:80 · aggendo.com.br

    2024-09-16 06:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 0
    Server: Varnish
    Retry-After: 0
    Location: https://aggendo.com.br/
    Accept-Ranges: bytes
    Date: Mon, 16 Sep 2024 06:27:51 GMT
    X-Served-By: cache-ams21068-AMS
    X-Cache: HIT
    X-Cache-Hits: 0
    X-Timer: S1726468071.382899,VS0,VE0
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    Found 2024-09-16 by HttpPlugin
    Create report
  • Open service 2620:0:890::100:443 · aggendo.com.br

    2024-09-16 06:27

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Mon, 16 Sep 2024 06:27:51 GMT
    X-Served-By: cache-fra-eddf8230154-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726468071.468554,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-16 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-16 06:27

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Mon, 16 Sep 2024 06:27:51 GMT
    X-Served-By: cache-fra-eddf8230144-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726468072.863132,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-16 by HttpPlugin
    Create report
  • Open service 199.36.158.100:80 · aggendo.com.br

    2024-09-16 06:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 0
    Server: Varnish
    Retry-After: 0
    Location: https://aggendo.com.br/
    Accept-Ranges: bytes
    Date: Mon, 16 Sep 2024 06:27:51 GMT
    X-Served-By: cache-fra-eddf8230044-FRA
    X-Cache: HIT
    X-Cache-Hits: 0
    X-Timer: S1726468071.272893,VS0,VE0
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    Found 2024-09-16 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-14 19:07

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Sat, 14 Sep 2024 19:07:04 GMT
    X-Served-By: cache-lga21975-LGA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726340824.166946,VS0,VE2
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-14 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-12 23:36

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Thu, 12 Sep 2024 23:36:59 GMT
    X-Served-By: cache-ams21034-AMS
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726184220.728517,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-12 by HttpPlugin
    Create report
  • Open service 199.36.158.100:80 · www.aggendo.com.br

    2024-09-11 14:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 0
    Server: Varnish
    Retry-After: 0
    Location: https://www.aggendo.com.br/
    Accept-Ranges: bytes
    Date: Wed, 11 Sep 2024 14:27:58 GMT
    X-Served-By: cache-lcy-eglc8600085-LCY
    X-Cache: HIT
    X-Cache-Hits: 0
    X-Timer: S1726064878.186809,VS0,VE0
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    Found 2024-09-11 by HttpPlugin
    Create report
  • Open service 2620:0:890::100:80 · www.aggendo.com.br

    2024-09-11 14:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 0
    Server: Varnish
    Retry-After: 0
    Location: https://www.aggendo.com.br/
    Accept-Ranges: bytes
    Date: Wed, 11 Sep 2024 14:27:58 GMT
    X-Served-By: cache-fra-eddf8230116-FRA
    X-Cache: HIT
    X-Cache-Hits: 0
    X-Timer: S1726064878.071726,VS0,VE0
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    Found 2024-09-11 by HttpPlugin
    Create report
  • Open service 2620:0:890::100:443 · www.aggendo.com.br

    2024-09-11 14:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 38
    Location: https://aggendo.com.br/
    Content-Type: text/plain; charset=utf-8
    Accept-Ranges: bytes
    Date: Wed, 11 Sep 2024 14:27:58 GMT
    X-Served-By: cache-fra-eddf8230102-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726064878.253692,VS0,VE2
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    Redirecting to https://aggendo.com.br/
    Found 2024-09-11 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · www.aggendo.com.br

    2024-09-11 14:27

    HTTP/1.1 301 Moved Permanently
    Connection: close
    Content-Length: 38
    Location: https://aggendo.com.br/
    Content-Type: text/plain; charset=utf-8
    Accept-Ranges: bytes
    Date: Wed, 11 Sep 2024 14:27:57 GMT
    X-Served-By: cache-fra-eddf8230149-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726064878.954051,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    Redirecting to https://aggendo.com.br/
    Found 2024-09-11 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-10 21:55

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Tue, 10 Sep 2024 21:55:24 GMT
    X-Served-By: cache-fra-eddf8230142-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1726005325.648458,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-10 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-08 19:47

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Sun, 08 Sep 2024 19:47:44 GMT
    X-Served-By: cache-fra-eddf8230029-FRA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1725824865.652636,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-08 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-09-06 16:51

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Fri, 06 Sep 2024 16:51:24 GMT
    X-Served-By: cache-ams2100121-AMS
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1725641484.205725,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-09-06 by HttpPlugin
    Create report
  • Open service 199.36.158.100:443 · aggendo.com.br

    2024-08-18 06:18

    HTTP/1.1 200 OK
    Connection: close
    Content-Length: 19833
    Cache-Control: max-age=3600
    Content-Type: text/html; charset=utf-8
    Etag: "4e4a4a01e15a4574bd74609308a49d6c7a6af9b12795255b525c266b7cf6bf46"
    Strict-Transport-Security: max-age=31556926
    Accept-Ranges: bytes
    Date: Sun, 18 Aug 2024 06:18:00 GMT
    X-Served-By: cache-lga21987-LGA
    X-Cache: HIT
    X-Cache-Hits: 1
    X-Timer: S1723961880.352069,VS0,VE1
    Vary: x-fh-requested-host, accept-encoding
    alt-svc: h3=":443";ma=86400,h3-29=":443";ma=86400,h3-27=":443";ma=86400
    
    
    <!DOCTYPE html>
    <html>
    	<head>
    
    		<!-- LIB -->
    
    		<!-- Bootstrap -->
    		<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
    		<!-- Font Awesome -->
    		<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
    
    		<style>
    		.navbar { border-radius:0; background-color: #23282e; border: 0; padding-bottom: 20px; }
    		</style>
    
    		<!-- JS -->
    
    		<!-- Angular -->
    		<script src="lib/angular/angular.min.js"></script>
    
    		<!-- Firebase -->
    		<script src="https://www.gstatic.com/firebasejs/3.4.1/firebase.js"></script>
    		<script src="https://cdn.firebase.com/libs/angularfire/2.0.2/angularfire.min.js"></script>
    
    		<!-- jQuery -->
    		<script src="lib/jquery/dist/jquery.min.js"></script>
    		<!-- Bootstrap -->
    		<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
    
    		<!-- Init -->
    
    		<script type="text/javascript">
    			
    			// Initialize Firebase
    			// var config = {
    			// 	apiKey: "AIzaSyDt94Ggek-8dEEazq3bz0Nh9lY3WWWleOU",
    			// 	authDomain: "aggendo.firebaseapp.com",
    			// 	databaseURL: "https://aggendo.firebaseio.com",
    			// 	storageBucket: "aggendo.appspot.com",
    			// 	messagingSenderId: "381582529920"
    			// };
    
    			var config = {
    			    apiKey: "AIzaSyA5a7LGn7yMRuFvnVQGRbsuSdxaQ_RbSzU",
    			    authDomain: "site-aggendo.firebaseapp.com",
    			    databaseURL: "https://site-aggendo.firebaseio.com",
    			    storageBucket: "site-aggendo.appspot.com",
    			    messagingSenderId: "125897006576"
    			};
    
    			firebase.initializeApp(config);
    
    			var app = angular.module("app", ["firebase"]);
    
    			app.controller("completeDataCtrl", function($scope, $firebaseAuth, $firebaseObject, $firebaseArray, $filter, $timeout, $http) {
    
    			console.log('Start Run');
    
    			$scope.setupStep = 1;
    
    			$scope.setEntity = function(idEntity){
    
    				console.log('Set Entity: '+idEntity);
    
    				var ref = firebase.database().ref('/entity/'+idEntity);
    				
    				ref.once('value', function(dataSnapshot) {
    					
    					$timeout(function() {
    
    						$scope.entityData = $firebaseObject(ref);
    		    			$scope.entityData.$bindTo($scope, "entityData");
    
    						if(dataSnapshot.val().typeEntity){
    					
    							$scope.setStep(3);
    						
    						}else{
    						
    							$scope.setStep(2);
    						
    						}
    
    					}, 0);
    						
    				});
    
    			}
    
    			$scope.setStep = function (step){
    				
    				$timeout(function() {
    			      $scope.setupStep = step;
    			      console.log('Set Step: '+step);
    			    }, 0);
    
    				
    			}
    
    			$scope.setEntityType = function(typeEntity){
    					
    				$timeout(function() {
    
    					$scope.entityData['typeEntity'] = typeEntity;
    					console.log('Set Entity Type: '+ $scope.entityData);
    					$scope.setStep(3);
    
    				}, 0);
    			}
    
    			$scope.verifUserStatus = function(){
    				
    				console.log('Verifying User Status...');
    
    				if (!firebase.auth().currentUser) {
    					
    					$scope.setStep(1);
    					console.log('Status 1');
    				
    				} else {	
    
    					var ref = firebase.database().ref('/users/'+firebase.auth().currentUser.uid);
    
    					ref.once('value', function(dataSnapshot) {
    						$timeout(function() {
    							
    							$scope.userData = $firebaseObject(ref);
    			    			$scope.userData.$bindTo($scope, "userData");
    			    			
    			    			console.log('Status: exists currentUser: ' + firebase.auth().currentUser.uid + ' , setting first entity: ' + Object.keys(dataSnapshot.val().entity)[0]);
    							$scope.setEntity(Object.keys(dataSnapshot.val().entity)[0]);
    
    			    		});
    
    						
    					});
    								
    				}
    			}
    
    			firebase.auth().onAuthStateChanged(function(user) {
    				console.log('Status: AuthStateChanged: User:');
    				console.info(user);
    				$scope.verifUserStatus();
    			});
    
    		//	ref.remove();
    
    			$scope.doAtendimentoData = function(atendimento){
    				
    				console.log(atendimento);
    			}
    			
    			$scope.selectedDays = {};
    
    			$scope.weekdays = [
    			   { day: '0', name: 'Domingo', checked: true},
    			   { day: '1', name: 'Segunda-feira'},
    			   { day: '2', name: 'Terça-feira'},
    			   { day: '3', name: 'Quarta-feira'},
    			   { day: '4', name: 'Quinta-feira'},
    			   { day: '5', name: 'Sexta-feira'},
    			   { day: '6', name: 'Sábado', checked: true}
    			];
    
    			$scope.getSelectedDays = function () 
    Found 2024-08-18 by HttpPlugin
    Create report
evocable.appgrizzlysgiesenvolley.bfsp.appwww.bostec.pespectruck51.rubirthdaycountdown.appwnrs.ikr.nzsustenergo.commspls.comwww.systb.ioadmin.shcl.wowdesk.jpuscmunstervolley.bfsp.appjlbourg.bfsp.approdezaveyronfootball.bfsp.appsccschwerinvolley.bfsp.appfinance.tfs.family2neighborsgames.comadmissions.manchester.globalhandeestudio.cocibercultura.com.mxwww.floward.appvalenceromansdromerugby.bfsp.appscdc.appcytown.nadadigital.co.krjasoncsmith.techgora.onloptimummethod.comwww.dayatwork.infoseconed-accept.checkrisk.euflutterpainter.omarhurani.meandysilk.comlausannehockeyclub.deeplinks.bfsp.appwww.evocable.appauth.rempy.appwww.frontend-specialisten.dkhandbook.reos.co.zaciasalt.comwww.eskaylog.comdrmrapp.comwww.schlusseldienstprenzlauerberg.decookifood.comdcre8tive.combaseline-survey.versup.orgapp.brxs.comgraceakpan.comthenightcrew.cawww.soh-souen.commijn.tm.toegang.orgdemo.equestriansystems.co.ukbookandtravel.todaytalktask.com.brwww.veryme.iojoyboygame.comaggendo.com.brsellerhub-dev.danubehome.comhispanovida.comdev2.claudio-ep.comusados.dycar.com.arwww.nakedcoffee-admin.cotraining.harc-app.comletsgetmeal.commaquinastudios.comcheckout.couchbucks.comjust-sign.commarket.isomotret.comwww.hannessonadmin.comwww.taxisanfelicecirceo.itwww.cofinds.comwww.jupyterspot.comdashboard.rinnolab.clwww.adaberk.comdcsunity.comstg3.ddangkongschool.com13cabs-traveller-test4.fleet-dev.comcheckout.ethanbulmer.comwww.gyantey.comtrailer.watchmove.goflytta.comfastforwardbroadband.commagic.staging.pulselive.tvkaitlinswanson.comdev.fleettap.comwww.defyprs.comapp.faangpath.comwww.dreadrunners.comwww.admissions.manchester.globalwww.mentalgraffiti.compeculiarbeats.comwww.alphabiomedica.comkeshkut.comwww.pengwin.com.brwww.neetishsingh.comlogin.fanrequests.comwww.wangler-stb.dewebline.eebleacherscoring.apprapidexpresskh.comeditor-steamdepot.idealabkids.comwww.employeenotes.appsapta.hourday.iowww.bkeyecare.com
CN:
evocable.app
Key:
RSA-2048
Issuer:
WR3
Not before:
2024-09-16 05:26
Not after:
2024-12-15 06:23
www.lightout.appjasoncsmith.techverify.tytd.meaggendo.com.brvaachak.manishoaham.comtalktask.com.brverify.lukky.appapp.dazole.comwww.rustixmanor.compineca.vecticum.comcshco.salixhub.comsentinel.oakslab.commembers.theoutlawway.comreferencecheck.safetyinminutes.caschlusseldienstwilhelmsburg.dewww.bolaodosboloes.comwww.xpersity.codtc.affinity.doadmin.rigbox.comwww.karditordev.comanurag-d.inbrainquiz.singhteekam.inwww.peterjdouglas.comaig-costco.affinity.do8x2ildrz1c.koravski.com22d.emailwww.titanictechnicalservices.commach-das-leben-an.dewww.ileti-turkiye.comapp.roadrunnerhq.comhirokiueno.comrupinus-esthetic.commspls.comdemo.hapihub.comwww.shopgabriellamrose.comcomfortlab.rumojicity.jpwww.zebra.chatwww.schlusseldienstprenzlauerberg.dewww.karthiksiddhamaruthuvam.inbeta.apply.itqan.qafcom.comaspireacademyrw.orgcsuohio.emirror.appbookandtravel.todayquiz.aurafinance.iocibercultura.com.mxwww.pkappalamshop.inmagic.staging.pulselive.tvtraveladvantage.todaysimul.vod.ggl.tinka.comapp.zaya.healthourmask.orggora.onltrevor-harris.uscoviz19.orgwww.alphabiomedica.comwww.villaluberon.oneludogest.comvmartiros.comwww.bostec.pecarlospratt.netwww.bri.giftsmuchet.nlpasaporte.app.closelly.comintegrate-firebase-pro.dalenguyen.meflutterpainter.omarhurani.mederco.app.closelly.comwww.systb.iowww.dayatwork.infooptimummethod.comexceed.kzshop.beefeed.dethomas-sanceo.comtrailer.watchmijn.tm.toegang.orgnotequalia.comjaumealemany.eslink.staging.brookshires.comwnrs.ikr.nzhandbook.reos.co.zasustenergo.comwww.admissions.manchester.globalsprinterbus51.ruadmissions.manchester.globaldemo.equestriansystems.co.ukagency.staffshift.comapp.hooch.com.mxsapta.hourday.iofinance.tfs.family2neighborsgames.comdev.stratomta.appdreamartcity.comvelex.b2b.rswww.veryme.iolinks.myttclub.deadmin.shcl.wowdesk.jpapp.knowhowee.czweight.ruga.plprogidro.ru
CN:
www.lightout.app
Key:
RSA-2048
Issuer:
WR3
Not before:
2024-07-20 17:41
Not after:
2024-10-18 18:39
sophungames.commateenirshad.comstatusboys.comoutrefair.comfusion.mybluerobot.comwww.finhance.iosushiwork.comwww.hindrav.comtokenstack.devnoblesm.comsaffronpatchphilly.comwww.oneclickinterviews.comgcabrera.devshare.chittoo.comwww.mytrendingstories.devacpericiasespecializadas.com.br10club.1stmain.devcgt.cabbalr.frwww.kodemuse.devwww.josebernardes.devrissengineeringsolutions.comauth.planyourpay.comgeniust.appfirebase.ovaluate.comwww.iupcamps.comwww.merl24.commus.frailleaves.comgooglesync.patricks.appinterlock.smartcondo.appbudgets.nbe-consulting.frwww.jigger.appapp.mailingr.comaitkn.comwww.hisabkitab.inwww.gomagoma.mxasxtradinggame.comadmin.v2.pltfrm.jpasaskogen.seabogadosdigitales.com.cochakravarthisoap.compau.m1studio.coapp.bukatabungan.comcobbsynergies.comwww.everwoke.comhsapp.longhornhsa.orgdynamic.evertelapp.comgolfhandicapp.comthebigchillweekend.comwww.bekelectricaz.comakasaka.guruguru.shopporoka.kovac.sichrist-acc.comnotifications.app.farsitetechnology.comwww.brandoncluff.comwww.ianpieragostini.comgetjayde.combookingform.curacao-exclusief.nlkaihatsubu.comwww.fikzax.comcalculator.dallanlee.comwebcontrol-admin.agrico.co.zawww.hakomipractice.comjaviervanegasramirez.commiyazakiprogramming.comdynamic.safe-app.netjeog.ngpeofficial.comrijsland.randori.bewww.aggendo.com.brapp.vitacloud.iokalebhotel.menuaddis.comiwanttobelieve.jenniferwadella.comapp.logiqids.comapp.farrowtech.dknocabsoftware.comcp-downloader.a2-dev.frmertyacan.comdl.tf.stage.chainberry.iotraineegenius.comrcommand.comsell.telepass.comroguerecruitment.comfsilva.devokinari.devrunpython.devwww.ntsconstruction.cawww.ilivou.comzemely.comapp.testaws.tms-m.comwww.wecare2u.comabout.vic.devmarkdownnote.sys1yagi.commoekayal.meoceandatapool.comchat.jill9.comwww.hotelvillam.deappveolialatam.moreapp.comwww.vikraj.comloan.traware.comwikiguessr.masonzee.com
CN:
sophungames.com
Key:
RSA-2048
Issuer:
WR3
Not before:
2024-09-11 13:26
Not after:
2024-12-10 14:23
Domain summary
IP summary