| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Software Engineering
- libFuzzer
- binary code analysis
- unit-testing
- build
- vulnerabilties
- fuzzing
- 프로그램 분석
- libxml2
- 바이너리 분석
- 생명의 삶
- sotware-testing
- Cyber Security
- Environment
- binary code analaysis
- software-testing
- linking
- protobuf
- 묵상
- FSE
- ICSE
- 대학원생
- reading critique
- fault-localization
- citrus
- 느헤미야
- QT
- 소프트웨어 취약저 분석
- graphfuzz
- software-engineering
- 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..