Reconnaissance
Reconnaissance
TCP/IP四层 TCP/IP五层 OSI
应用层 应用层 应用层
表示层
会话层
传输层 传输层 传输层
网络层 网络层 网络层
网络接口层 数据链路层 数据链路层
物理层 物理层
Discovering live systems on a network
二层协议-ARP
ARP协议
主动模式
被动模式
netdiscover
arp-scan
arping
三层协议-ICMP
ICMP协议
ping
四层协议-TCP
NMAP
Reference
Kali command
Kali command
端口进程
netstat -tunlp
pidof apache2
pstree
grep apache2
lsof -i :80
ss -an
grep “:80”
telnet 127.0.0.1 80
nc 127.0.0.1 80
Reference
Penetration Test
Penetration Test
Kali Linux
Kali Homepage
Kali Documentation
Kali Tools
Forum/Community Support
Community Chat
信息安全的基本目标
confidentiality
integrality
availability
controllability
Non-repudiation
渗透测试的流程
Step01--确定目标 (Target) (建议要取得甲方的书面授权和许可)Step02--对目标进行信息收集 信息收集是渗透测试的第一生产力!
Step03--漏洞扫描、漏洞查找 (安全弱点)
Step04--漏洞利用
Step05--拿到系统的权...
iOS Universal Link
iOS Universal Link
放在https://www.saanw.com/.well-known/apple-app-site-association
scheme
配置可以跳转的 url scheme(下例为tobias配置)
CFBundleURLTypes
CFBundleTypeRole
Editor
CFBundleURLName
alipay
CFBundleURLSchemes
chuoooo
Reference
Apple Universal Link setup in iOS
Tabbar andd PageView
Tabbar andd PageView
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyTabbedPage(),
);
}
}
class MyTabbedPage extends StatefulWidget {
@override
_MyTabbedPageState createState() =&...
463 post articles, 58 pages.