├── LEVEL_1 ├── README.md ├── exercise_1 │ ├── Buffer11.cpp │ ├── README.md │ └── poc.html ├── exercise_2 │ ├── README.md │ ├── VertexArray11.cpp │ └── poc.mp4 ├── exercise_3 │ ├── IndexDataManager.cpp │ ├── README.md │ └── poc.html ├── exercise_4 │ ├── README.md │ └── mac_scrollbar_animator_impl.mm ├── exercise_5 │ ├── README.md │ ├── css_interpolation_types_map.cc │ └── poc.html ├── exercise_6 │ ├── README.md │ ├── animatable.cc │ ├── effect_input.cc │ ├── keyframe_effect.cc │ └── poc.html └── exercise_7 │ ├── README.md │ ├── marker.cc │ └── marking-state.h ├── LEVEL_2 ├── README.md ├── exercise_1 │ ├── README.md │ └── text_searcher_icu.cc ├── exercise_2 │ ├── README.md │ └── visible_units.cc ├── exercise_3 │ ├── README.md │ ├── deflate_transformer.cc │ └── inflate_transformer.cc ├── exercise_4 │ ├── README.md │ └── tab_strip_model.cc ├── exercise_5 │ ├── README.md │ ├── tab_drag_controller.cc │ ├── tab_drag_controller.h │ ├── tab_strip_model.cc │ └── tab_strip_model.h ├── exercise_6 │ ├── README.md │ └── pdfium_page.cc └── exercise_7 │ ├── README.md │ └── webgl_rendering_context_base.cc ├── LEVEL_3 ├── README.md ├── exercise_1 │ ├── README.md │ ├── navigation_predictor.cc │ └── navigation_predictor.h ├── exercise_2 │ ├── README.md │ ├── representation-change.cc │ └── representation-change.h ├── exercise_3 │ ├── README.md │ ├── node_channel.cc │ ├── node_channel.h │ └── user_message_impl.cc ├── exercise_4 │ ├── README.md │ └── receiver_set.h ├── exercise_5 │ ├── README.md │ └── page_handler.cc ├── exercise_6 │ ├── README.md │ ├── ipc_message_pipe_reader.cc │ ├── pickle.cc │ └── pickle.h └── exercise_7 │ └── README.md ├── README.md └── Template.md /LEVEL_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_1/Buffer11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_1/Buffer11.cpp -------------------------------------------------------------------------------- /LEVEL_1/exercise_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_1/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_1/poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_1/poc.html -------------------------------------------------------------------------------- /LEVEL_1/exercise_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_2/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_2/VertexArray11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_2/VertexArray11.cpp -------------------------------------------------------------------------------- /LEVEL_1/exercise_2/poc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_2/poc.mp4 -------------------------------------------------------------------------------- /LEVEL_1/exercise_3/IndexDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_3/IndexDataManager.cpp -------------------------------------------------------------------------------- /LEVEL_1/exercise_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_3/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_3/poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_3/poc.html -------------------------------------------------------------------------------- /LEVEL_1/exercise_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_4/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_4/mac_scrollbar_animator_impl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_4/mac_scrollbar_animator_impl.mm -------------------------------------------------------------------------------- /LEVEL_1/exercise_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_5/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_5/css_interpolation_types_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_5/css_interpolation_types_map.cc -------------------------------------------------------------------------------- /LEVEL_1/exercise_5/poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_5/poc.html -------------------------------------------------------------------------------- /LEVEL_1/exercise_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_6/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_6/animatable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_6/animatable.cc -------------------------------------------------------------------------------- /LEVEL_1/exercise_6/effect_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_6/effect_input.cc -------------------------------------------------------------------------------- /LEVEL_1/exercise_6/keyframe_effect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_6/keyframe_effect.cc -------------------------------------------------------------------------------- /LEVEL_1/exercise_6/poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_6/poc.html -------------------------------------------------------------------------------- /LEVEL_1/exercise_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_7/README.md -------------------------------------------------------------------------------- /LEVEL_1/exercise_7/marker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_7/marker.cc -------------------------------------------------------------------------------- /LEVEL_1/exercise_7/marking-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_1/exercise_7/marking-state.h -------------------------------------------------------------------------------- /LEVEL_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_1/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_1/text_searcher_icu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_1/text_searcher_icu.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_2/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_2/visible_units.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_2/visible_units.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_3/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_3/deflate_transformer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_3/deflate_transformer.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_3/inflate_transformer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_3/inflate_transformer.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_4/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_4/tab_strip_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_4/tab_strip_model.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_5/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_5/tab_drag_controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_5/tab_drag_controller.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_5/tab_drag_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_5/tab_drag_controller.h -------------------------------------------------------------------------------- /LEVEL_2/exercise_5/tab_strip_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_5/tab_strip_model.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_5/tab_strip_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_5/tab_strip_model.h -------------------------------------------------------------------------------- /LEVEL_2/exercise_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_6/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_6/pdfium_page.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_6/pdfium_page.cc -------------------------------------------------------------------------------- /LEVEL_2/exercise_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_7/README.md -------------------------------------------------------------------------------- /LEVEL_2/exercise_7/webgl_rendering_context_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_2/exercise_7/webgl_rendering_context_base.cc -------------------------------------------------------------------------------- /LEVEL_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_1/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_1/navigation_predictor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_1/navigation_predictor.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_1/navigation_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_1/navigation_predictor.h -------------------------------------------------------------------------------- /LEVEL_3/exercise_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_2/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_2/representation-change.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_2/representation-change.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_2/representation-change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_2/representation-change.h -------------------------------------------------------------------------------- /LEVEL_3/exercise_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_3/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_3/node_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_3/node_channel.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_3/node_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_3/node_channel.h -------------------------------------------------------------------------------- /LEVEL_3/exercise_3/user_message_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_3/user_message_impl.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_4/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_4/receiver_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_4/receiver_set.h -------------------------------------------------------------------------------- /LEVEL_3/exercise_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_5/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_5/page_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_5/page_handler.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_6/README.md -------------------------------------------------------------------------------- /LEVEL_3/exercise_6/ipc_message_pipe_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_6/ipc_message_pipe_reader.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_6/pickle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_6/pickle.cc -------------------------------------------------------------------------------- /LEVEL_3/exercise_6/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_6/pickle.h -------------------------------------------------------------------------------- /LEVEL_3/exercise_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/LEVEL_3/exercise_7/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/README.md -------------------------------------------------------------------------------- /Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarCrossPortal/bug-hunting-101/HEAD/Template.md --------------------------------------------------------------------------------