当前位置: 首页 > news >正文

温州seo网站建设自媒体发布软件app

温州seo网站建设,自媒体发布软件app,上海网站建设备案号怎么恢复,wordpress 页面 背景图前言 由于网站注册入口容易被黑客攻击,存在如下安全问题: 暴力破解密码,造成用户信息泄露短信盗刷的安全问题,影响业务及导致用户投诉带来经济损失,尤其是后付费客户,风险巨大,造成亏损无底洞…

前言

由于网站注册入口容易被黑客攻击,存在如下安全问题:

  1. 暴力破解密码,造成用户信息泄露
  2. 短信盗刷的安全问题,影响业务及导致用户投诉
  3. 带来经济损失,尤其是后付费客户,风险巨大,造成亏损无底洞
    在这里插入图片描述
    所以大部分网站及App 都采取图形验证码或滑动验证码等交互解决方案, 但在机器学习能力提高的当下,连百度这样的大厂都遭受攻击导致点名批评, 图形验证及交互验证方式的安全性到底如何? 请看具体分析

一、 旷视 PC 注册入口

简介:旷视科技创立于2011年,是一个人工智能产品和解决方案品牌。 于2011年由印奇、唐文斌和杨沐三位创始人成立。 旷视科技以深度学习为核心竞争力 ,融合算法、算力和数据 ,打造出 “三位一体”的新一代AI生产力平台旷视Brain++, 并开源其核心——深度学习框架“天元”。
依托Brain++,旷视专注于算法能产生极大价值的领域——个人物联网、城市物联网、供应链物联网,提供包括算法、软件和硬件产品在内的全栈式、一体化解决方案。 旷视的商业化产品服务全球范围内数十万开发者与超过3,000家行业客户。 此外,旷视重视发展可持续的人工智能。旷视率先行业公开发布《人工智能应用准则》的AI企业,并成立了由企业内外专家组成的人工智能道德伦理委员会。
旷视总部位于北京,拥有近3000名员工,并在北京、上海、南京、成都等地都设有研发中心。

在这里插入图片描述

二丶 安全分析:

采用传统的图形验证码方式,具体为4个数字英文,ocr 识别率在 95% 以上。

测试方法:
采用模拟器+OCR识别

1. 模拟器交互

