Recommended: How to easily crack other people's ASP Trojan password Cracking goal: Cracking an encrypted Asp Trojan login password. Since there is no version description in the Trojan horse, I don’t know what the Trojan is called. Cracking ideas: two types: replace the ciphertext with the encrypted password and reversely solve the password using the ciphertext and encryption algorithm. The former root
First, before we make the message sheet, we first create an input screen interface effect, that is, generate the html page of the input screen of the message section, and then add the ASP script to these html source codes. The html code I got here is as follows.
*File name: book.htm
| The following is the quoted content: <html> <head> <title>Message Title</title> </head> <body bgcolor=#BED9FC background=images/bg.gif> <p align=center><img src=images/gbook.gif alt=GBook.gif (12142 bytes) WIDTH=374 HEIGHT=83> </p> <p align=center>[<a href=disp.asp>I want to read the message board</a>] [<a href=../index.asp>Return to homepage</a>]</p> <form method=POST action=book.asp> <input type=hidden name=task value=insert><div align=left><table> <tr> <td align=right>Name</td> <td><img src=images/bottom-b.gif alt=BUTTOM-B.GIF (179 bytes) WIDTH=16 HEIGHT=16></td> <td><input name=name size=46></td> </tr> <tr> <td align=right>Gender</td> <td><img src=images/bottom-g.gif alt=BUTTOM-G.GIF (179 bytes) WIDTH=16 HEIGHT=16></td> <td><input name=sex size=46></td> </tr> <tr> <td align=right>from </td> <td><img src=images/bottom-b.gif alt=BUTTOM-B.GIF (179 bytes) WIDTH=16 HEIGHT=16></td> <td><input name=from size=46></td> </tr> <tr> <td align=right>Homepage URL</td> <td><img src=images/homepage.gif alt=HomePage.gif (1232 bytes) WIDTH=30 HEIGHT=30></td> <td><input name=url size=46></td> </tr> <tr> <td align=right> E-mail</td> <td><img src=images/email.gif alt=Email.gif (1197 bytes) WIDTH=30 HEIGHT=30></td> <td><input name=email size=46></td> </tr> <tr> <td align=right>Leave a message</td> <td colspan=2><textarea wrap=off name=comments cols=49 rows=9></textarea></td> </tr> <tr> <td> </td> <td colspan=2><dl> <dd align=center> <input type=submit value=I have written it> <input type=reset value=write again></dd> </dl> </td> </tr> </table> </div> </form> <p align=center> </p> </body> </html> |
You can click here to see the effect of this interface (it needs to be emphasized that these html codes are still completely unfunctional). You can save it as book.htm, and then use FRONTPAGE98 to open it. After opening it, you can view the attributes of the input FORM in the web page, in this message sheet. We use two files to process, one is book.asp and the other is disp.asp. The former is an input interface and the latter is a display interface for displaying message information.
Share: ASP optimization uses data binding to achieve high-efficiency dynamic web pages Data Binding is not a new concept, and IE 4.0 has already provided rich support for it. However, data binding is not valued as it deserves, and many developers seem to be more willing to use server-side scripting methods. However, in fact
2 pages in total Previous page 12 Next page