codeigniter 从代码点火器中的botdetect captcha中删除链接

fcwjkofz  于 2022-12-06  发布在  其他
关注(0)|答案(5)|浏览(148)

我正在使用Botdetect验证码,但我需要删除链接,他们已经给了下面的图像验证码,如何删除它

<a href="//captcha.org/captcha.html?codeigniter" title="BotDetect CAPTCHA Library for CodeIgniter" style="display: block !important; height: 10px !important; margin: 0 !important; padding: 0 !important; font-size: 9px !important; line-height: 9px !important; visibility: visible !important; font-family: Verdana, DejaVu Sans, Bitstream Vera Sans, Verdana Ref, sans-serif !important; vertical-align: middle !important; text-align: center !important; text-decoration: none !important; background-color: #f8f8f8 !important; color: #606060 !important;">BotDetect CAPTCHA Library for CodeIgniter</a>

以下是图像

5vf7fwbs

5vf7fwbs1#

添加代码顶部站点

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("a[title ~= 'BotDetect']").removeAttr("style");
    $("a[title ~= 'BotDetect']").removeAttr("href");
    $("a[title ~= 'BotDetect']").css('visibility', 'hidden');

});
</script>
vpfxa7rd

vpfxa7rd2#

我使用botdetect验证码是为了非商业用途,
在那里我成功地删除了链接和标题。
要修改的文件的路径,
vendor/captcha-com/examples/captcha/lib/botdetect/CaptchaInculdes.php

private static function iqy23{
return '';
}

还有

public static function GetHelpLinkText($_1qfl5bimwvnl8fd7, $_iitpwcsaaap742gstb7q5) {
return '';
}

以上两个函数均返回空白。
希望它能帮助那些寻找非商业用途或愿意理解算法的人,
总是推荐购买付费版本用于商业用途。
干杯:)

tyu7yeag

tyu7yeag3#

阅读下面的链接。我建议你可以把帮助链接模式转换成图像。它会隐藏文本不显示,而验证码将是可点击的。
https://captcha.com/doc/java/captcha-options.html#captcha_help_link_mode
https://captcha.com/license/captcha-free-version-limitations.html#link

zy1mlcev

zy1mlcev4#

您可以添加HelpLinkMode属性,该属性的值为“Image”,如下所示:<BotDetect:WebFormsCaptcha ID="ExampleCaptcha" UserInputID="CaptchaCode" runat="server" HelpLinkMode="Image"/>

8iwquhpp

8iwquhpp5#

您可以在图例上制作div:

<botDetect:captcha id="miCaptcha" userInputID="captchaCode" codeLength="4" imageWidth="150" imageStyle="GRAFFITI2"/>
<div id="tapa" style="background-color: #ffffd9;height: 10px;width: 150px;position: relative;top: -10px;"></div>

相关问题