Skip to content

Commit 308c89e

Browse files
committed
v0.5
1 parent d2bc3d1 commit 308c89e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

console/console.go renamed to Console/console.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package console
1+
package Console
22

33
import (
44
"FastjsonScan/Detect"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A tool to fast detect fastjson‘s deserialize vuln
88
FastjsonExpFramework一共分为探测、利用、混淆、bypass JDK等多个模块,而FastjsonScan 是其中一部分,通过报错、请求、依赖库等探测实现多方面定位fastjson版本
99

1010
### WHY?
11-
现有的fastjson扫描器无法满足迭代速度如此快的版本,大部分扫描器早已无人维护,已不适配高版本。我将持续优化此系列项目。
11+
现有的fastjson扫描器无法满足迭代速度如此快的fastjson版本,大部分扫描器早已无人维护,已不适配高版本。我将持续优化此系列项目。
1212

1313
### HOW?
1414
目前fastjsonScan支持
@@ -80,5 +80,5 @@ https://github.com/hosch3n/FastjsonVulns
8080

8181
## 0x03鸣谢
8282
非常感谢 [blue](https://github.com/iSafeBlue) 浅蓝师傅在kcon上的精彩分享
83-
非常感谢 [hosch3n](https://github.com/hosch3n) 陈师傅的解惑
83+
非常感谢 [hosch3n](https://github.com/hosch3n) 陈师傅的答疑解惑
8484

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ import (
1010
// ./FastjsonScan -u http://test.a1phaboy.tech/api/post -o result.txt
1111
// ./FastjsonScan -f targets.txt
1212
func main() {
13-
console.Banner()
13+
Console.Banner()
1414
var options Utils.Option
1515
flag.StringVar(&options.Url,"u","","url")
1616
flag.StringVar(&options.Targets,"f","","targets file . for example: -f targets.txt")
1717
flag.StringVar(&options.Result,"o","","results output file. for example: -o result.txt")
1818
flag.Parse()
1919
if options.Url == "" && options.Targets == ""{
20-
console.Opts()
20+
Console.Opts()
2121
return
2222
}
23-
console.Start(options)
23+
Console.Start(options)
2424
}

0 commit comments

Comments
 (0)