首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏Akilarの糖果屋

    Botui Talk Robot

    botui.js 是一个简单的聊天机器人框架,使用它可以完成简易的脚本对话式交流。缺点是只能在自己设定的逻辑内进行有限问答,而不是像真正的 AI 那样智能会话。

    62910发布于 2021-06-11
  • 来自专栏python3

    Python Robot Framewo

    2、另外在python安装目录下的Lib\site-packages\robot会找到其核心代码文件 ? 3、如何使用? 可阅读在线文档,地址:http://robot-framework.readthedocs.io/en/3.0.2/autodoc/robot.api.html 编辑器? 再找到robot framework assiatant 安装 ? ? 在编辑时选择 Robot Framework syntax highlighting 即可,如图: ?

    60340发布于 2020-01-09
  • 来自专栏渗透靶机

    vulnyx靶机:Robot

    vulnyx是一个提供各种漏洞环境的靶场平台,大部分环境是做好的虚拟机镜像文件,镜像预先设计了多种漏洞,需要使用VMware或者VirtualBox运行。每个镜像会有破解的目标,挑战的目标是获取操作系统的root权限和查看flag。

    20810编辑于 2025-02-02
  • 来自专栏饶文津的专栏

    【HDU 5007】Post Robot

    DT is a big fan of digital products. He writes posts about technological products almost everyday in his blog.  But there is such few comments of his posts that he feels depressed all the day. As his best friend and an excellent programmer, DT asked you to help make his blog look more popular. He is so warm that you have no idea how to refuse. But you are unwilling to read all of his boring posts word by word. So you decided to write a script to comment below his posts automatically.  After observation, you found words “Apple” appear everywhere in his posts. After your counting, you concluded that “Apple”, “iPhone”, “iPod”, “iPad” are the most high-frequency words in his blog. Once one of these words were read by your smart script, it will make a comment “MAI MAI MAI!”, and go on reading the post.  In order to make it more funny, you, as a fan of Sony, also want to make some comments about Sony. So you want to add a new rule to the script: make a comment “SONY DAFA IS GOOD!” when “Sony” appears.

    58410发布于 2020-05-31
  • 来自专栏搬砖记录

    23 Robot Return to Origin

    题目 There is a robot starting at position (0, 0), the origin, on a 2D plane. If the robot returns to the origin after it finishes all of its moves, return true. Note: The way that the robot is “facing” is irrelevant. Also, assume that the magnitude of the robot’s movement is the same for each move. Example 2: Input: “LL” Output: false Explanation: The robot moves left twice.

    39520发布于 2021-08-18
  • 来自专栏ml

    HDUOJ-----Robot Motion

    A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The path the robot follows is shown. The robot goes through 10 instructions in the grid before leaving the grid. robot loops around.

    84980发布于 2018-03-21
  • 来自专栏penetration

    Tryhackme Mr Robot CTF

    图片 使用之前通过robot文件信息泄露得到的字典文件(fsocity.dic)来爆破WP登录页面-以得到有效用户名;打开Burpsuitep,在WP登录页面随便输入一个用户名和密码,然后用bp抓取数据包并针对用户名进行爆破 图片 二、权限提升 使用python实现交互式命令行 python -c "import pty; pty.spawn('/bin/bash')" 图片 发现无法读取第二个key,它属于robot 用户由图结果可知:robot的登录凭据已被加密处理;我们使用 https://crackstation.net/ 进行在线解密即可: 图片 图片 解密结果-即robot用户的登录凭据为: abcdefghijklmnopqrstuvwxyz 切换robot用户并即可查看第二个key 接下来就是提权来获取第三个值,使用linpeas梭哈,得到存在nmap的suid提权我们可以访问 https

    48220编辑于 2023-06-18
  • 来自专栏啄木鸟软件测试

    Robot FrameWork测试案例

    来源:http://www.uml.org.cn/ 安装 Robot Framework 本文中的Robot framework安装在Win7 (32 bit) 平台上. 以下Demo中Robot Framework安装在Win7之上,而X-Product安装在另一台Linux服务器上。 1. 测试流程 ? Robot Framework: 该框架用于管理测试用例,并且能够很好的生成测试报告。 Keyword: 在Robot Framework中,关键字有点像其他语言中的函数。 在Robot Framework中写测试用例需要符合其表格语法的规范。 SSH Library: 这是一个SSH/Sftp的库,可以用来和远程其他的机器进行通信。 2. Robot Framework实战 首先,SSH Library需要被安装. 如下表所示,按顺序安装以下的包.

    1.3K10发布于 2020-08-11
  • 来自专栏机器人技术与系统Robot

    双臂系统Robot in the world

    Rollin'Justin是灵巧的类人机器人,用于研究家庭和工业环境以及太空中的机器人应用。它可以接球,煮咖啡,并且正在学习修理卫星。

    5.6K123105发布于 2020-09-08
  • 来自专栏自动化、性能测试

    Robot Framework(2)- 快速安装

    如果你还想从头学起Robot Framework,可以看看这个系列的文章哦! www.cnblogs.com/poloyy/category/1770899.html 安装RF cmd直接执行以下命令【前提是已经有Python环境了哦】 pip install robotframework 检查是否装好 robot 检查robot安装位置 where robot 在 python安装路径/Scripts 下 安装 wxPython 敲命令 pip install -U wxPython Python 非常有名的一个 install robotframework-ride -i http://pypi.douban.com/simple --trusted-host pypi.douban.com RIDE 是 Robot

    79410发布于 2020-06-09
  • 来自专栏赵俊的Java专栏

    LeetCode 657 Robot Return to Origin

    return i == 0 && j == 0; } } Runtime: 8 ms, faster than 97.27% of Java online submissions for Robot

    58920发布于 2018-12-14
  • 来自专栏自动化、性能测试

    Robot Framework(1)- 入门介绍

    如果你还想从头学起Robot Framework,可以看看这个系列的文章哦! https://www.cnblogs.com/poloyy/category/1770899.html RF 的介绍 Robot Framework是基于 Python 的可扩展关键字驱动的自动化框架 测试数据(test data)使用非常简单、易于编辑的表格格式,Robot Framework会解析测试数据,执行测试用例,并生成日志和报告 框架本身对测试对象一无所知, 而是通过 测试库 与其交互;测试库可能是直接使用被测应用程序的接口

    1.3K30发布于 2020-06-09
  • 来自专栏开源优测

    Robot Framework | 01 源码初探

    概述 Robot Framework是一个通用的验收测试和验收测试驱动开发自动化测试框架(ATDD)。 它具有易于使用的表格测试数据语法,并使用关键字驱动测试方法。 注:本系列基于python3对robot framework进行源码级的分享及应用,不涉及ride。 安装 我们使用以下命令来安装最新版本的robot framework: pip install robotframework -U 目录 你将会在python3的安装目录下的Lib\site-packages \robot找到robot framework核心的源码,其目录结构如下: ? API 下面我们看一下robot framework对外公开的API。 robot.api 包含了robot framework对外的API。

    2K80发布于 2018-04-09
  • 来自专栏机器学习算法与Python学习

    A new generation of cloud brain robot

    大脑一直是机器人开发的关键,无论是硬件功能还是软件的进步,都能够使的机器人有更强的计算能力。但机器人“脑”内的内容仍然是个难题,美国的几所科技名校正在联合打造“云大脑”,未来机器人将可以通过联网调用所

    67540发布于 2018-04-04
  • 来自专栏奇妙的算法世界

    Yet Another Walking Robot (Map)

    题意描述 There is a robot on a coordinate plane. Initially, the robot is located at the point (0,0). ): means that the robot moves from the point (x,y) to the point (x,y−1). The company that created this robot asked you to optimize the path of the robot somehow. But this company doesn’t want their customers to notice the change in the robot behavior. (i.e. removing some single substring from s) the robot also ends its path at the point (xe,ye).

    46130发布于 2020-10-23
  • 来自专栏测试邦

    CentOS Robot Framework环境搭建

    介绍 Robot Framework是基于python的测试框架,基本上python能做到的事情它都能做到,Robot Framework最好的有点是针对于编码基础弱的同学可以快速的上手,门槛低,易学习 执行下如下命令重新安装下即可 python get-pip.py --force-reinstall 安装Robot Framework 可通过pip安装RF,在终端执行如下命令即可 pip install robotframework-ride pip install robotframework-sshlibrary pip install robotframework-excellibrary 环境变量配置 因为robot

    1.1K30发布于 2019-07-24
  • 来自专栏正汰的学习笔记

    【SYCTF2023】Confronting robot

    string(16) "mysql-bin.000221" [6]=> string(5) "63695" [7]=> string(52) "web-pursue0h-robot

    24710编辑于 2024-01-16
  • 来自专栏啄木鸟软件测试

    Robot Framework 安装配置

    Robot Framework 最新基于 Windows+Python3 的安装方式,是时候卸载掉 Python2 了! Robot Framework 介绍 Robot Framework 是一款基于 Python 的功能自动化测试框架。 以下使用 <python_path> 指代 python 的安装路径 Robot Framework 的安装和配置 一、安装 Python Python 建议安装 3.6 及以上版本,Windows 端注意要将 安装 Robot Framework: $ pip3 install robotframework 安装 wxPython:(不安装则无法运行 RIDE 编辑器) $ pip3 install wxpython 用于进行接口自动化测试$ pip3 install robotframework-autoitlibrary # 用于进行 Windows GUI 自动化测试(专用于 Windows 系统,安装时需要管理员权限) 三、Robot

    3K30发布于 2020-08-11
  • 来自专栏Zaqdt_ACM

    HDU 1035 Robot Motion(dfs)

           题意就是输入n*m的地图,然后输入p,表示这个机器人从(1,p)这个点为起点,然后至于机器人怎么走应该不用解释了吧,判断的终点就是走出地图,这里我们可以稍稍的做个预处理,地图从1开始输入,那么结束条件就是到达0,n+1,m+1就行了。把字母换成数字存起来,然后每走过一个点都用走的步数标记,当如果走到了标记过的点就说明存在一个环,然后此时的步数就是第一次走到这个点所用的步数,因为用step记录了总步数,所以减一下就是环的长度了。

    43430发布于 2019-01-10
  • 来自专栏数据结构与算法

    HDU4576 Robot(概率)

    抄袭自https://www.cnblogs.com/Paul-Guderian/p/7624039.html

    60010发布于 2018-09-17
领券