["http://cepheuzmani.com",301,[["RedirectLocation",[{"name":"location","string":"https://cepheuzmani.com/","certainty":100}]],["Country",[{"string":"TURKEY","module":"TR","certainty":100}]],["Title",[{"name":"page title","string":"Document Moved","certainty":100}]],["X-Powered-By",[{"name":"x-powered-by string","string":"ASP.NET","certainty":100}]],["HTTPServer",[{"name":"server string","string":"Microsoft-IIS/10.0","certainty":100}]],["Microsoft-IIS",[{"search":"headers[server]","version":["10.0"],"regexp_compiled":"(?i-mx:Microsoft-IIS\\/([\\d\\.]+))","certainty":100}]],["IP",[{"string":"213.238.183.40","certainty":100}]],["UncommonHeaders",[{"name":"headers","string":"x-powered-by-plesk","certainty":100}]]]] ["https://cepheuzmani.com/",200,[["Bootstrap",[{"regexp":["<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/bootstrap"],"regexp_compiled":"(?-mix:<link [^>]*bootstrap)","certainty":100}]],["Country",[{"string":"TURKEY","module":"TR","certainty":100}]],["Title",[{"name":"WARNING","module":"Title element contains newline(s)!","certainty":100},{"name":"page title","string":"Cephe Uzmanı | Mantolama | Isı Yalıtımı | Cephe Giydirme","certainty":100}]],["Meta-Author",[{"string":["Şemsi Gerz"],"regexp_compiled":"(?i-mx:<meta[^>^=]+name[\\s]*=[\\s]*['\"]?author['\"]?[^>^=]+content[\\s]*=[\\s]*['\"]([^'^\"^>]+))","certainty":100}]],["Email",[{"string":["info@cepheuzmani.com"],"regexp_compiled":"(?i-mx:[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4})","certainty":100},{"string":["info@cepheuzmani.com"],"regexp_compiled":"(?i-mx:<[^>]+href=[^>]*mailto:([^\\'\\\"\\?>]+)[^>]*>)","certainty":100}]],["X-Powered-By",[{"name":"x-powered-by string","string":"ASP.NET","certainty":100}]],["HTTPServer",[{"name":"server string","string":"Microsoft-IIS/10.0","certainty":100}]],["Modernizr",[{"regexp":["<script type=\"text/javascript\" src=\"/js/modernizr.js"],"regexp_compiled":"(?i-mx:<script [^>]*src=[\"'][^>]*modernizr[^>]*\\.js)","certainty":100}]],["Microsoft-IIS",[{"search":"headers[server]","version":["10.0"],"regexp_compiled":"(?i-mx:Microsoft-IIS\\/([\\d\\.]+))","certainty":100}]],["ASP_NET",[{"name":"X-AspNet-Version HTTP header","search":"headers[x-aspnet-version]","version":["4.0.30319"],"regexp_compiled":"(?-mix:^(.*)$)","certainty":100},{"search":"body","text":"<input type=\"hidden\" name=\"__VIEWSTATE\" id=\"__VIEWSTATE\"","regexp_compiled":"(?-mix:<input\\ type=\"hidden\"\\ name=\"__VIEWSTATE\"\\ id=\"__VIEWSTATE\")","certainty":100}]],["HTML5",[{"regexp":["<!DOCTYPE html>"],"regexp_compiled":"(?i-mx:<!DOCTYPE html>)","certainty":100}]],["IP",[{"string":"213.238.183.40","certainty":100}]],["UncommonHeaders",[{"name":"headers","string":"x-powered-by-plesk","certainty":100}]],["Script",[{"regexp":[" "],"regexp_compiled":"(?i-mx:<script(\\s|>))","certainty":100},{"string":["text/javascript"],"offset":1,"regexp_compiled":"(?-mix:<script[^>]+(language|type)\\s*=\\s*['\"]?([^'\"\\s]+)['\"]?)","certainty":100}]],["JQuery",[{"regexp":["<script type=\"text/javascript\" src=\"/js/jquery","<script type=\"text/javascript\" src=\"/rs-plugin/js/jquery"],"regexp_compiled":"(?-mix:<script [^>]*jquery)","certainty":100}]]]]
*** EXPERIMENTAL ***This website uses ASP.NET's Viewstate but maybe without any MAC.
Ensure the MAC is set for all pages on this website.
No Anti-CSRF tokens were found in a HTML submission form.A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.CSRF attacks are effective in a number of situations, including: * The victim has an active session on the target site. * The victim is authenticated via HTTP auth on the target site. * The victim is on the same local network as the target site.CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
Phase: Architecture and DesignUse a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.For example, use anti-CSRF packages such as the OWASP CSRFGuard.Phase: ImplementationEnsure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.Phase: Architecture and DesignGenerate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).Note that this can be bypassed using XSS.Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.Note that this can be bypassed using XSS.Use the ESAPI Session Management control.This control includes a component for CSRF.Do not use the GET method for any request that triggers a state change.Phase: ImplementationCheck the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
The following emails were found being serialized in the viewstate field:
Verify the provided information isn't confidential.
The following potential IP addresses were found being serialized in the viewstate field:
Verify the provided information isn't confidential.
The identified library jquery, version 1.11.3 is vulnerable.
Please upgrade to the latest version of jquery.
X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.
Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (if you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).
The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.
Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate; and that the pragma HTTP header is set with no-cache.
The web/application server is leaking information via one or more 'X-Powered-By' HTTP response headers. Access to such information may facilitate attackers identifying other frameworks/components your web application is reliant upon and the vulnerabilities such components may be subject to.
Ensure that your web server, application server, load balancer, etc. is configured to suppress 'X-Powered-By' headers.
A timestamp was disclosed by the application/web server - Unix
Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
Server leaks information via 'X-AspNet-Version'/'X-AspNetMvc-Version' HTTP response header field(s).
Configure the server so it will not return those headers.
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
A | ||||
A | www.elixir.ee | 3600 | 217.146.69.20 | |
AAAA | ||||
Sorry, no records found | ||||
CNAME | ||||
CNAME | www.elixir.ee | 3600 | elixir.ee | |
MX | ||||
MX | www.elixir.ee | 3600 | 5 | ALT2.ASPMX.L.GOOGLE.COM. |
MX | www.elixir.ee | 3600 | 10 | ALT3.ASPMX.L.GOOGLE.COM. |
MX | www.elixir.ee | 3600 | 10 | ALT4.ASPMX.L.GOOGLE.COM. |
MX | www.elixir.ee | 3600 | 1 | ALTMX.ASPMX.L.GOOGLE.COM. |
NS Records | ||||
NS | elixir.ee | 3600 | ns2.zone.ee. (85.234.242.32) | |
NS | elixir.ee | 3600 | ns.zone.eu. (217.146.66.65) | |
NS | elixir.ee | 3600 | ns3.zonedata.net. (90.191.225.242) | |
TXT | ||||
TXT | elixir.ee | 3600 | v=spf1 a mx include:_spf.zone.eu include:_spf.google.com ~all |
This report was generated with the Idyllum Labs Website security tool.
Get your report www.idyllum.com
Is the code hosted at cepheuzmani.com vulnerable to cybersecurity attacks? Are the used systems up to date and respecting the security standards of 2023?
We at Idyllum Labs wanted to find out! That is why we built this automated website security scanner and generated this report.
This is an automated and unbiased website vulnerability scan for the domain cepheuzmani.com and has nothing to do with human subjectivity, thoughts, opinions, or relationships.
Our cloud-based infrastructure crawls the internet using a mixture of OWASP ZAP, Nmap, Whatweb, and other great software to detect website security issues. We display this data for educational purposes - to give security guidelines for anyone interested in building a safer web environment.
If you have comments, don't agree with the results, or want to submit a site for manual examination, don't hesitate to contact us.
Run a free OWASP ZAP scan for any website at Idyllum.com!