Skip to content

Commit e8c58d7

Browse files
committed
new
1 parent e04ad0c commit e8c58d7

File tree

5 files changed

+21
-1
lines changed

5 files changed

+21
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
*~
12
tool.sh

All.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ https://github.com/p4-team/ctf
102102

103103
ctftools 在线CTF信息网站,包括资源下载、在线工具、信息blog等
104104
https://www.ctftools.com
105-
## 安全扫描器:
105+
106+
🔐 All Security Engineering Resources
107+
https://github.com/brianlam38/Sec-Dump/## 安全扫描器:
106108

107109
### 端口扫描器
108110

@@ -373,6 +375,9 @@ https://github.com/ashishb/osx-and-ios-security-awesome
373375
一款开源WAF
374376
https://github.com/SpiderLabs/ModSecurity
375377

378+
Useful for bug bounties, CTF-style challenges, penetration testing.
379+
https://github.com/brianlam38/Sec-Cheatsheets
380+
376381
开源WAF,基于web日志进行非法访问渗透探测,并进行统计分析,设置阈值封禁
377382
https://github.com/bollwarm/App-Waf
378383

Defence.md

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ https://github.com/ashishb/osx-and-ios-security-awesome
5454
一款开源WAF
5555
https://github.com/SpiderLabs/ModSecurity
5656

57+
Useful for bug bounties, CTF-style challenges, penetration testing.
58+
https://github.com/brianlam38/Sec-Cheatsheets
59+
5760
开源WAF,基于web日志进行非法访问渗透探测,并进行统计分析,设置阈值封禁
5861
https://github.com/bollwarm/App-Waf
5962

Practice_CTF.md

+3
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ https://github.com/p4-team/ctf
102102

103103
ctftools 在线CTF信息网站,包括资源下载、在线工具、信息blog等
104104
https://www.ctftools.com
105+
106+
🔐 All Security Engineering Resources
107+
https://github.com/brianlam38/Sec-Dump/

check.pl

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
my $key=shift;
2+
3+
open my $F,'<','All.md';
4+
5+
while(<$F>) {
6+
print "$_\n" if /$key/;
7+
8+
}

0 commit comments

Comments
 (0)