2009-10-01 16:53:23 -06:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import cgi
|
|
|
|
import cgitb
|
|
|
|
cgitb.enable(context=10)
|
|
|
|
|
|
|
|
fields = cgi.FieldStorage()
|
|
|
|
|
|
|
|
print 'Content-Type: text/html'
|
|
|
|
print ''
|
|
|
|
|
|
|
|
|
|
|
|
print '''
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>2</title>
|
2009-10-05 11:09:34 -06:00
|
|
|
<link rel="stylesheet" type="text/css" href=",ctf.css" media="all" />
|
2009-10-01 16:53:23 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="content">
|
|
|
|
<h1>Web Application Challenge 2</h1>
|
|
|
|
<p>Through some manipulation or interpretation of this CGI script
|
|
|
|
and the HTML page(s) that it generates, a 10 character key can be
|
|
|
|
found.</p>
|
|
|
|
<p><strong>Find the key!</strong></p>
|
|
|
|
<p style="margin-top: 5em;">Question: How many geeks does it take to break a CGI?</p>
|
|
|
|
'''
|
|
|
|
|
|
|
|
# key = uq4G4dXrpx
|
|
|
|
if (fields.has_key('num')):
|
|
|
|
print '''
|
|
|
|
<p style="color: #fff;">You entered %d.</p>
|
|
|
|
''' % int(fields['num'].value)
|
|
|
|
|
|
|
|
print '''
|
2009-10-06 14:16:47 -06:00
|
|
|
<form method="get" action="2.cgi">
|
2009-10-01 16:53:23 -06:00
|
|
|
Enter an integer: <input name="num" type="text" size="10" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
|
|
<p>Copyright © 2009 LANS, LLC.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
'''
|
|
|
|
|