Domain marine.farjan.dev
Singapore
DIGITALOCEAN-ASN
Software information

cloudflare cloudflare

tcp/443

  • Git configuration and history exposed
    First seen 2022-09-22 22:41
    Last seen 2024-06-26 01:34
    Open for 642 days
    • Severity: high
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a6522f5725324

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://farjan@bitbucket.org/farjan/diagnosis-system.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "common"]
      	remote = origin
      	merge = refs/heads/master
      
      Found on 2024-06-26 01:34
      281 Bytes
    • Severity: high
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a65227187679c

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = https://farjan@bitbucket.org/farjan/diagnosis-system.git
      	fetch = +refs/heads/*:refs/remotes/origin/*
      
      Found on 2022-09-22 22:41
      219 Bytes
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-26 01:34

    HTTP/1.1 200 OK
    Date: Wed, 26 Jun 2024 01:34:39 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=q646qu9v7nqkcht3elc7v3ql9ikddskd; expires=Wed, 26-Jun-2024 03:34:39 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=Oq5q5nAxhxczpHi0mMoTf%2FJd%2BI1kntTaxIFqV%2BctSqYeu8y0Fpxzpadi2VFPt95C3OAjeW9tFD%2FawIWkBINIWZ17j0KF49sFaxytb7B1285uAIw1GucchcgPpTaHoFBUAypmaQ%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 899974ca99d42ba9-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found one day ago by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-24 20:38

    HTTP/1.1 200 OK
    Date: Mon, 24 Jun 2024 20:38:41 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=k7595dr67qscmaridmkaipcdvg1oq8u5; expires=Mon, 24-Jun-2024 22:38:41 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=5l3qAg%2FmkvG3w6Hm%2FXjToUKpeDKgsl%2FTtrzZcSxCyvx%2BRZxC1wLpyI8lExsJzp5eyBf1Hg2ErP%2B210EOGDYZQTdz8eqe5BlSEOlNSd7PFZlcZplrdH15EENmTevOqbxNqSy2%2BA%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 898f85d9afbf66af-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2 days ago by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-22 19:27

    HTTP/1.1 200 OK
    Date: Sat, 22 Jun 2024 19:27:51 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=3kgu8nk7aejq9qj3qsi92t0kd5i2i9rr; expires=Sat, 22-Jun-2024 21:27:51 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=q6DJ40wb9Yio5rfC4sUqPDFaDpYj5eAvbThh65JyBNeXwJfyVhJiZIjiCdY50tyUSAYE5UArr4%2FJDlRYlt4%2BQxMDYq8uTzs7TAzEEEuKOr6mmWSNKgYa3956JbSFDnRcrPoB9g%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 897ea3585fcf8f3a-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2024-06-22 by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-20 21:07

    HTTP/1.1 200 OK
    Date: Thu, 20 Jun 2024 21:07:37 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=mi99ehrfidkm0mks8vrfnkm3f3c24352; expires=Thu, 20-Jun-2024 23:07:37 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=tRjAWb%2FGZ41wPTMO34kCgiSxtpMR95ei85ovk9ZFGL7DrHrZbAC2k5ojv7Au%2B3uK1yO%2BnsVXRFAJX4F1iT2D7FB1rIQVoA9yfd2OWQaRuSpeAP%2FWmkU30B8Rw50SJpzBvOXfyQ%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 896ebabf3e353689-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2024-06-20 by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-18 13:50

    HTTP/1.1 200 OK
    Date: Tue, 18 Jun 2024 13:50:19 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=2mkj2k0jmlshvqjn564mecl28mv7dge9; expires=Tue, 18-Jun-2024 15:50:19 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=PdqYCeNcuBmSaSjl0h7cJTMMOo0t3lcwZlElKlaeW67B4aecQkDu5BTDTljI4r7ROOKA58ERS8TBJs%2Fl8U3Rx2CpMOemMocHSdByyWgw91%2B2GTxYDv04R8bvYBTDiqLBklCGAw%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 895bbf68b8bcb8cc-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2024-06-18 by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-16 13:46

    HTTP/1.1 200 OK
    Date: Sun, 16 Jun 2024 13:46:20 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=12tvpu9cbn9bnr45v98nh06h0enab5e4; expires=Sun, 16-Jun-2024 15:46:19 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=3HwK0LuSpw505%2BHpMhmmpbmAVXen02CyA5sEFn39KDODC9x7ae%2B3VF%2F%2BOHEErZ7qVqshBBTN9Tz4zibJR6OJKEq0q2p7zXPBkWCQOgBJXl5E3mIJVljPRZxaACVuaztpr61VJw%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 894b3ecd893543c4-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2024-06-16 by HttpPlugin
    Create report
  • Open service 104.21.59.189:443 · marine.farjan.dev

    2024-06-12 07:07

    HTTP/1.1 200 OK
    Date: Wed, 12 Jun 2024 07:07:06 GMT
    Content-Type: text/html; charset=UTF-8
    Transfer-Encoding: chunked
    Connection: close
    Set-Cookie: ci_session=ovdslm6v2577jevvenrn2dqgj1mfg3h5; expires=Wed, 12-Jun-2024 09:07:06 GMT; Max-Age=7200; path=/; HttpOnly
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Cache-Control: no-store, no-cache, must-revalidate
    Pragma: no-cache
    CF-Cache-Status: DYNAMIC
    Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=JRH9XPTnd86nvUeebzdLuj055tlmhl24w3yNXxFI68RE%2Fm0zqCXSs90iGvIFWtdaSuwWoQhw0tVvsfIwTH9EiNJdBx1cIOf7EryOIDzeqOBWdmk5anvFG1Cu75sKXvm%2B9Wzz7Q%3D%3D"}],"group":"cf-nel","max_age":604800}
    NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
    Server: cloudflare
    CF-RAY: 89280081c94eaad4-YYZ
    alt-svc: h3=":443"; ma=86400
    
    Page title: 
            Marine     - Login
    
    <!doctype html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <title>
            Marine     - Login</title>
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/plugins/icheck/all.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/themes.css">
        <script src="js/jquery.min.js"></script>
        <script src="js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
        <script src="js/plugins/validation/jquery.validate.min.js"></script>
        <script src="js/plugins/validation/additional-methods.min.js"></script>
        <script src="js/plugins/icheck/jquery.icheck.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/eakroko.js"></script>
        <!--[if lte IE 9]><script src="js/plugins/placeholder/jquery.placeholder.min.js"></script><script>$(document).ready(function(){$('input, textarea').placeholder();});</script><![endif]-->
        <link rel="shortcut icon" href="https://marine.farjan.dev/private/icon/1653555339.png" />
        <link rel="apple-touch-icon-precomposed" href="https://marine.farjan.dev/private/icon/1653555339.png" />
    </head>
    
    <body class='login'>
        <div class="wrapper">
            <h1><a href="index.html">
                <img src="https://marine.farjan.dev/private/icon/1653555339.png" alt="" class='retina-ready' width="59" height="49">
                Marine        </a></h1>
            <div class="login-body">
                <h2>SIGN IN</h2>
                                <form action="" method='POST' class='form-validate' id="test">
                        <div class="form-group">
                            <div class="email controls">
                                <input type="text" name='username' id="username" placeholder="Enter Username" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="form-group">
                            <div class="pw controls">
                                <input type="password" name="password" id="password" placeholder="Password" class='form-control' data-rule-required="true">
                            </div>
                        </div>
                        <div class="submit">
                            <div class="remember">
                                <input type="checkbox" name="remember" class='icheck-me' data-skin="square" data-color="blue" id="remember">
                                <label for="remember">Remember me</label>
                            </div>
                            <input type="submit" name="dlogin" value="Sign me in" class='btn btn-primary'>
                        </div>
                    </form>
                    <div class="forget"><a href="#"><span>Forgot password?</span></a></div>
            </div>
        </div>
        <script type="text/javascript">
            $(function() {
            	checkCookie();
                $("#test").submit(function() {
                    var username = $("#username").val().trim();
                    var password = $("#password").val().trim();
                    if($("#remember").is(':checked')){
                    	setCookie("username",username,30);
                    	setCookie("password",password,30);
                    }else{
                        deleteCookie("username");
                        deleteCookie("password");
                    }
                    return true;
                });
            });
    
            function deleteCookie(name) {
                setCookie(name, "", null);
            }
    
            function setCookie(cname,cvalue,exdays) {
    		    var d = new Date();
    		    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    		    var expires = "expires=" + d.toGMTString();
    		    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    		}
    
    		function getCookie(cname) {
    		    var name = c
    Found 2024-06-12 by HttpPlugin
    Create report
farjan.dev*.farjan.dev
CN:
farjan.dev
Key:
RSA-2048
Issuer:
Not before:
2024-05-14 12:47
Not after:
2024-08-12 12:47
Domain summary
IP summary