├── .gitattributes ├── .gitignore ├── 00_index.en.md ├── 00_index.es.md ├── 01_documentation ├── 00_index.en.md ├── 00_index.es.md ├── 01_bluetooth_core_specification.en.md ├── 01_bluetooth_core_specification.es.md ├── 02_physical_architecture.en.md ├── 02_physical_architecture.es.md ├── 03_baseband_link_layer.en.md ├── 03_baseband_link_layer.es.md ├── 04_logical_transport.en.md ├── 04_logical_transport.es.md ├── 05_data_link_layer.en.md ├── 05_data_link_layer.es.md ├── 06_le_modes.en.md └── 06_le_modes.es.md ├── 02_preliminary_considerations ├── 00_index.en.md └── 00_index.es.md ├── 03_controls ├── 00_index.en.md ├── 00_index.es.md ├── 01_information_gathering │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_lifecycle_status.en.md │ ├── 01_lifecycle_status.es.md │ ├── 02_controller_vulnerabilities.en.md │ ├── 02_controller_vulnerabilities.es.md │ ├── 03_stack_vulnerabilities.en.md │ ├── 03_stack_vulnerabilities.es.md │ ├── 04_standard_vulnerabilities.en.md │ └── 04_standard_vulnerabilities.es.md ├── 02_discovery │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_operation_modes.en.md │ ├── 01_operation_modes.es.md │ ├── 02_signal.en.md │ ├── 02_signal.es.md │ ├── 03_generic_name.en.md │ ├── 03_generic_name.es.md │ ├── 04_sensitive_data.en.md │ ├── 04_sensitive_data.es.md │ ├── 05_discoverable_by_default.en.md │ ├── 05_discoverable_by_default.es.md │ ├── 06_random_mac.en.md │ └── 06_random_mac.es.md ├── 03_pairing │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_pairable_default.en.md │ ├── 01_pairable_default.es.md │ ├── 02_io_capabilities.en.md │ ├── 02_io_capabilities.es.md │ ├── 03_oob_channel.en.md │ ├── 03_oob_channel.es.md │ ├── 04_legacy_pairing.en.md │ ├── 04_legacy_pairing.es.md │ ├── 05_pairing_no_interaction.en.md │ ├── 05_pairing_no_interaction.es.md │ ├── 06_known_pins.en.md │ ├── 06_known_pins.es.md │ ├── 07_predictable_pins.en.md │ ├── 07_predictable_pins.es.md │ ├── 08_link_key_removal.en.md │ ├── 08_link_key_removal.es.md │ ├── 09_min_pin_length.en.md │ ├── 09_min_pin_length.es.md │ ├── 10_link_key_storage.en.md │ └── 10_link_key_storage.es.md ├── 04_authentication │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_role_switch.en.md │ ├── 01_role_switch.es.md │ ├── 02_mutual_auth.en.md │ ├── 02_mutual_auth.es.md │ ├── 03_forced_disconnection.en.md │ └── 03_forced_disconnection.es.md ├── 05_encryption │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_role_switch.en.md │ ├── 01_role_switch.es.md │ ├── 02_force_encryption.en.md │ ├── 02_force_encryption.es.md │ ├── 03_min_key_size.en.md │ └── 03_min_key_size.es.md ├── 06_services │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_hidden_sdp_services.en.md │ ├── 01_hidden_sdp_services.es.md │ ├── 02_hidden_gatt_services.en.md │ ├── 02_hidden_gatt_services.es.md │ ├── 03_service_access.en.md │ └── 03_service_access.es.md └── 07_application │ ├── 00_index.en.md │ ├── 00_index.es.md │ ├── 01_controller_updates.en.md │ ├── 01_controller_updates.es.md │ ├── 02_bt_stack_updates.en.md │ ├── 02_bt_stack_updates.es.md │ ├── 03_bt_app_updates.en.md │ ├── 03_bt_app_updates.es.md │ ├── 04_signed_updates.en.md │ ├── 04_signed_updates.es.md │ ├── 05_replay_attacks.en.md │ ├── 05_replay_attacks.es.md │ ├── 06_packet_injection.en.md │ ├── 06_packet_injection.es.md │ ├── 07_secure_implementations.en.md │ └── 07_secure_implementations.es.md ├── 04_resources ├── 00_index.en.md ├── 00_index.es.md ├── 01_physical_identification.en.md ├── 01_physical_identification.es.md ├── 02_report_controller_identification.en.md ├── 02_report_controller_identification.es.md ├── 03_database_search.en.md ├── 03_database_search.es.md ├── 04_sniff.en.md ├── 04_sniff.es.md ├── 05_capture.en.md ├── 05_capture.es.md ├── 06_controller_debug_mode.en.md ├── 06_controller_debug_mode.es.md ├── 07_hci_messages.en.md ├── 07_hci_messages.es.md ├── 08_device_discovery.en.md ├── 08_device_discovery.es.md ├── 09_controller_attributes.en.md ├── 09_controller_attributes.es.md ├── 10_link_key_management.en.md └── 10_link_key_management.es.md ├── 05_annex ├── 00_index.en.md ├── 00_index.es.md ├── 01_eol_controllers.en.md ├── 01_eol_controllers.es.md ├── 02_external_resources.en.md └── 02_external_resources.es.md ├── 06_contributors ├── 00_index.en.md └── 00_index.es.md ├── BSAM-methodology-Checklist.xlsx ├── BSAM_branding ├── CMYK │ ├── LOGO_BSAM_CMYK_full │ │ ├── 01_Positive_ Negative │ │ │ ├── 01_Positive │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Positivo.ai │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Positivo.jpg │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Positivo.pdf │ │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Positivo.png │ │ │ └── 02_Negative │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Negativo.ai │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Negativo.jpg │ │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Negativo.pdf │ │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Negativo.png │ │ ├── 02_on_light_background │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo claro.ai │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo claro.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo claro.pdf │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Fondo claro.png │ │ ├── 03_on_dark_background │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.ai │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.pdf │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.png │ │ ├── 04_on_image │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.ai │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.pdf │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.png │ │ ├── 05_on_corporate_green │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Sobre verde.ai │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Sobre verde.pdf │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Sobre verde.png │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Sobre-verde.jpg │ │ └── 06_greyscale │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Escala de grises.ai │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Escala de grises.pdf │ │ │ ├── TAR23-028_BSAM_LOGO_CMYK_Escala de grises_Mesa de trabajo 1.png │ │ │ └── TAR23-028_BSAM_LOGO_CMYK_Escala-de-grises.jpg │ └── LOGO_BSAM_CMYK_symbol │ │ ├── 01_Positive_Negative │ │ ├── 01_Positive │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.ai │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.pdf │ │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.png │ │ └── 02_Negative │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.ai │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.pdf │ │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.png │ │ ├── 02_on_light_background │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.ai │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.pdf │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.png │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-claro.jpg │ │ ├── 03_on_dark_background │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.ai │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.pdf │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.png │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-oscuro.jpg │ │ ├── 04_on_image │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.ai │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.pdf │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.png │ │ ├── 05_on_corporate_green │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.ai │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.pdf │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.png │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre-verde.jpg │ │ └── 06_greyscale │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.ai │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.pdf │ │ ├── TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.png │ │ └── TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala-de-grises.jpg ├── README.md └── RGB │ ├── LOGO_BSAM_RGB_full │ ├── 01_Positive_Negative │ │ ├── 01_Positive │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Positivo.ai │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Positivo.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Positivo.pdf │ │ │ └── TAR23-028_BSAM_LOGO_RGB_Positivo.png │ │ └── 02_Negative │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Negativo.ai │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Negativo.jpg │ │ │ ├── TAR23-028_BSAM_LOGO_RGB_Negativo.pdf │ │ │ └── TAR23-028_BSAM_LOGO_RGB_Negativo.png │ ├── 02_on_light_background │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo claro.ai │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo claro.jpg │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo claro.pdf │ │ └── TAR23-028_BSAM_LOGO_RGB_Fondo claro.png │ ├── 03_on_dark_background │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.ai │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.jpg │ │ ├── TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.pdf │ │ └── TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.png │ ├── 04_on_image │ │ ├── TAR23-028_BSAM_LOGO_RGB_Sobre imagen.ai │ │ ├── TAR23-028_BSAM_LOGO_RGB_Sobre imagen.pdf │ │ └── TAR23-028_BSAM_LOGO_RGB_Sobre imagen.png │ ├── 05_on_corporate_green │ │ ├── TAR23-028_BSAM_LOGO_RGB_Sobre verde.ai │ │ ├── TAR23-028_BSAM_LOGO_RGB_Sobre verde.jpg │ │ ├── TAR23-028_BSAM_LOGO_RGB_Sobre verde.pdf │ │ └── TAR23-028_BSAM_LOGO_RGB_Sobre verde.png │ └── 06_greyscale │ │ ├── TAR23-028_BSAM_LOGO_RGB_Escala de grises.ai │ │ ├── TAR23-028_BSAM_LOGO_RGB_Escala de grises.jpg │ │ ├── TAR23-028_BSAM_LOGO_RGB_Escala de grises.pdf │ │ └── TAR23-028_BSAM_LOGO_RGB_Escala de grises.png │ └── LOGO_BSAM_RGB_symbol │ ├── 01_Positive_Negative │ ├── 01_Positivo │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Positivo.ai │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Positivo.jpg │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Positivo.pdf │ │ └── TAR23-028_BSAM_LOGO_SIGLAS_Positivo.png │ └── 02_Negativo │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Negativo.ai │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Negativo.jpg │ │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Negativo.pdf │ │ └── TAR23-028_BSAM_LOGO_SIGLAS_Negativo.png │ ├── 02_on_light_background │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.ai │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.jpg │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.pdf │ └── TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.png │ ├── 03_on_dark_background │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.ai │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.jpg │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.pdf │ └── TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.png │ ├── 04_on_image │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.ai │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.pdf │ └── TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.png │ ├── 05_on_corporate_green │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.ai │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.jpg │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.pdf │ └── TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.png │ └── 06_greyscale │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.ai │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.jpg │ ├── TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.pdf │ └── TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.png ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── ctl_link.md ├── head_custom.html ├── header_custom.html ├── lang_list.html ├── nav_footer_custom.html ├── res_link.md ├── res_table.md ├── title.html └── toc_heading_custom.html ├── _layouts └── control.md ├── _sass ├── color_schemes │ └── tarlogic.scss └── custom │ └── setup.scss ├── assets ├── captures │ └── GalaxyBudsPairing.pcapng └── img │ ├── BSAM logo dark.png │ ├── BSAM logo light.png │ ├── BSAM.png │ ├── bluetooth-bsam-Information-gathering.jpg │ ├── bluetooth-bsam-application.jpg │ ├── bluetooth-bsam-authentication.jpg │ ├── bluetooth-bsam-discovery.jpg │ ├── bluetooth-bsam-encryption.jpg │ ├── bluetooth-bsam-pairing.jpg │ ├── bluetooth-bsam-services.jpg │ ├── bsam-au-01_connection_request.png │ ├── bsam-au-01_connection_stablishment.png │ ├── bsam-au-03_connection_complete.png │ ├── bsam-au-03_create_connection.png │ ├── bsam-au-03_disconnect.png │ ├── bsam-au-03_forced_disconnection.png │ ├── bsam-di-01_adv_modes.png │ ├── bsam-di-02_rssi.png │ ├── bsam-di-03_august_device_name.png │ ├── bsam-di-04_microsoft_beacon.png │ ├── bsam-di-04_samsung_beacon.png │ ├── bsam-di-04_samsung_eir.png │ ├── bsam-di-05_extended_inquiry_result.png │ ├── bsam-di-06_august.png │ ├── bsam-en-01_connection_request.png │ ├── bsam-en-01_connection_stablishment.png │ ├── bsam-en-02_pairing_process.png │ ├── bsam-en-02_pairing_request.png │ ├── bsam-en-02_pairing_response.png │ ├── bsam-ig-01_nrnd.png │ ├── bsam-ig-04_core-ver.png │ ├── bsam-ig-04_lmp-version-res.png │ ├── bsam-pa-01_io_cap_request.png │ ├── bsam-pa-01_io_cap_request_reply.png │ ├── bsam-pa-01_link_key_request_negative_reply.png │ ├── bsam-pa-01_pairing_default_config.png │ ├── bsam-pa-01_simple_pairing_complete.png │ ├── bsam-pa-02_pairing_io_caps.png │ ├── bsam-pa-02_pairing_io_caps_le.png │ ├── bsam-pa-03_oob_data_no_present.png │ ├── bsam-pa-04_pairing_legacy_confirm.png │ ├── bsam-pa-04_pairing_legacy_response_no_sec.png │ ├── bsam-pa-04_pairing_legacy_resquest_no_sec.png │ ├── bsam-pa-05_io_cap_response.png │ ├── bsam-pa-05_pairing_no_user_interaction.png │ ├── bsam-pa-06_pairing_confirm.png │ ├── bsam-pa-06_pairing_failed_confirm_value_failed.png │ ├── bsam-pa-06_pairing_random.png │ ├── bsam-pa-06_pairing_request.png │ ├── bsam-pa-06_pairing_response.png │ ├── bsam-pa-08_bluez_linkkey.png │ ├── bsam-res-01_bc417.png │ ├── bsam-res-02_fccid-report.png │ ├── bsam-se-01_sdptool.png │ ├── bsam-se-02_gatt_profiler.png │ ├── doc_baseband_link_layer.drawio │ ├── doc_baseband_link_layer.png │ ├── doc_data_link_layer.drawio │ ├── doc_data_link_layer.png │ ├── doc_l2cap_bframe.drawio │ ├── doc_l2cap_bframe.png │ ├── doc_l2cap_gframe.drawio │ ├── doc_l2cap_gframe.png │ ├── doc_logical_transport.drawio │ ├── doc_logical_transport.png │ └── doc_physical_architecture_host_controller.png └── favicon.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/.gitignore -------------------------------------------------------------------------------- /00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/00_index.en.md -------------------------------------------------------------------------------- /00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/00_index.es.md -------------------------------------------------------------------------------- /01_documentation/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/00_index.en.md -------------------------------------------------------------------------------- /01_documentation/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/00_index.es.md -------------------------------------------------------------------------------- /01_documentation/01_bluetooth_core_specification.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/01_bluetooth_core_specification.en.md -------------------------------------------------------------------------------- /01_documentation/01_bluetooth_core_specification.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/01_bluetooth_core_specification.es.md -------------------------------------------------------------------------------- /01_documentation/02_physical_architecture.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/02_physical_architecture.en.md -------------------------------------------------------------------------------- /01_documentation/02_physical_architecture.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/02_physical_architecture.es.md -------------------------------------------------------------------------------- /01_documentation/03_baseband_link_layer.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/03_baseband_link_layer.en.md -------------------------------------------------------------------------------- /01_documentation/03_baseband_link_layer.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/03_baseband_link_layer.es.md -------------------------------------------------------------------------------- /01_documentation/04_logical_transport.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/04_logical_transport.en.md -------------------------------------------------------------------------------- /01_documentation/04_logical_transport.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/04_logical_transport.es.md -------------------------------------------------------------------------------- /01_documentation/05_data_link_layer.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/05_data_link_layer.en.md -------------------------------------------------------------------------------- /01_documentation/05_data_link_layer.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/05_data_link_layer.es.md -------------------------------------------------------------------------------- /01_documentation/06_le_modes.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/06_le_modes.en.md -------------------------------------------------------------------------------- /01_documentation/06_le_modes.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/01_documentation/06_le_modes.es.md -------------------------------------------------------------------------------- /02_preliminary_considerations/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/02_preliminary_considerations/00_index.en.md -------------------------------------------------------------------------------- /02_preliminary_considerations/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/02_preliminary_considerations/00_index.es.md -------------------------------------------------------------------------------- /03_controls/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/00_index.en.md -------------------------------------------------------------------------------- /03_controls/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/00_index.es.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/00_index.en.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/00_index.es.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/01_lifecycle_status.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/01_lifecycle_status.en.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/01_lifecycle_status.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/01_lifecycle_status.es.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/02_controller_vulnerabilities.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/02_controller_vulnerabilities.en.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/02_controller_vulnerabilities.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/02_controller_vulnerabilities.es.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/03_stack_vulnerabilities.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/03_stack_vulnerabilities.en.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/03_stack_vulnerabilities.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/03_stack_vulnerabilities.es.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/04_standard_vulnerabilities.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/04_standard_vulnerabilities.en.md -------------------------------------------------------------------------------- /03_controls/01_information_gathering/04_standard_vulnerabilities.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/01_information_gathering/04_standard_vulnerabilities.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/00_index.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/00_index.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/01_operation_modes.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/01_operation_modes.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/01_operation_modes.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/01_operation_modes.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/02_signal.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/02_signal.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/02_signal.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/02_signal.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/03_generic_name.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/03_generic_name.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/03_generic_name.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/03_generic_name.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/04_sensitive_data.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/04_sensitive_data.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/04_sensitive_data.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/04_sensitive_data.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/05_discoverable_by_default.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/05_discoverable_by_default.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/05_discoverable_by_default.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/05_discoverable_by_default.es.md -------------------------------------------------------------------------------- /03_controls/02_discovery/06_random_mac.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/06_random_mac.en.md -------------------------------------------------------------------------------- /03_controls/02_discovery/06_random_mac.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/02_discovery/06_random_mac.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/00_index.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/00_index.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/01_pairable_default.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/01_pairable_default.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/01_pairable_default.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/01_pairable_default.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/02_io_capabilities.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/02_io_capabilities.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/02_io_capabilities.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/02_io_capabilities.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/03_oob_channel.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/03_oob_channel.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/03_oob_channel.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/03_oob_channel.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/04_legacy_pairing.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/04_legacy_pairing.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/04_legacy_pairing.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/04_legacy_pairing.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/05_pairing_no_interaction.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/05_pairing_no_interaction.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/05_pairing_no_interaction.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/05_pairing_no_interaction.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/06_known_pins.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/06_known_pins.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/06_known_pins.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/06_known_pins.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/07_predictable_pins.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/07_predictable_pins.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/07_predictable_pins.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/07_predictable_pins.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/08_link_key_removal.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/08_link_key_removal.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/08_link_key_removal.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/08_link_key_removal.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/09_min_pin_length.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/09_min_pin_length.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/09_min_pin_length.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/09_min_pin_length.es.md -------------------------------------------------------------------------------- /03_controls/03_pairing/10_link_key_storage.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/10_link_key_storage.en.md -------------------------------------------------------------------------------- /03_controls/03_pairing/10_link_key_storage.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/03_pairing/10_link_key_storage.es.md -------------------------------------------------------------------------------- /03_controls/04_authentication/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/00_index.en.md -------------------------------------------------------------------------------- /03_controls/04_authentication/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/00_index.es.md -------------------------------------------------------------------------------- /03_controls/04_authentication/01_role_switch.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/01_role_switch.en.md -------------------------------------------------------------------------------- /03_controls/04_authentication/01_role_switch.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/01_role_switch.es.md -------------------------------------------------------------------------------- /03_controls/04_authentication/02_mutual_auth.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/02_mutual_auth.en.md -------------------------------------------------------------------------------- /03_controls/04_authentication/02_mutual_auth.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/02_mutual_auth.es.md -------------------------------------------------------------------------------- /03_controls/04_authentication/03_forced_disconnection.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/03_forced_disconnection.en.md -------------------------------------------------------------------------------- /03_controls/04_authentication/03_forced_disconnection.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/04_authentication/03_forced_disconnection.es.md -------------------------------------------------------------------------------- /03_controls/05_encryption/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/00_index.en.md -------------------------------------------------------------------------------- /03_controls/05_encryption/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/00_index.es.md -------------------------------------------------------------------------------- /03_controls/05_encryption/01_role_switch.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/01_role_switch.en.md -------------------------------------------------------------------------------- /03_controls/05_encryption/01_role_switch.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/01_role_switch.es.md -------------------------------------------------------------------------------- /03_controls/05_encryption/02_force_encryption.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/02_force_encryption.en.md -------------------------------------------------------------------------------- /03_controls/05_encryption/02_force_encryption.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/02_force_encryption.es.md -------------------------------------------------------------------------------- /03_controls/05_encryption/03_min_key_size.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/03_min_key_size.en.md -------------------------------------------------------------------------------- /03_controls/05_encryption/03_min_key_size.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/05_encryption/03_min_key_size.es.md -------------------------------------------------------------------------------- /03_controls/06_services/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/00_index.en.md -------------------------------------------------------------------------------- /03_controls/06_services/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/00_index.es.md -------------------------------------------------------------------------------- /03_controls/06_services/01_hidden_sdp_services.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/01_hidden_sdp_services.en.md -------------------------------------------------------------------------------- /03_controls/06_services/01_hidden_sdp_services.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/01_hidden_sdp_services.es.md -------------------------------------------------------------------------------- /03_controls/06_services/02_hidden_gatt_services.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/02_hidden_gatt_services.en.md -------------------------------------------------------------------------------- /03_controls/06_services/02_hidden_gatt_services.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/02_hidden_gatt_services.es.md -------------------------------------------------------------------------------- /03_controls/06_services/03_service_access.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/03_service_access.en.md -------------------------------------------------------------------------------- /03_controls/06_services/03_service_access.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/06_services/03_service_access.es.md -------------------------------------------------------------------------------- /03_controls/07_application/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/00_index.en.md -------------------------------------------------------------------------------- /03_controls/07_application/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/00_index.es.md -------------------------------------------------------------------------------- /03_controls/07_application/01_controller_updates.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/01_controller_updates.en.md -------------------------------------------------------------------------------- /03_controls/07_application/01_controller_updates.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/01_controller_updates.es.md -------------------------------------------------------------------------------- /03_controls/07_application/02_bt_stack_updates.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/02_bt_stack_updates.en.md -------------------------------------------------------------------------------- /03_controls/07_application/02_bt_stack_updates.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/02_bt_stack_updates.es.md -------------------------------------------------------------------------------- /03_controls/07_application/03_bt_app_updates.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/03_bt_app_updates.en.md -------------------------------------------------------------------------------- /03_controls/07_application/03_bt_app_updates.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/03_bt_app_updates.es.md -------------------------------------------------------------------------------- /03_controls/07_application/04_signed_updates.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/04_signed_updates.en.md -------------------------------------------------------------------------------- /03_controls/07_application/04_signed_updates.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/04_signed_updates.es.md -------------------------------------------------------------------------------- /03_controls/07_application/05_replay_attacks.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/05_replay_attacks.en.md -------------------------------------------------------------------------------- /03_controls/07_application/05_replay_attacks.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/05_replay_attacks.es.md -------------------------------------------------------------------------------- /03_controls/07_application/06_packet_injection.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/06_packet_injection.en.md -------------------------------------------------------------------------------- /03_controls/07_application/06_packet_injection.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/06_packet_injection.es.md -------------------------------------------------------------------------------- /03_controls/07_application/07_secure_implementations.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/07_secure_implementations.en.md -------------------------------------------------------------------------------- /03_controls/07_application/07_secure_implementations.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/03_controls/07_application/07_secure_implementations.es.md -------------------------------------------------------------------------------- /04_resources/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/00_index.en.md -------------------------------------------------------------------------------- /04_resources/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/00_index.es.md -------------------------------------------------------------------------------- /04_resources/01_physical_identification.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/01_physical_identification.en.md -------------------------------------------------------------------------------- /04_resources/01_physical_identification.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/01_physical_identification.es.md -------------------------------------------------------------------------------- /04_resources/02_report_controller_identification.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/02_report_controller_identification.en.md -------------------------------------------------------------------------------- /04_resources/02_report_controller_identification.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/02_report_controller_identification.es.md -------------------------------------------------------------------------------- /04_resources/03_database_search.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/03_database_search.en.md -------------------------------------------------------------------------------- /04_resources/03_database_search.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/03_database_search.es.md -------------------------------------------------------------------------------- /04_resources/04_sniff.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/04_sniff.en.md -------------------------------------------------------------------------------- /04_resources/04_sniff.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/04_sniff.es.md -------------------------------------------------------------------------------- /04_resources/05_capture.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/05_capture.en.md -------------------------------------------------------------------------------- /04_resources/05_capture.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/05_capture.es.md -------------------------------------------------------------------------------- /04_resources/06_controller_debug_mode.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/06_controller_debug_mode.en.md -------------------------------------------------------------------------------- /04_resources/06_controller_debug_mode.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/06_controller_debug_mode.es.md -------------------------------------------------------------------------------- /04_resources/07_hci_messages.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/07_hci_messages.en.md -------------------------------------------------------------------------------- /04_resources/07_hci_messages.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/07_hci_messages.es.md -------------------------------------------------------------------------------- /04_resources/08_device_discovery.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/08_device_discovery.en.md -------------------------------------------------------------------------------- /04_resources/08_device_discovery.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/08_device_discovery.es.md -------------------------------------------------------------------------------- /04_resources/09_controller_attributes.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/09_controller_attributes.en.md -------------------------------------------------------------------------------- /04_resources/09_controller_attributes.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/09_controller_attributes.es.md -------------------------------------------------------------------------------- /04_resources/10_link_key_management.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/10_link_key_management.en.md -------------------------------------------------------------------------------- /04_resources/10_link_key_management.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/04_resources/10_link_key_management.es.md -------------------------------------------------------------------------------- /05_annex/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/00_index.en.md -------------------------------------------------------------------------------- /05_annex/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/00_index.es.md -------------------------------------------------------------------------------- /05_annex/01_eol_controllers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/01_eol_controllers.en.md -------------------------------------------------------------------------------- /05_annex/01_eol_controllers.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/01_eol_controllers.es.md -------------------------------------------------------------------------------- /05_annex/02_external_resources.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/02_external_resources.en.md -------------------------------------------------------------------------------- /05_annex/02_external_resources.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/05_annex/02_external_resources.es.md -------------------------------------------------------------------------------- /06_contributors/00_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/06_contributors/00_index.en.md -------------------------------------------------------------------------------- /06_contributors/00_index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/06_contributors/00_index.es.md -------------------------------------------------------------------------------- /BSAM-methodology-Checklist.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM-methodology-Checklist.xlsx -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/01_Positive/TAR23-028_BSAM_LOGO_CMYK_Positivo.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/01_Positive_ Negative/02_Negative/TAR23-028_BSAM_LOGO_CMYK_Negativo.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/02_on_light_background/TAR23-028_BSAM_LOGO_CMYK_Fondo claro.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/03_on_dark_background/TAR23-028_BSAM_LOGO_CMYK_Fondo oscuro.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/04_on_image/TAR23-028_BSAM_LOGO_CMYK_Sobre imagen.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre verde.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre-verde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_CMYK_Sobre-verde.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises_Mesa de trabajo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala de grises_Mesa de trabajo 1.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala-de-grises.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_full/06_greyscale/TAR23-028_BSAM_LOGO_CMYK_Escala-de-grises.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_Siglas_CMYK_Positivo.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_Siglas_CMYK_Negativo.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo claro.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-claro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-claro.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo oscuro.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-oscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_Siglas_CMYK_Fondo-oscuro.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/04_on_image/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre imagen.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre verde.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre-verde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_Siglas_CMYK_Sobre-verde.jpg -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.ai -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.pdf -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala de grises.png -------------------------------------------------------------------------------- /BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala-de-grises.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/CMYK/LOGO_BSAM_CMYK_symbol/06_greyscale/TAR23-028_BSAM_LOGO_Siglas_CMYK_Escala-de-grises.jpg -------------------------------------------------------------------------------- /BSAM_branding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/README.md -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/01_Positive/TAR23-028_BSAM_LOGO_RGB_Positivo.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/01_Positive_Negative/02_Negative/TAR23-028_BSAM_LOGO_RGB_Negativo.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/02_on_light_background/TAR23-028_BSAM_LOGO_RGB_Fondo claro.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/03_on_dark_background/TAR23-028_BSAM_LOGO_RGB_Fondo oscuro.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/04_on_image/TAR23-028_BSAM_LOGO_RGB_Sobre imagen.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/05_on_corporate_green/TAR23-028_BSAM_LOGO_RGB_Sobre verde.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_full/06_greyscale/TAR23-028_BSAM_LOGO_RGB_Escala de grises.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/01_Positivo/TAR23-028_BSAM_LOGO_SIGLAS_Positivo.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/01_Positive_Negative/02_Negativo/TAR23-028_BSAM_LOGO_SIGLAS_Negativo.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/02_on_light_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo claro.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/03_on_dark_background/TAR23-028_BSAM_LOGO_SIGLAS_Fondo oscuro.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/04_on_image/TAR23-028_BSAM_LOGO_SIGLAS_Sobre imagen.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/05_on_corporate_green/TAR23-028_BSAM_LOGO_SIGLAS_Sobre verde.png -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.ai -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.jpg -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.pdf -------------------------------------------------------------------------------- /BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/BSAM_branding/RGB/LOGO_BSAM_RGB_symbol/06_greyscale/TAR23-028_BSAM_LOGO_SIGLAS_Escala de grises.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/ctl_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/ctl_link.md -------------------------------------------------------------------------------- /_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/head_custom.html -------------------------------------------------------------------------------- /_includes/header_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/lang_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/lang_list.html -------------------------------------------------------------------------------- /_includes/nav_footer_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/nav_footer_custom.html -------------------------------------------------------------------------------- /_includes/res_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/res_link.md -------------------------------------------------------------------------------- /_includes/res_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/res_table.md -------------------------------------------------------------------------------- /_includes/title.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/toc_heading_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_includes/toc_heading_custom.html -------------------------------------------------------------------------------- /_layouts/control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_layouts/control.md -------------------------------------------------------------------------------- /_sass/color_schemes/tarlogic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_sass/color_schemes/tarlogic.scss -------------------------------------------------------------------------------- /_sass/custom/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/_sass/custom/setup.scss -------------------------------------------------------------------------------- /assets/captures/GalaxyBudsPairing.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/captures/GalaxyBudsPairing.pcapng -------------------------------------------------------------------------------- /assets/img/BSAM logo dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/BSAM logo dark.png -------------------------------------------------------------------------------- /assets/img/BSAM logo light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/BSAM logo light.png -------------------------------------------------------------------------------- /assets/img/BSAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/BSAM.png -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-Information-gathering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-Information-gathering.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-application.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-authentication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-authentication.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-discovery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-discovery.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-encryption.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-encryption.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-pairing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-pairing.jpg -------------------------------------------------------------------------------- /assets/img/bluetooth-bsam-services.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bluetooth-bsam-services.jpg -------------------------------------------------------------------------------- /assets/img/bsam-au-01_connection_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-01_connection_request.png -------------------------------------------------------------------------------- /assets/img/bsam-au-01_connection_stablishment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-01_connection_stablishment.png -------------------------------------------------------------------------------- /assets/img/bsam-au-03_connection_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-03_connection_complete.png -------------------------------------------------------------------------------- /assets/img/bsam-au-03_create_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-03_create_connection.png -------------------------------------------------------------------------------- /assets/img/bsam-au-03_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-03_disconnect.png -------------------------------------------------------------------------------- /assets/img/bsam-au-03_forced_disconnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-au-03_forced_disconnection.png -------------------------------------------------------------------------------- /assets/img/bsam-di-01_adv_modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-01_adv_modes.png -------------------------------------------------------------------------------- /assets/img/bsam-di-02_rssi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-02_rssi.png -------------------------------------------------------------------------------- /assets/img/bsam-di-03_august_device_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-03_august_device_name.png -------------------------------------------------------------------------------- /assets/img/bsam-di-04_microsoft_beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-04_microsoft_beacon.png -------------------------------------------------------------------------------- /assets/img/bsam-di-04_samsung_beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-04_samsung_beacon.png -------------------------------------------------------------------------------- /assets/img/bsam-di-04_samsung_eir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-04_samsung_eir.png -------------------------------------------------------------------------------- /assets/img/bsam-di-05_extended_inquiry_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-05_extended_inquiry_result.png -------------------------------------------------------------------------------- /assets/img/bsam-di-06_august.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-di-06_august.png -------------------------------------------------------------------------------- /assets/img/bsam-en-01_connection_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-en-01_connection_request.png -------------------------------------------------------------------------------- /assets/img/bsam-en-01_connection_stablishment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-en-01_connection_stablishment.png -------------------------------------------------------------------------------- /assets/img/bsam-en-02_pairing_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-en-02_pairing_process.png -------------------------------------------------------------------------------- /assets/img/bsam-en-02_pairing_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-en-02_pairing_request.png -------------------------------------------------------------------------------- /assets/img/bsam-en-02_pairing_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-en-02_pairing_response.png -------------------------------------------------------------------------------- /assets/img/bsam-ig-01_nrnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-ig-01_nrnd.png -------------------------------------------------------------------------------- /assets/img/bsam-ig-04_core-ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-ig-04_core-ver.png -------------------------------------------------------------------------------- /assets/img/bsam-ig-04_lmp-version-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-ig-04_lmp-version-res.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-01_io_cap_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-01_io_cap_request.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-01_io_cap_request_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-01_io_cap_request_reply.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-01_link_key_request_negative_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-01_link_key_request_negative_reply.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-01_pairing_default_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-01_pairing_default_config.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-01_simple_pairing_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-01_simple_pairing_complete.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-02_pairing_io_caps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-02_pairing_io_caps.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-02_pairing_io_caps_le.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-02_pairing_io_caps_le.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-03_oob_data_no_present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-03_oob_data_no_present.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-04_pairing_legacy_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-04_pairing_legacy_confirm.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-04_pairing_legacy_response_no_sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-04_pairing_legacy_response_no_sec.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-04_pairing_legacy_resquest_no_sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-04_pairing_legacy_resquest_no_sec.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-05_io_cap_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-05_io_cap_response.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-05_pairing_no_user_interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-05_pairing_no_user_interaction.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-06_pairing_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-06_pairing_confirm.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-06_pairing_failed_confirm_value_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-06_pairing_failed_confirm_value_failed.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-06_pairing_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-06_pairing_random.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-06_pairing_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-06_pairing_request.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-06_pairing_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-06_pairing_response.png -------------------------------------------------------------------------------- /assets/img/bsam-pa-08_bluez_linkkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-pa-08_bluez_linkkey.png -------------------------------------------------------------------------------- /assets/img/bsam-res-01_bc417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-res-01_bc417.png -------------------------------------------------------------------------------- /assets/img/bsam-res-02_fccid-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-res-02_fccid-report.png -------------------------------------------------------------------------------- /assets/img/bsam-se-01_sdptool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-se-01_sdptool.png -------------------------------------------------------------------------------- /assets/img/bsam-se-02_gatt_profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/bsam-se-02_gatt_profiler.png -------------------------------------------------------------------------------- /assets/img/doc_baseband_link_layer.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_baseband_link_layer.drawio -------------------------------------------------------------------------------- /assets/img/doc_baseband_link_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_baseband_link_layer.png -------------------------------------------------------------------------------- /assets/img/doc_data_link_layer.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_data_link_layer.drawio -------------------------------------------------------------------------------- /assets/img/doc_data_link_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_data_link_layer.png -------------------------------------------------------------------------------- /assets/img/doc_l2cap_bframe.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_l2cap_bframe.drawio -------------------------------------------------------------------------------- /assets/img/doc_l2cap_bframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_l2cap_bframe.png -------------------------------------------------------------------------------- /assets/img/doc_l2cap_gframe.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_l2cap_gframe.drawio -------------------------------------------------------------------------------- /assets/img/doc_l2cap_gframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_l2cap_gframe.png -------------------------------------------------------------------------------- /assets/img/doc_logical_transport.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_logical_transport.drawio -------------------------------------------------------------------------------- /assets/img/doc_logical_transport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_logical_transport.png -------------------------------------------------------------------------------- /assets/img/doc_physical_architecture_host_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/assets/img/doc_physical_architecture_host_controller.png -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/BSAM/HEAD/favicon.png --------------------------------------------------------------------------------