nginx
tcp/443 tcp/80
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · pull.abaci.as
2026-01-24 02:46
HTTP/1.1 401 Unauthorized Server: nginx Date: Sat, 24 Jan 2026 02:46:39 GMT Content-Type: text/html; charset=iso-8859-1 Content-Length: 381 Connection: close WWW-Authenticate: Basic realm="IO" Page title: 401 Unauthorized <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>401 Unauthorized</title> </head><body> <h1>Unauthorized</h1> <p>This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.</p> </body></html>
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 194.63.249.215:443 · abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:39 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · test.abaci.as
2026-01-24 02:46
HTTP/1.1 401 Unauthorized Server: nginx Date: Sat, 24 Jan 2026 02:46:39 GMT Content-Type: text/html; charset=iso-8859-1 Content-Length: 381 Connection: close WWW-Authenticate: Basic realm="test.abaci.as" Page title: 401 Unauthorized <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>401 Unauthorized</title> </head><body> <h1>Unauthorized</h1> <p>This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.</p> </body></html>
Open service 194.63.249.215:80 · abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:39 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 194.63.249.215:443 · io.abaci.as
2026-01-24 02:46
HTTP/1.1 500 Internal Server Error Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · io.abaci.as
2026-01-24 02:46
HTTP/1.1 500 Internal Server Error Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close
Open service 194.63.249.215:80 · io.abaci.as
2026-01-24 02:46
HTTP/1.1 500 Internal Server Error Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · fixit.abaci.as
2026-01-24 02:46
HTTP/1.1 200 OK
Server: nginx
Date: Sat, 24 Jan 2026 02:46:38 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Vary: Accept-Encoding
Vary: Accept-Encoding
Page title: fixit.abaci.as
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>fixit.abaci.as</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="inspiritas.css" rel="stylesheet">
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
</style>
<script>
/* Script written by Adam Khoury @ DevelopPHP.com */
/* Video Tutorial: http://www.youtube.com/watch?v=EraNFJiY0Eg */
function _(el){
return document.getElementById(el);
}
function togglemoreoptions(optionid) {
var o = _('more_options'+optionid);
if ( o.style.display !== 'block') {
o.style.display = 'block';
} else {
o.style.display = 'none';
}
}
function uploadFile(modus, oppsettid, fileid, progressid){
var formdata = new FormData();
formdata.append("modus", modus);
var o = _(oppsettid);
switch (modus) {
case '1':
var ovalue = o.options[o.selectedIndex].value;
break;
case '2':
var ovalue = '0';
break;
case '3':
var ovalue = o.value;
break;
case '4':
var ovalue = prompt('Passord:', '');
break;
case '5':
var ovalue = o.options[o.selectedIndex].value;
break;
case '7':
var ovalue = o.options[o.selectedIndex].value;
break;
}
formdata.append("oppsett", ovalue);
var file = _(fileid).files[0];
formdata.append("fil", file, file.name);
var ajax = new XMLHttpRequest();
ajax.upload.addEventListener("progress", function(event) { progressHandler(event, progressid); }, false);
ajax.addEventListener("load", function(event) { completeHandler(event, progressid); }, false);
ajax.addEventListener("error", function(event) { errorHandler(event, progressid); }, false);
ajax.addEventListener("abort", function(event) { abortHandler(event, progressid); }, false);
ajax.open("POST", "convert.php");
_("progress_percent_"+progressid).style.width = "0px";
ajax.send(formdata);
}
function progressHandler(event, progressid){
var p = progressid;
_("progress_text_"+p).innerHTML = "Overfører..."; // "+event.loaded+" bytes of "+event.total;
var percent = (event.loaded / event.total) * 100;
_("progress_percent_"+p).style.width = Math.round(percent) + "%";
_("progress_percent_"+p).style.display = "block";
}
function completeHandler(event, progressid){
var p = progressid;
_("progress_text_"+p).innerHTML = event.target.responseText;
//_("progress_percent_"+p).style.display = "none";
_("progress_percent_"+p).style.width = "100%";
}
function errorHandler(event, progressid){
var p = progressid;
_("progress_text_"+p).innerHTML = "Upload Failed";
}
function abortHandler(event, progressid){
var p = progressid;
_("progress_text_"+p).innerHTML = "Upload Aborted";
}
</script>
</head>
<body>
<!-- Navbar
================================================== -->
<div class="navbar navbar-static-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">FIXIT.ABACI.AS</a>
<span class="tagline">div duppeditt</span>
</div>
</div>
</div>
<div class="container">
<div class="row-fluid">
<div class="span3">
<aside>
<nav>
<ul class="nav"> <li class="">
<a href="#f1"><i class="icon-play icon-white"></i>Fix 1: æøå</a>
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · test.abaci.as
2026-01-24 02:46
HTTP/1.1 401 Unauthorized Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=iso-8859-1 Content-Length: 381 Connection: close WWW-Authenticate: Basic realm="test.abaci.as" Page title: 401 Unauthorized <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>401 Unauthorized</title> </head><body> <h1>Unauthorized</h1> <p>This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.</p> </body></html>
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · www.abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:39 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · www.abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close Location: http://www.abaci.no/
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · fixit.abaci.as
2026-01-24 02:46
HTTP/1.1 301 Moved Permanently Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=iso-8859-1 Content-Length: 231 Connection: close Location: https://fixit.abaci.as/ Page title: 301 Moved Permanently <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="https://fixit.abaci.as/">here</a>.</p> </body></html>
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:443 · io.abaci.as
2026-01-24 02:46
HTTP/1.1 500 Internal Server Error Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=UTF-8 Transfer-Encoding: chunked Connection: close
Open service 2a01:5b40:0:4a04:0:fd56:c140:fedb:80 · pull.abaci.as
2026-01-24 02:46
HTTP/1.1 401 Unauthorized Server: nginx Date: Sat, 24 Jan 2026 02:46:38 GMT Content-Type: text/html; charset=iso-8859-1 Content-Length: 381 Connection: close WWW-Authenticate: Basic realm="IO" Page title: 401 Unauthorized <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>401 Unauthorized</title> </head><body> <h1>Unauthorized</h1> <p>This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.</p> </body></html>