Rick7dology


  • Home

  • Archives

  • Tags

Python Selenium库学习笔记

Posted on 2018-01-23
Symbols count in article: 3k | Reading time ≈ 0:03
1 声明浏览器对象from selenium import webdriver browser = webdriver.Chrome() #得到各类浏览器对象,当然需要先下载各类浏览器驱动browser = webdriver.Firefox()browser = webdriver.Edge()b ...
Read more »

Python 正则库学习笔记

Posted on 2018-01-23
Symbols count in article: 5k | Reading time ≈ 0:05
1 要记得的一些常用匹配模式 \w 匹配字母,数字,和下划线 \W 匹配非字母数字,和下划线 \s 匹配任意空白字符,例如[\t\n\r\f],其中”\t”是制表符 \S 匹配任意非空白字符 \d 匹配任意数字,等价于[0-9] ^ 匹配字符串开头 $ 匹配字符串结尾 . 匹配任意字符,除了换 ...
Read more »

Python requests学习笔记

Posted on 2018-01-23
Symbols count in article: 2.7k | Reading time ≈ 0:03
Requests 库的基本用法1 基本发送GET请求import requests# 使用 get 方式请求response = requests.get('https://tieba.baidu.com/')print(response.text) 2 发送GET带参数,对变量params传入字典 ...
Read more »

Python BS4学习笔记

Posted on 2018-01-23
Symbols count in article: 5.2k | Reading time ≈ 0:05
BS4库的基本用法1 简介,四大对象BeautifulSoup 就是 Python 的一个 HTML 或 XML 的解析库,我们可以用它来方便地从网页中提取数据,BeautifulSoup 在解析的时候实际上是依赖于解析器的,它除了支持 Python 标准库中的 HTML 解析器,还支持一些第三方的 ...
Read more »

Python编码问题学习笔记

Posted on 2018-01-23
Symbols count in article: 1.8k | Reading time ≈ 0:02
0x01 现在计算机系统通用的字符编码工作方式:在计算机内存中,统一使用Unicode编码,当需要保存到硬盘或者需要传输的时候,就转换为UTF-8编码。python语言有两种不同的字符串,一个用于存储文本,一个用于存储原始字节。文本字符串(str)内部使用Unicode存储,字节字符串(byte)存 ...
Read more »

Clickjacking test method

Posted on 2017-09-01
Symbols count in article: 217 | Reading time ≈ 0:01
how to test the clickjacking (POC gen)burp有一个功能能够生成POC 生成js文件 直接在web console复制执行 目标页面嵌入了其中 Ref linkhttps://support.portswigger.net/customer/en/porta ...
Read more »

Pyenv & virtualenv

Posted on 2017-06-23
Symbols count in article: 2.1k | Reading time ≈ 0:02
Pyenv pyenv 是针对 python 版本的管理,通过修改环境变量的方式实现; pyenv 原理 pyenv 的美好之处在于,它并没有使用将不同的 $PATH 植入不同的 shell 这种高耦合的工作方式,而是简单地在 $PATH 的最前面插入了一个垫片路径(shims):~/.pye ...
Read more »

iOS security testing

Posted on 2017-06-21
Symbols count in article: 10k | Reading time ≈ 0:10
Basics of iOS and applicationios开发证书,描述文件,bundle ID的关系refer linkrefer link Some key features of the iOS security model are as follows: Security archit ...
Read more »

Android security testing

Posted on 2017-06-19
Symbols count in article: 11k | Reading time ≈ 0:11
基础知识Android 基本机构 安卓分4层吧,底层为linux,上层是安卓本地库,主要为C或者C++,有sqllite,webkit (The Webkit rendering engine was used prior to Android version 4.4 to load these w ...
Read more »
1…34
Rick7

Rick7

39 posts
10 tags
RSS
© 2018 Rick7 | 106k | 1:46
Powered by Hexo
|
Theme — NexT.Mist v6.0.2