Help
RSS
API
Feed
Maltego
Contact
Domain > emmanuelpark.com.ng
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-02-13
5.10.68.188
(
ClassC
)
2024-11-02
176.74.18.130
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Sat, 02 Nov 2024 22:14:08 GMTServer: ApacheVary: CookieReferrer-Policy: same-originX-Frame-Options: DENYX-Content-Type-Options: nosniffCross-Origin-Opener-Policy: same-originX-Powered-By: Phusion Passenger(R) 6.0.23Set-Cookie: csrftoken71JW84dMqUYvLGN6ccnaXOS3K4qvbiV5; expiresSat, 01 Nov 2025 22:14:09 GMT; Max-Age31449600; Path/; SameSiteLaxContent-Length: 7968Status: 200 OKContent-Type: text/html; charsetutf-8 !DOCTYPE html>html langen> !-- Mirrored from templates.iqonic.design/Emmanuel Park/html/backend/auth-confirm-mail.html by HTTrack Website Copier/3.x XR&CO2014, Fri, 30 Dec 2022 21:38:06 GMT --> head> meta charsetutf-8 /> meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno /> title> Login | Emmanuel Park/title> !-- Favicon --> link relshortcut icon hrefhttps://templates.iqonic.design/Emmanuel Park/html/assets/images/favicon.ico /> link relstylesheet href/static/assets/css/backend-plugin.min.css /> link relstylesheet href/static/assets/css/backende209.css%3Fv%3D1.0.0 /> link relstylesheet href/static/assets/vendor/%2540fortawesome/fontawesome-free/css/all.min.css /> link relstylesheet href/static/assets/vendor/line-awesome/dist/line-awesome/css/line-awesome.min.css /> link relstylesheet href/static/assets/vendor/remixicon/fonts/remixicon.css /> link href/static/assets/css/font-awesome.min.css relstylesheet typetext/css /> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css /> script src/static/sweetalert.min.js>/script> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css> style> .form-control:focus { border-color: #cf2e2e; } .form-control { border-color: #cf2e2e; } .btn-primary { border-color: #cf2e2e; background-color: #cf2e2e; } .btn-primary:hover { border-color: #cf2e2e; background-color: #cf2e2e; } .svg-icon { color: lightred; } .floating-input { color: lightred; } /style> /head> body> !-- loader Start --> !--div idloading>--> !-- div idloading-center>/div>--> !--/div>--> div classwrapper> section classlogin-content> div classcontainer> a href# classheader-logo mt-4> /a> div classrow align-items-center justify-content-center height-self-center> div classcol-lg-8> h3 classlogo-title light-logo ml-3 mt-5 >a href/index stylecolor: #cf2e2e>Emmanuel Park/a>/h3> div classcard auth-card> div classcard-body p-0> div classd-flex align-items-center auth-content> div classcol-lg-7 align-self-center> div classp-3> h2 classmb-2>Sign In/h2> p>Login to stay connected./p> form action methodPOST enctypemultipart/form-data> input typehidden namecsrfmiddlewaretoken valueRUDc6iaZ4qh75scVWQ69mdVc8yqATt5VOLcY4cdBka5sGYPRYSj99RD5IsGVUBQQ> div classrow> div classcol-lg-12> div classform-group> label stylebackground-color: transparent>Username/label> input classfloating-input form-control nameusername typetext placeholder required /> /div> /div> div classcol-lg-12> div classform-group> label stylebackground-color: transparent>Password/label> input classform-control namepassword typepassword placeholder required idpassword1 /> i classfar fa-eye idpass onclickswitching() stylemargin-left: 88%; margin-top: -5em; cursor: pointer>/i> /div> /div> div classcol-lg-6 stylemargin-top: -2em> a href/reset_my_pass classfloat-right stylecolor: #cf2e2e>Forgot Password?/a> /div> /div> button typesubmit classbtn btn-primary>Sign In/button> /form> /div> /div> div classcol-lg-5 content-right> img srcassets/images/login/01.png classimg-fluid image-right alt /> /div> /div> /div> /div> /div> /div> /div> /section>/div> script> const togglePassword document.querySelector(#togglePassword); const password document.querySelector(#id_password); togglePassword.addEventListener(click, function (e) { // toggle the type attribute const type password.getAttribute(type) password ? text : password; password.setAttribute(type, type); // toggle the eye slash icon this.classList.toggle(fa-eye-slash); });/script>script> function switching() { var get_input document.getElementById(password1); var eye document.getElementById(pass); if (get_input.type password) { eye.classList.toggle(fa-eye-slash); get_input.type text; } else { eye.classList.toggle(fa-eye-slash); get_input.type password; } }/script> !-- Backend Bundle JavaScript --> script src/static/assets/js/backend-bundle.min.js>/script> !-- Table Treeview JavaScript --> script src/static/assets/js/table-treeview.js>/script> !-- Chart Custom JavaScript --> script src/static/assets/js/customizer.js>/script> !-- Chart Custom JavaScript --> script async src/static/assets/js/chart-custom.js>/script> !-- app JavaScript --> script src/static/assets/js/app.js>/script> script src/static/sweetalert.min.js>/script> script src/static/jquery-3.1.1.min.js typetext/javascript>/script> script src/static/jquery-ui.min.js typetext/javascript>/script> link href/static/jquery-ui.min.css relstylesheet typetext/css /> script src/static/dist/rating.js>/script> script> window.addEventListener(online, function() { alert(You are online now!); }); window.addEventListener(offline, function() { alert(Oops! You are offline now!); }); if (navigator.onLine) { console.log(You are online); } else { console.log(You are offline); } /script> script> // Define the idle time in milliseconds (10 minutes 600000 milliseconds) const IDLE_TIMEOUT 600000; // 10 minutes // Initialize a timer let timer; // Function to reset the timer when theres user activity function resetTimer() { // Clear the previous timer, if any clearTimeout(timer); // Set a new timer timer setTimeout(logout, IDLE_TIMEOUT); } // Function to handle user logout function logout() { alert(App idle for more than 10mins, Session Expired!!! please re-login. Thank you); window.location.href /logout; } // Attach event listeners to reset the timer on user activity document.addEventListener(mousemove, resetTimer); document.addEventListener(keypress, resetTimer); // Start the timer when the page loads resetTimer(); /script> /body> !-- Mirrored from templates.iqonic.design/Emmanuel Park/html/backend/auth-confirm-mail.html by HTTrack Website Copier/3.x XR&CO2014, Fri, 30 Dec 2022 21:38:07 GMT -->/html>
Port 443
HTTP/1.1 200 OKDate: Sat, 02 Nov 2024 22:14:10 GMTServer: ApacheVary: CookieReferrer-Policy: same-originCross-Origin-Opener-Policy: same-originX-Frame-Options: DENYX-Content-Type-Options: nosniffX-Powered-By: Phusion Passenger(R) 6.0.23Set-Cookie: csrftokenTngpOu9cTmdSWkV3WCRyeqkXveqXOib4; expiresSat, 01 Nov 2025 22:14:10 GMT; Max-Age31449600; Path/; SameSiteLaxContent-Length: 7968Status: 200 OKContent-Type: text/html; charsetutf-8 !DOCTYPE html>html langen> !-- Mirrored from templates.iqonic.design/Emmanuel Park/html/backend/auth-confirm-mail.html by HTTrack Website Copier/3.x XR&CO2014, Fri, 30 Dec 2022 21:38:06 GMT --> head> meta charsetutf-8 /> meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno /> title> Login | Emmanuel Park/title> !-- Favicon --> link relshortcut icon hrefhttps://templates.iqonic.design/Emmanuel Park/html/assets/images/favicon.ico /> link relstylesheet href/static/assets/css/backend-plugin.min.css /> link relstylesheet href/static/assets/css/backende209.css%3Fv%3D1.0.0 /> link relstylesheet href/static/assets/vendor/%2540fortawesome/fontawesome-free/css/all.min.css /> link relstylesheet href/static/assets/vendor/line-awesome/dist/line-awesome/css/line-awesome.min.css /> link relstylesheet href/static/assets/vendor/remixicon/fonts/remixicon.css /> link href/static/assets/css/font-awesome.min.css relstylesheet typetext/css /> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css /> script src/static/sweetalert.min.js>/script> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css> style> .form-control:focus { border-color: #cf2e2e; } .form-control { border-color: #cf2e2e; } .btn-primary { border-color: #cf2e2e; background-color: #cf2e2e; } .btn-primary:hover { border-color: #cf2e2e; background-color: #cf2e2e; } .svg-icon { color: lightred; } .floating-input { color: lightred; } /style> /head> body> !-- loader Start --> !--div idloading>--> !-- div idloading-center>/div>--> !--/div>--> div classwrapper> section classlogin-content> div classcontainer> a href# classheader-logo mt-4> /a> div classrow align-items-center justify-content-center height-self-center> div classcol-lg-8> h3 classlogo-title light-logo ml-3 mt-5 >a href/index stylecolor: #cf2e2e>Emmanuel Park/a>/h3> div classcard auth-card> div classcard-body p-0> div classd-flex align-items-center auth-content> div classcol-lg-7 align-self-center> div classp-3> h2 classmb-2>Sign In/h2> p>Login to stay connected./p> form action methodPOST enctypemultipart/form-data> input typehidden namecsrfmiddlewaretoken valueCSIyj3ayn40BgvdH2k3uzJT7qpZ1eMKOl5ONXn9A6g3j2FYAOMKSDZ3ULtfOSULI> div classrow> div classcol-lg-12> div classform-group> label stylebackground-color: transparent>Username/label> input classfloating-input form-control nameusername typetext placeholder required /> /div> /div> div classcol-lg-12> div classform-group> label stylebackground-color: transparent>Password/label> input classform-control namepassword typepassword placeholder required idpassword1 /> i classfar fa-eye idpass onclickswitching() stylemargin-left: 88%; margin-top: -5em; cursor: pointer>/i> /div> /div> div classcol-lg-6 stylemargin-top: -2em> a href/reset_my_pass classfloat-right stylecolor: #cf2e2e>Forgot Password?/a> /div> /div> button typesubmit classbtn btn-primary>Sign In/button> /form> /div> /div> div classcol-lg-5 content-right> img srcassets/images/login/01.png classimg-fluid image-right alt /> /div> /div> /div> /div> /div> /div> /div> /section>/div> script> const togglePassword document.querySelector(#togglePassword); const password document.querySelector(#id_password); togglePassword.addEventListener(click, function (e) { // toggle the type attribute const type password.getAttribute(type) password ? text : password; password.setAttribute(type, type); // toggle the eye slash icon this.classList.toggle(fa-eye-slash); });/script>script> function switching() { var get_input document.getElementById(password1); var eye document.getElementById(pass); if (get_input.type password) { eye.classList.toggle(fa-eye-slash); get_input.type text; } else { eye.classList.toggle(fa-eye-slash); get_input.type password; } }/script> !-- Backend Bundle JavaScript --> script src/static/assets/js/backend-bundle.min.js>/script> !-- Table Treeview JavaScript --> script src/static/assets/js/table-treeview.js>/script> !-- Chart Custom JavaScript --> script src/static/assets/js/customizer.js>/script> !-- Chart Custom JavaScript --> script async src/static/assets/js/chart-custom.js>/script> !-- app JavaScript --> script src/static/assets/js/app.js>/script> script src/static/sweetalert.min.js>/script> script src/static/jquery-3.1.1.min.js typetext/javascript>/script> script src/static/jquery-ui.min.js typetext/javascript>/script> link href/static/jquery-ui.min.css relstylesheet typetext/css /> script src/static/dist/rating.js>/script> script> window.addEventListener(online, function() { alert(You are online now!); }); window.addEventListener(offline, function() { alert(Oops! You are offline now!); }); if (navigator.onLine) { console.log(You are online); } else { console.log(You are offline); } /script> script> // Define the idle time in milliseconds (10 minutes 600000 milliseconds) const IDLE_TIMEOUT 600000; // 10 minutes // Initialize a timer let timer; // Function to reset the timer when theres user activity function resetTimer() { // Clear the previous timer, if any clearTimeout(timer); // Set a new timer timer setTimeout(logout, IDLE_TIMEOUT); } // Function to handle user logout function logout() { alert(App idle for more than 10mins, Session Expired!!! please re-login. Thank you); window.location.href /logout; } // Attach event listeners to reset the timer on user activity document.addEventListener(mousemove, resetTimer); document.addEventListener(keypress, resetTimer); // Start the timer when the page loads resetTimer(); /script> /body> !-- Mirrored from templates.iqonic.design/Emmanuel Park/html/backend/auth-confirm-mail.html by HTTrack Website Copier/3.x XR&CO2014, Fri, 30 Dec 2022 21:38:07 GMT -->/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]