일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- FSE
- fault-localization
- 바이너리 분석
- 프로그램 분석
- 묵상
- libFuzzer
- fuzzing
- protobuf
- Cyber Security
- 대학원생
- vulnerabilties
- libxml2
- software-testing
- linking
- reading critique
- 느헤미야
- Environment
- sotware-testing
- unit-testing
- ICSE
- Software Engineering
- QT
- binary code analaysis
- 생명의 삶
- citrus
- software-engineering
- graphfuzz
- build
- binary code analysis
- 소프트웨어 취약저 분석
- Today
- Total
목록protobuf (2)
heechan.yang

Protocol Buffer is mechanism to serialalize structured data to a raw byte stream and also parse a raw byte stream to a structure data.A structure is defined in a file with .proto extension. Compiling this file enables the user to construct a class that is capable of parsing a raw byte stream to its form of structure and back to raw byte stream. Example// .proto filemessage Person { optional str..

ContentsOverviewEndpoint & GraphsHow it WorksSimple Demo: CarPersonal ThoughtsReferences1. OverviewGraphFuzz is a software testing tool. It is focused to API testing by invoking API functions at valid order that are mutated from a structure of a graph. With this mechanism, GraphFuzz is able to find bugs that arise from invoking API functions in a certain order. The main objective of GraphFuzz is..