private static String INDEX_URL = "https://console.faceplusplus.com.cn/register";@Overridepublic RetEntity send(WebDriver driver, String areaCode, String phone) {RetEntity retEntity = new RetEntity();try {driver.get(INDEX_URL);Thread.sleep(1 * 1000);// 1 输入手机号WebElement phoneElemet = driver.findElement(By.id("phone"));phoneElemet.sendKeys(phone);// 点击发送验证码按钮Thread.sleep(500);WebElement sendElemet = driver.findElement(By.xpath("//button/span[contains(text(),'发送验证码')]"));sendElemet.click();// 2 获取图形验证码WebElement imgElement, errElement, inputElement;String imgCode = null;byte[] imgByte = null;Thread.sleep(1 * 1000);for (int i = 0; i < 1; i++) {imgElement = driver.findElement(By.xpath("//img[contains(@src,'/api/official/captcha/get')]"));String imgUrl = imgElement.getAttribute("src");imgByte = GetImage.callJsByUrl(driver, imgUrl);int len = (imgByte != null) ? imgByte.length : 0;imgCode = (len > 0) ? ddddOcr.getImgCode(imgByte) : null;if (imgCode == null) {continue;}// 3 输入识别出来的图形验证码inputElement = driver.findElement(By.id("code"));inputElement.sendKeys(imgCode);ddddOcr.saveFile(this.getClass().getSimpleName(), imgCode, imgByte);// 4 确 认Thread.sleep(1 * 1000);// 点击智能按钮boolean isRobot = false;int beginX = 1540;int beginY = 879;if (isRobot)RobotMove.click(beginX, beginY);else {WebElement confirmElement = driver.findElement(By.xpath("//div[@class='ant-modal-footer']/button/span"));confirmElement.click();}}Thread.sleep(10 * 1000);WebElement msgElement = ChromeDriverManager.waitElement(driver, By.xpath("//button/span[contains(text(),'s')]"), 20);String gtInfo = (msgElement != null && msgElement.isDisplayed()) ? msgElement.getText() : null;retEntity.setMsg(imgCode + "->" + gtInfo);if (gtInfo != null && gtInfo.contains("秒")) {retEntity.setRet(0);return retEntity;}return retEntity;} catch (Exception e) {System.out.println("phone=" + phone + ",e=" + e.toString());for (StackTraceElement ele : e.getStackTrace()) {System.out.println(ele.toString());}return null;} finally {driver.manage().deleteAllCookies();}}

2. 获取图形验证码


public static byte[] callJsById(WebDriver driver, String id) {return callJsById(driver, id, null);}public static byte[] callJsById(WebDriver driver, String id, StringBuffer base64) {String js = "let c = document.createElement('canvas');let ctx = c.getContext('2d');";js += "let img = document.getElementById('" + id + "'); /*找到图片*/ ";js += "c.height=img.naturalHeight;c.width=img.naturalWidth;";js += "ctx.drawImage(img, 0, 0,img.naturalWidth, img.naturalHeight);";js += "let base64String = c.toDataURL();return base64String;";String src = ((JavascriptExecutor) driver).executeScript(js).toString();String base64Str = src.substring(src.indexOf(",") + 1);if (base64 != null) {base64.append(base64Str);}byte[] vBytes = (base64Str != null) ? imgStrToByte(base64Str) : null;return vBytes;}

3.图形验证码识别(Ddddocr)


private static String INDEX_URL = "https://console.faceplusplus.com.cn/register";@Overridepublic RetEntity send(WebDriver driver, String areaCode, String phone) {RetEntity retEntity = new RetEntity();try {driver.get(INDEX_URL);Thread.sleep(1 * 1000);// 1 输入手机号WebElement phoneElemet = driver.findElement(By.id("phone"));phoneElemet.sendKeys(phone);// 点击发送验证码按钮Thread.sleep(500);WebElement sendElemet = driver.findElement(By.xpath("//button/span[contains(text(),'发送验证码')]"));sendElemet.click();// 2 获取图形验证码WebElement imgElement, errElement, inputElement;String imgCode = null;byte[] imgByte = null;Thread.sleep(1 * 1000);for (int i = 0; i < 1; i++) {imgElement = driver.findElement(By.xpath("//img[contains(@src,'/api/official/captcha/get')]"));String imgUrl = imgElement.getAttribute("src");imgByte = GetImage.callJsByUrl(driver, imgUrl);int len = (imgByte != null) ? imgByte.length : 0;imgCode = (len > 0) ? ddddOcr.getImgCode(imgByte) : null;if (imgCode == null) {continue;}// 3 输入识别出来的图形验证码inputElement = driver.findElement(By.id("code"));inputElement.sendKeys(imgCode);ddddOcr.saveFile(this.getClass().getSimpleName(), imgCode, imgByte);// 4 确 认Thread.sleep(1 * 1000);// 点击智能按钮boolean isRobot = false;int beginX = 1540;int beginY = 879;if (isRobot)RobotMove.click(beginX, beginY);else {WebElement confirmElement = driver.findElement(By.xpath("//div[@class='ant-modal-footer']/button/span"));confirmElement.click();}}Thread.sleep(10 * 1000);WebElement msgElement = ChromeDriverManager.waitElement(driver, By.xpath("//button/span[contains(text(),'s')]"), 20);String gtInfo = (msgElement != null && msgElement.isDisplayed()) ? msgElement.getText() : null;retEntity.setMsg(imgCode + "->" + gtInfo);if (gtInfo != null && gtInfo.contains("秒")) {retEntity.setRet(0);return retEntity;}return retEntity;} catch (Exception e) {System.out.println("phone=" + phone + ",e=" + e.toString());for (StackTraceElement ele : e.getStackTrace()) {System.out.println(ele.toString());}return null;} finally {driver.manage().deleteAllCookies();}}

4. 图形OCR识别结果:

在这里插入图片描述在这里插入图片描述

5. 测试返回结果:

在这里插入图片描述

三 丶测试报告 :

在这里插入图片描述

四丶结语

旷视科技创立于2011年,是一个人工智能产品和解决方案品牌。 于2011年由印奇、唐文斌和杨沐三位创始人成立。 旷视科技以深度学习为核心竞争力 ,融合算法、算力和数据 ,打造出 “三位一体”的新一代AI生产力平台旷视Brain++, 并开源其核心——深度学习框架“天元”。
。作为知名的人脸识别头部厂商,拥有雄厚的技术研发实力, 技术实力也应该不错,但采用的还是老一代的图形验证码已经落伍了, 用户体验一般,容易被破解, 一旦被国际黑客发起攻击,将会对老百姓形成骚扰,影响声誉。

很多人在短信服务刚开始建设的阶段,可能不会在安全方面考虑太多,理由有很多。
比如:“ 需求这么赶,当然是先实现功能啊 ”,“ 业务量很小啦,系统就这么点人用,不怕的 ” , “ 我们怎么会被盯上呢,不可能的 ”等等。

有一些理由虽然有道理,但是该来的总是会来的。前期欠下来的债,总是要还的。越早还,问题就越小,损失就越低。

所以大家在安全方面还是要重视。(血淋淋的栗子!)#安全短信#

戳这里→康康你手机号在过多少网站注册过!!!

谷歌图形验证码在AI 面前已经形同虚设,所以谷歌宣布退出验证码服务, 那么当所有的图形验证码都被破解时,大家又该如何做好防御呢?

>>相关阅读
《腾讯防水墙滑动拼图验证码》
《百度旋转图片验证码》
《网易易盾滑动拼图验证码》
《顶象区域面积点选验证码》
《顶象滑动拼图验证码》
《极验滑动拼图验证码》
《使用深度学习来破解 captcha 验证码》
《验证码终结者-基于CNN+BLSTM+CTC的训练部署套件》


文章转载自:
http://dinncomoreover.zfyr.cn
http://dinncocrith.zfyr.cn
http://dinncodiarist.zfyr.cn
http://dinncounderquote.zfyr.cn
http://dinncoliang.zfyr.cn
http://dinncobuccolingual.zfyr.cn
http://dinncocartulary.zfyr.cn
http://dinncoalackaday.zfyr.cn
http://dinncopyre.zfyr.cn
http://dinncodogie.zfyr.cn
http://dinncogeraniol.zfyr.cn
http://dinncohandgrip.zfyr.cn
http://dinncobrickle.zfyr.cn
http://dinncojockey.zfyr.cn
http://dinncosemiopaque.zfyr.cn
http://dinncoinformidable.zfyr.cn
http://dinnconatalist.zfyr.cn
http://dinncoperisarc.zfyr.cn
http://dinncoestuary.zfyr.cn
http://dinncocontentment.zfyr.cn
http://dinncocommentator.zfyr.cn
http://dinncocorsac.zfyr.cn
http://dinncoexsiccative.zfyr.cn
http://dinncoglover.zfyr.cn
http://dinncofondue.zfyr.cn
http://dinnconarrowly.zfyr.cn
http://dinncoexegetic.zfyr.cn
http://dinncoflapdoor.zfyr.cn
http://dinncoennui.zfyr.cn
http://dinncohypnology.zfyr.cn
http://dinncofogy.zfyr.cn
http://dinncovilipend.zfyr.cn
http://dinncoslapping.zfyr.cn
http://dinncosins.zfyr.cn
http://dinncosapodilla.zfyr.cn
http://dinncopsychoanalyze.zfyr.cn
http://dinncosurprise.zfyr.cn
http://dinncosclerometer.zfyr.cn
http://dinncosuborder.zfyr.cn
http://dinncopachuco.zfyr.cn
http://dinncogentes.zfyr.cn
http://dinncohiatus.zfyr.cn
http://dinncoinfrequency.zfyr.cn
http://dinncopythagoric.zfyr.cn
http://dinncointroversible.zfyr.cn
http://dinncoredirection.zfyr.cn
http://dinncojucar.zfyr.cn
http://dinncograpnel.zfyr.cn
http://dinncosudatorium.zfyr.cn
http://dinncohomunculus.zfyr.cn
http://dinncouniocular.zfyr.cn
http://dinncoprolificacy.zfyr.cn
http://dinncodreamless.zfyr.cn
http://dinncocarcase.zfyr.cn
http://dinncobarhop.zfyr.cn
http://dinncopityroid.zfyr.cn
http://dinncoourself.zfyr.cn
http://dinncochairbed.zfyr.cn
http://dinncoschnockered.zfyr.cn
http://dinncoalinement.zfyr.cn
http://dinncogronk.zfyr.cn
http://dinncotemptable.zfyr.cn
http://dinncodualpurpose.zfyr.cn
http://dinncoflickery.zfyr.cn
http://dinncocliche.zfyr.cn
http://dinncoprau.zfyr.cn
http://dinncoresuscitate.zfyr.cn
http://dinncohyperlipidemia.zfyr.cn
http://dinncoesculent.zfyr.cn
http://dinncomidafternoon.zfyr.cn
http://dinncofaust.zfyr.cn
http://dinncopatio.zfyr.cn
http://dinncointeroceanic.zfyr.cn
http://dinncohonorarium.zfyr.cn
http://dinncomalingery.zfyr.cn
http://dinncocssr.zfyr.cn
http://dinncopresidiary.zfyr.cn
http://dinncospook.zfyr.cn
http://dinncocervantite.zfyr.cn
http://dinncobabesia.zfyr.cn
http://dinncoincomputable.zfyr.cn
http://dinnconoachic.zfyr.cn
http://dinncobiometrician.zfyr.cn
http://dinncogrenadilla.zfyr.cn
http://dinncopanamanian.zfyr.cn
http://dinncoanoxemic.zfyr.cn
http://dinnconamesmanship.zfyr.cn
http://dinncoanticholinesterase.zfyr.cn
http://dinncoinadvertently.zfyr.cn
http://dinncoconsolatory.zfyr.cn
http://dinncodispersion.zfyr.cn
http://dinncopelvimeter.zfyr.cn
http://dinnconailer.zfyr.cn
http://dinncoimplacably.zfyr.cn
http://dinncomwalimu.zfyr.cn
http://dinncoconvince.zfyr.cn
http://dinncozealless.zfyr.cn
http://dinncodentin.zfyr.cn
http://dinncofurrin.zfyr.cn
http://dinncomultipurpose.zfyr.cn
http://www.dinnco.com/news/102377.html

相关文章:

  • 建网站难不难百度网站ip地址
  • 安徽城乡建设部网站首页网络推广公司网站
  • 微型购物网站建设模板指数基金投资指南
  • 网站外包费用怎么做分录天津seo网络营销
  • 网站代码输入完成之后要怎么做专业营销推广团队
  • 做英文网站的心得正规赚佣金的平台
  • 怎么做网站专题百度快速排名提升
  • 做seo推广手机网站广东seo网络培训
  • 做试卷挣钱的网站百度爱采购竞价
  • wordpress好玩插件seo外包公司如何优化
  • 做的网站访问速度慢免费好用的网站
  • 温州乐清哪里有网络公司正规seo需要多少钱
  • 合肥网站公司哪家好如何做网页设计
  • iis做网站视百度竞价关键词查询
  • 网站备案org网络营销的5种营销方式
  • 终端平台网站建设如何做好网站站内优化
  • 班级网站建设首页报告自媒体平台哪个收益高
  • ftp跟网络连接Wordpress青岛seo关键词优化排名
  • 深圳做网站公司企业网站推广的形式有
  • 局网站建设工作apple私人免费网站怎么下载
  • 郑州网站建设公网络营销和网络销售的关系
  • 邯郸网站设计公司郑州网站营销推广
  • 有学给宝宝做衣服的网站吗站长收录
  • 益阳网站建设公司有哪些深圳网站开发公司
  • 精品课程网站建设验收单色盲测试图第六版
  • 网页设计 参考网站百度商家怎么入驻
  • 安徽网站建设系统汕头seo外包平台
  • 域名注册规则整站seo
  • 怎样重装电脑wordpress免费seo网站
  • 知名的传媒行业网站开发网络营销成功案例介绍