
scrapy website Article and link ...
scrapy 웹사이트 기사 및 링크 ...

0x01 새 프로젝트 생성 0x02 목표 설정 0x03 크롤러 제작 0x04 콘텐츠 저장
e.g.
pip3 install lxml,scrapy
文章标题 Article_Title
//*[@id="wrapper"]/main/div/article/header/h5/a/text()
//*[@id="wrapper"]/main/div/article/header/h5/a
文件链接 Article_Link
//*[@id="wrapper"]/main/div/article/header/h5/a/@href
文章时间 Article_Time
//*[@id="wrapper"]/main/div/article/header/section/span/time[1]
文章标签 Article_Tag
//*[@id="wrapper"]/main/div/article/header/section/a
文章简介 Article_Introduction
//*[@id="wrapper"]/main/div/article/section/text()
下一页
//*[@id="wrapper"]/main/div/nav/a[@class="older-posts"]/@href[2]
scrapy crawl SeebugSpider -o seebug.csv
{
'Article_Author': '译者:知道创宇404实验室翻译组',
'Article_Link': 'https://paper.seebug.org/1230/',
'Article_Origin_Link': '原文链接:Cycldek: Bridging the (air) gap ',
'Article_Summary': '在调查关于Cycldek组织2018年后有关攻击活动时,发现对该组织的...',
'Article_Tag': '威胁情报',
'Article_Time': '2020年06月04日',
'Article_Title': '卡巴斯基报告:针对 Cycldek 黑客组织知识鸿沟的相关信息'
}

https://www.cnblogs.com/superhin/p/12600358.html
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.qq.com/')
# 1. 执行 Chome 开发工具命令,得到mhtml内容
res = driver.execute_cdp_cmd('Page.captureSnapshot', {})
# 2. 写入文件
with open('qq.mhtml', 'w') as f:
f.write(res['data'])
driver.quit()
| 2020年12月10日 | CS4.1에 정말 백도어가 있을까? | http://mp.weixin.qq.com/s?__biz=MzAwMzYxNzc1OA==&mid=2247488764&idx=1&sn=f22aa97f29bc1859abc99927cae8b8d4 |
|---|
| 2020/11/25 | rcoil | 【지식 복습】Cobalt Strike 4.0 인증 및 패치 과정 | https://xz.aliyun.com/t/8557 |
|---|
| 2020/7/17 | uknow | ReflectiveDLL로 Cobalt Strike 무장시키기 | https://xz.aliyun.com/t/7997 |
| 2020/7/17 | treebacker | Metasploit & CobaltStrike의 shellcode 분석 | https://xz.aliyun.com/t/7996 |
| 2020/4/3 | 利华 | cobaltstrike dns beacon, 얼마나 알고 있나? | https://xz.aliyun.com/t/7488 |
| 2020/3/10 | castiel | Cobalt Strike 삽질·함정 해결 기록 | https://xz.aliyun.com/t/7375 |
| 2019/11/12 | Fazx | Cobaltstrike Server 지속성 & Cobaltstrike와 Metasploit 간 상호 shell 파생 | https://xz.aliyun.com/t/6722 |
| 2019/10/21 | rcoil | Cobalt Strike의 ExternalC2 | https://xz.aliyun.com/t/6565 |
| 2019/9/7 | CoolCat | Cobalt Strike 프로세스 인젝션 자세히 알아보기 | https://xz.aliyun.com/t/6205 |
| 2019/9/5 | CoolCat | CobaltStrike 플러그인 개발 공식 가이드 Part4 | https://xz.aliyun.com/t/6189 |
| 2019/9/4 | CoolCat | CobaltStrike 플러그인 개발 공식 가이드 Part3 | https://xz.aliyun.com/t/6188 |
| 2019/8/10 | CoolCat | CobaltStrike 플러그인 개발 공식 가이드 Part2 | https://xz.aliyun.com/t/5892 |
| 2019/8/8 | CoolCat | CobaltStrike 플러그인 개발 공식 가이드 Part1 | https://xz.aliyun.com/t/5887 |
| 2019/8/7 | CoolCat | CobaltStrike 권한 유지 및 자동화 첫 탐구 | https://xz.aliyun.com/t/5881 |
| 2019/2/24 | arr0w1 | 침투 무기 Cobalt Strike - 제2편 APT급 완전한 탐지 우회 및 기업 심층 방어 체계와의 대결 | https://xz.aliyun.com/t/4191 |
| 2018/9/24 | SoftNight | cobalt strike malleable C2 구성 파일 심층 연구 | https://xz.aliyun.com/t/2796 |
| 2018/4/2 | mss**** | Cobalt Strike의 ExternalC2 프레임워크 심층 탐구 | https://xz.aliyun.com/t/2239 |
| 2018/3/18 | mss**** | Cobalt Strike — 난독화 처리를 통한 Windows Defender 우회 | https://xz.aliyun.com/t/2173 |
| 2018/3/16 | lz1y | 【소프트웨어 보안】Cobalt Strike 3.8 패치 — 백도어 제거 및 기능 보수 | https://xz.aliyun.com/t/2170 |
| 2017/4/14 | backlion | Cobalt Strike 구축·사용 및 백신 우회(bypass) | https://xz.aliyun.com/t/199 |
| 2020年11月26日 | 역자: Knownsec 404 연구소 번역팀 | Egregor 랜섬웨어, Cobalt Strike 및 Rclone을 사용해 지속적 공격 수행 | https://paper.seebug.org/1409/ |
|---|
| 2020年9月28日 | 저자: Keyi | Cobalt Strike 트래픽 감사 우회 | https://paper.seebug.org/1349/ |
| 2020年6月22日 | 역자: Knownsec 404 연구소 번역팀 | 다단계 APT 공격, C2 기능으로 Cobalt Strike 위협 낮추기 | https://paper.seebug.org/1250/ |
| 2020年4月30日 | 저자: Venustech ADLab | 침투 무기 Cobalt Strike의 실제 악용 현황 특별 분석 | https://paper.seebug.org/1190/ |
| 2020年3月12日 | 저자: Snowming | Cobalt Strike 4.0 매뉴얼 — 침투 테스터를 위한 고급 위협 전술 | https://paper.seebug.org/1143/ |
| 2020年12月9日 | CobaltStrike 2차 개발 환경 살펴보기 | http://mp.weixin.qq.com/s?__biz=MzAwMzYxNzc1OA==&mid=2247488706&idx=1&sn=83474fa317248dee4aef37444c50d154 |
| 2020年8月3日 | DNSBeacon에서 도메인 컨트롤러까지 | http://mp.weixin.qq.com/s?__biz=MzAwMzYxNzc1OA==&mid=2247485914&idx=1&sn=95a424874d8bbc656bb5a067198e4227 |