Dataset Viewer
Auto-converted to Parquet Duplicate
Instruction
stringclasses
1 value
Input
stringlengths
79
33k
Response
stringlengths
106
9.29k
__index_level_0__
int64
0
2.83k
Find vulnerabilities in this ABAP code snippet.
```abap CLASS z2ui5_cl_tool_app_03 DEFINITION PUBLIC. PUBLIC SECTION. INTERFACES z2ui5_if_app. DATA mr_table TYPE REF TO data. DATA mv_name TYPE string. TYPES: BEGIN OF ty_s_token, key TYPE string, text TYPE string, visible TYPE abap_bool, ...
I found vulnerabilities in the line: ```abap SELECT FROM (mv_name) ``` Explanation: Potential dangerous statement Dynamic SQL.
0
Find vulnerabilities in this ABAP code snippet.
```abap CLASS z2ui5_cl_tool_app_03 DEFINITION PUBLIC. PUBLIC SECTION. INTERFACES z2ui5_if_app. DATA mr_table TYPE REF TO data. DATA mv_name TYPE string. TYPES: BEGIN OF ty_s_token, key TYPE string, text TYPE string, visible TYPE abap_bool, ...
I found vulnerabilities in the line: ```abap SELECT FROM (mv_name) ``` Explanation: Potential dangerous statement Dynamic SQL.
1
Find vulnerabilities in this ABAP code snippet.
```abap METHOD read_db. SELECT * FROM (i_tablename) INTO TABLE rt_db. ENDMETHOD. ```
I found vulnerabilities in the line: ```abap SELECT * ``` Explanation: Potential dangerous statement Dynamic SQL.
2
Find vulnerabilities in this ABAP code snippet.
```abap METHOD select_entries. TYPES: BEGIN OF lty_result. INCLUDE TYPE gty_mapping. TYPES: detailid TYPE zaap_l_detailid, annotationname TYPE seoclsname, END OF lty_result. DATA: lt_result TYPE STANDARD TABLE OF lty_result, lt_condition TYPE stringtab, lv_...
I found vulnerabilities in the line: ```abap SELECT * INTO CORRESPONDING FIELDS OF TABLE @lt_result ``` Explanation: Potential dangerous statement Dynamic SQL.
4
Find vulnerabilities in this ABAP code snippet.
```abap METHOD generate_subroutine. DATA syntax_error_info TYPE zcx_brainfuck_code_gen_error=>t_syntax_error. GENERATE SUBROUTINE POOL it_prog_src NAME DATA(dyn_prog) MESSAGE syntax_error_info-message LINE syntax_error_info-li...
I found vulnerabilities in the line: ```abap GENERATE SUBROUTINE POOL it_prog_src NAME DATA(dyn_prog) ``` Explanation: Potential dangerous statement GENERATE SUBROUTINE.
5
Find vulnerabilities in this ABAP code snippet.
```abap METHOD generate_program. DATA: prog_src TYPE tt_prog_src. CLEAR: et_source_code. " Program header: prog_src = get_dyn_program_header( ). LOOP AT it_instructions ASSIGNING FIELD-SYMBOL(<instruction>). DATA(type) = <instruction>->type. CASE type. WHEN zif_brainfuck_i...
I found vulnerabilities in the line: ```abap GENERATE SUBROUTINE POOL prog_src NAME DATA(dyn_prog). ``` Explanation: Potential dangerous statement GENERATE SUBROUTINE.
6
Find vulnerabilities in this ABAP code snippet.
```abap METHOD generate_matcher_program. DATA: source_lines TYPE TABLE OF string. source_lines = VALUE #( ( |REPORT zpcre_matcher.| ) ( |CLASS lcl_pcre_matcher DEFINITION CREATE PRIVATE.| ) ( | PUBLIC SECTION.| ) ( | CLASS-METHODS find_next_match| ) ( | IMPORTING| ) ( | ...
I found vulnerabilities in the line: ```abap GENERATE SUBROUTINE POOL source_lines ``` Explanation: Potential dangerous statement GENERATE SUBROUTINE.
8
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_adcoset_search_scope IMPLEMENTATION. METHOD constructor. super->constructor( ). init( search_scope ). ENDMETHOD. METHOD zif_adcoset_search_scope~next_package. DATA(max_rows) = get_max_rows( ). SELECT obj~objecttype AS type, obj~objectname AS...
I found vulnerabilities in the line: ```abap SELECT obj~objecttype AS type, ``` Explanation: Potential dangerous statement Dynamic SQL.
9
Find vulnerabilities in this ABAP code snippet.
```abap METHOD determine_count. config_dyn_where_clauses( ). resolve_packages( ). DATA(selection_limit) = COND i( WHEN max_objects > 0 THEN max_objects + 1 ELSE 0 ). SELECT COUNT(*) FROM (dyn_from_clause) WHERE (tags_dyn_whe...
I found vulnerabilities in the line: ```abap SELECT COUNT(*) ``` Explanation: Potential dangerous statement Dynamic SQL.
10
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_adcoset_search_scope IMPLEMENTATION. METHOD constructor. IF search_scope-scope_id IS NOT INITIAL. init_scope_from_db( search_scope ). ELSE. init_scope( search_scope ). ENDIF. ENDMETHOD. METHOD zif_adcoset_search_scope~count. result = object_count. ...
I found vulnerabilities in the line: ```abap SELECT obj~object_type AS type, ``` Explanation: Potential dangerous statement Dynamic SQL.
11
Find vulnerabilities in this ABAP code snippet.
```abap METHOD determine_count. DATA(selection_limit) = COND i( WHEN max_objects > 0 THEN max_objects + 1 ELSE 0 ). SELECT COUNT(*) FROM (dyn_from_clause) WHERE (tags_dyn_where_cond) AND obj~object_type IN @search_ranges-object_type_range AND obj~object_nam...
I found vulnerabilities in the line: ```abap SELECT COUNT(*) ``` Explanation: Potential dangerous statement Dynamic SQL.
12
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_adcoset_search_scope IMPLEMENTATION. METHOD constructor. IF search_scope-scope_id IS NOT INITIAL. init_scope_from_db( search_scope ). ELSE. init_scope( search_scope ). ENDIF. ENDMETHOD. METHOD zif_adcoset_search_scope~count. result = object_count. ENDMET...
I found vulnerabilities in the line: ```abap SELECT obj~object_type AS type, ``` Explanation: Potential dangerous statement Dynamic SQL.
13
Find vulnerabilities in this ABAP code snippet.
```abap METHOD determine_count. DATA(selection_limit) = COND i( WHEN max_objects > 0 THEN max_objects + 1 ELSE 0 ). SELECT COUNT(*) FROM (dyn_from_clause) WHERE (tags_dyn_where_cond) AND obj~object_type IN @search_ranges-object_type_range AND obj~object_name IN @search_ran...
I found vulnerabilities in the line: ```abap SELECT COUNT(*) ``` Explanation: Potential dangerous statement Dynamic SQL.
14
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_dbbr_cds_navigator IMPLEMENTATION. METHOD constructor. mr_t_data = ir_t_data. ms_association = is_association. mt_source_index = it_source_index. mr_source_cds_view = ir_source_cds_view. mr_source_tabfields = ir_source_tabfields. mt_nav_breadcrumbs ...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_START_SEL'. ``` Explanation: Add an authority check to CALL TRANSACTION.
15
Find vulnerabilities in this ABAP code snippet.
```abap METHOD open_in_sql_console. DATA(lv_query) = get_sql_query( if_for_console = abap_true ). EXPORT query = lv_query TO MEMORY ID zcl_dbbr_sql_console=>c_sqlquery_export_mem_id. CALL TRANSACTION 'ZDBBR_SQLCONSOLE'. ENDMETHOD. ```
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_SQLCONSOLE'. ``` Explanation: Add an authority check to CALL TRANSACTION.
16
Find vulnerabilities in this ABAP code snippet.
```abap TRY . SELECT (lt_select) FROM (<ls_add_text>-text_table) INTO CORRESPONDING FIELDS OF TABLE <lt_text_cache> WHERE (lt_where). CATCH cx_sy_open_sql_error. CONTINUE. ENDTRY. ```
I found vulnerabilities in the line: ```abap SELECT (lt_select) FROM (<ls_add_text>-text_table) INTO CORRESPONDING FIELDS OF TABLE <lt_text_cache> ``` Explanation: Potential dangerous statement Dynamic SQL.
17
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_dbbr_cds_navigator IMPLEMENTATION. METHOD constructor. mr_t_data = ir_t_data. ms_association = is_association. mt_source_index = it_source_index. mr_source_cds_view = ir_source_cds_view. mr_source_tabfields = ir_source_tabfields. mt_nav_breadcrumbs ...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_START_SEL'. ``` Explanation: Add an authority check to CALL TRANSACTION.
18
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT (mt_select) FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ORDER BY (mt_order_by) INTO CORRESPONDING FIELDS OF TABLE @<lt_data>. rv_size = lines( <lt_data> ). CLEAR <lt_data>. CATCH cx_root INTO lx_root. RAISE EXCEPTION TYPE zcx_dbbr_...
I found vulnerabilities in the line: ```abap ASSIGN ir_t_data->* TO <lt_data>. TRY. SELECT (mt_select) * <-- There is a problem here FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ``` Explanation: Potential dangerous statement Dynamic SQL.
21
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT COUNT( * ) FROM (mt_from) WHERE (mt_where) INTO @rv_size. CATCH cx_root INTO lx_root. RAISE EXCEPTION TYPE zcx_dbbr_selection_common EXPORTING previous = lx_root. ENDTRY. ```
I found vulnerabilities in the line: ```abap SELECT COUNT( * ) ``` Explanation: Potential dangerous statement Dynamic SQL.
22
Find vulnerabilities in this ABAP code snippet.
```abap METHOD generate_subroutine. DATA: lt_lines TYPE zdbbr_string_t, lv_prog TYPE string, lv_error_message TYPE string, lv_code_line TYPE string, lv_for_all_suffix TYPE string, lv_query_offset TYPE i. lt_lines = VALUE #( *... insert pro...
I found vulnerabilities in the line: ```abap GENERATE SUBROUTINE POOL lt_lines ``` Explanation: Potential dangerous statement GENERATE SUBROUTINE.
23
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT (mt_select) FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ORDER BY (mt_order_by) INTO CORRESPONDING FIELDS OF TABLE @et_data UP TO @mv_max_size ROWS. CATCH cx_root INTO lx_root. RAISE EXCEPTION TYPE zcx_dbbr_selection_common EXPORT...
I found vulnerabilities in the line: ```abap ELSE. TRY. SELECT (mt_select) * <-- There is a problem here FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ``` Explanation: Potential dangerous statement Dynamic SQL.
24
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT DISTINCT (mt_select) FROM (mt_from) WHERE (mt_where) ORDER BY (mt_order_by) INTO CORRESPONDING FIELDS OF TABLE @mt_result UP TO @mr_search_query->mv_max_rows ROWS. CATCH cx_sy_open_sql_error INTO DATA(lx_sql_error). RAISE EXCEPTION TYPE zcx_dbbr_object_s...
I found vulnerabilities in the line: ```abap SELECT DISTINCT (mt_select) ``` Explanation: Potential dangerous statement Dynamic SQL.
25
Find vulnerabilities in this ABAP code snippet.
```abap CASE mv_current_function. WHEN zif_dbbr_c_selscreen_functions=>edit_alternative_coltexts. edit_alternative_col_texts( ). WHEN zif_dbbr_c_selscreen_functions=>select_option_equal. set_select_option( iv_current_line = lv_current_index iv_option = zif_dbbr_global_con...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_QUERYCATALOG'. ``` Explanation: Add an authority check to CALL TRANSACTION.
26
Find vulnerabilities in this ABAP code snippet.
```abap METHOD delete_data. create_where_clause( ). create_from_clause( ). CHECK select_data( if_count_lines = abap_true ). " if no selection occurred, prevent screen visibility IF ms_control_info-number <= 0. MESSAGE i060(zdbbr_info). ELSE. DATA(lv_number_of_lines) = |{ ms_control_inf...
I found vulnerabilities in the line: ```abap DELETE FROM (mt_from) ``` Explanation: Modify only own DB tables | Potential dangerous statement Dynamic SQL.
28
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT DISTINCT (lt_select) INTO CORRESPONDING FIELDS OF TABLE <lt_cache> FROM (cs_post_join-join_table) FOR ALL ENTRIES IN it_table WHERE (lt_where). CATCH cx_root INTO DATA(lx_root). RAISE EXCEPTION TYPE zcx_dbbr_selection_common EXPORTING previous = lx_root...
I found vulnerabilities in the line: ```abap SELECT DISTINCT (lt_select) INTO CORRESPONDING FIELDS OF TABLE <lt_cache> ``` Explanation: Potential dangerous statement Dynamic SQL.
29
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT (lt_select) APPENDING CORRESPONDING FIELDS OF TABLE <lt_cache_copy> FROM (cs_post_join-join_table) WHERE (lt_where). CATCH cx_root INTO DATA(lx_root). RAISE EXCEPTION TYPE zcx_dbbr_selection_common EXPORTING previous = lx_root. ENDTRY. ```
I found vulnerabilities in the line: ```abap SELECT (lt_select) APPENDING CORRESPONDING FIELDS OF TABLE <lt_cache_copy> ``` Explanation: Potential dangerous statement Dynamic SQL.
30
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_dbbr_cds_navigator IMPLEMENTATION. METHOD constructor. mr_t_data = ir_t_data. ms_association = is_association. mt_source_index = it_source_index. mr_source_cds_view = ir_source_cds_view. mr_source_tabfields = ir_source_tabfields. mt_nav_breadcrumbs ...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_START_SEL'. ``` Explanation: Add an authority check to CALL TRANSACTION.
33
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT SINGLE FROM (iv_entity_id) FIELDS (lt_selfields) INTO @<lv_data>. IF sy-subrc = 0 AND sy-dbcnt > 0. rf_data_exists = abap_true. ENDIF. CATCH cx_root INTO DATA(lx_root). * MESSAGE lx_root->get_text( ) TYPE 'I'. ENDTRY. ```
I found vulnerabilities in the line: ```abap TRY. SELECT * <-- There is a problem here SINGLE ``` Explanation: Potential dangerous statement Dynamic SQL.
36
Find vulnerabilities in this ABAP code snippet.
```abap METHOD generate_subroutine. DATA: lt_lines TYPE string_table, lv_prog TYPE string, lv_error_message TYPE string, lv_code_line TYPE string, lv_for_all_suffix TYPE string, lv_query_offset TYPE i. lt_lines = VALUE #( *... insert progr...
I found vulnerabilities in the line: ```abap GENERATE SUBROUTINE POOL lt_lines ``` Explanation: Potential dangerous statement GENERATE SUBROUTINE.
39
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_dbbr_cds_navigator IMPLEMENTATION. METHOD constructor. mr_t_data = ir_t_data. ms_association = is_association. mt_source_index = it_source_index. mr_source_cds_view = ir_source_cds_view. mr_source_tabfields = ir_source_tabfields. mt_nav_breadcrumbs ...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_START_SEL'. ``` Explanation: Add an authority check to CALL TRANSACTION.
42
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT (mt_select) FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) HAVING (mt_having) ORDER BY (mt_order_by) INTO CORRESPONDING FIELDS OF TABLE @<lt_data>. rv_size = lines( <lt_data> ). CLEAR <lt_data>. CATCH cx_root INTO lx_root. RA...
I found vulnerabilities in the line: ```abap ASSIGN ir_t_data->* TO <lt_data>. TRY. SELECT (mt_select) * <-- There is a problem here FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ``` Explanation: Potential dangerous statement Dynamic SQL.
45
Find vulnerabilities in this ABAP code snippet.
```abap TRY. SELECT (mt_select) FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) HAVING (mt_having) ORDER BY (mt_order_by) INTO CORRESPONDING FIELDS OF TABLE @et_data UP TO @mv_max_size ROWS. CATCH cx_root INTO lx_root. RAISE EXCEPTION TYPE zcx_dbbr_se...
I found vulnerabilities in the line: ```abap DATA: lx_root TYPE REF TO cx_root. TRY. SELECT (mt_select) * <-- There is a problem here FROM (mt_from) WHERE (mt_where) GROUP BY (mt_group_by) ``` Explanation: Potential dangerous statement Dynamic SQL.
46
Find vulnerabilities in this ABAP code snippet.
```abap CLASS zcl_dbbr_cds_navigator IMPLEMENTATION. METHOD constructor. mr_t_data = ir_t_data. ms_association = is_association. mt_source_index = it_source_index. mr_source_cds_view = ir_source_cds_view. mr_source_tabfields = ir_source_tabfields. mt_nav_breadcrumbs ...
I found vulnerabilities in the line: ```abap CALL TRANSACTION 'ZDBBR_START_SEL'. ``` Explanation: Add an authority check to CALL TRANSACTION.
49
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_abap_to_json. DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). cut->zif_aff_writer~set_formatting_option( formatting ). cut->zif_aff_writer~set_name_mappings( name_mappings ). cut->zif_aff_writer~set_abap_value_mappings( value_mappings ). DATA(test_generator) = NEW zcl_aff_generato...
I found vulnerabilities in the line: ```abap cut->zif_aff_writer~set_abap_value_mappings( value_mappings ). DATA(test_generator) = NEW zcl_aff_generator( cut ). DATA(st_content) = test_generator->generate_type( test_type ). DATA(st_name) = CONV progname( c_xslt_prefix && st_execution_counter ). st_name = |{ st_name WID...
57
Find vulnerabilities in this ABAP code snippet.
```abap TRY. handler->if_aff_content_handler~deserialize( EXPORTING content = json IMPORTING data = result ). CATCH zcx_aff_tools INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. ```
I found vulnerabilities in the line: ```abap CATCH zcx_aff_tools INTO DATA(exception). DELETE REPORT st_name. * <-- There is a problem here cl_abap_unit_assert=>fail( ). ``` Explanation: Potential dangerous statement DELETE REPORT.
58
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_json_to_abap. DATA(counter) = st_execution_counter - 1. DATA(st_name) = CONV progname( c_xslt_prefix && counter ). st_name = |{ st_name WIDTH = 30 PAD = '=' }XT|. DATA(handler) = NEW cl_aff_content_handler_json( simple_transformation = st_name st_root_name = 'ROOT'...
I found vulnerabilities in the line: ```abap CATCH zcx_aff_tools INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. DELETE REPORT st_name. * <-- There is a problem here ENDMETHOD. ``` Explanation: Potential dangerous statement DELETE REPORT.
59
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_abap_to_json. DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). DATA(test_generator) = NEW zcl_aff_generator( cut ). DATA(st_content) = test_generator->generate_type( test_type ). DATA(st_name) = CONV progname( c_xslt_prefix && st_execution_counter ). st_name = |{ st_name WIDTH = 30 PA...
I found vulnerabilities in the line: ```abap DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). DATA(test_generator) = NEW zcl_aff_generator( cut ). DATA(st_content) = test_generator->generate_type( test_type ). DATA(st_name) = CONV progname( c_xslt_prefix && st_execution_counter ). st_name = |{ st_name WIDTH = 30 PAD = '=...
60
Find vulnerabilities in this ABAP code snippet.
```abap TRY. handler->if_aff_content_handler~deserialize( EXPORTING content = json IMPORTING data = result ). CATCH cx_aff_root INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. ```
I found vulnerabilities in the line: ```abap CATCH cx_aff_root INTO DATA(exception). DELETE REPORT st_name. * <-- There is a problem here cl_abap_unit_assert=>fail( ). ``` Explanation: Potential dangerous statement DELETE REPORT.
61
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_json_to_abap. DATA(counter) = st_execution_counter - 1. DATA(st_name) = CONV progname( c_xslt_prefix && counter ). st_name = |{ st_name WIDTH = 30 PAD = '=' }XT|. DATA(handler) = NEW cl_aff_content_handler_json( simple_transformation = st_name st_root_name = 'ROOT'...
I found vulnerabilities in the line: ```abap DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. DELETE REPORT st_name. * <-- There is a problem here ENDMETHOD. METHOD assert_json_equals. ``` Explanation: Potential dangerous statement DELETE REPORT.
62
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_abap_to_json. DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). DATA(test_generator) = NEW zcl_aff_generator( cut ). DATA(st_content) = test_generator->generate_type( test_type ). DATA(st_name) = CONV progname( c_xslt_prefix && st_execution_counter ). st_name = |{ st_name WIDTH = 30 ...
I found vulnerabilities in the line: ```abap st_name = |{ st_name WIDTH = 30 PAD = '=' }{ c_ext_xslt_source }|. INSERT REPORT st_name FROM st_content EXTENSION TYPE c_ext_xslt_source. * <-- There is a problem here DATA(json_writer) = cl_sxml_string_writer=>create( type = if_sxml=>co_xt_json ). ``` Explanation: Potentia...
63
Find vulnerabilities in this ABAP code snippet.
```abap TRY. CALL TRANSFORMATION (st_name) SOURCE XML json_reader RESULT (st_result). CATCH cx_root INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( exception->get_text( ) ). ENDTRY. ```
I found vulnerabilities in the line: ```abap GET REFERENCE OF result INTO <st_result>-value. DATA(json_reader) = cl_sxml_string_reader=>create( json ). TRY. CALL TRANSFORMATION (st_name) SOURCE XML json_reader RESULT (st_result). CATCH cx_root INTO DATA(exception). DELETE REPORT st_name. * <-- Th...
64
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_json_to_abap. DATA(counter) = st_execution_counter - 1. DATA(st_name) = CONV progname( c_xslt_prefix && counter ). st_name = |{ st_name WIDTH = 30 PAD = '=' }{ c_ext_xslt_source }|. DATA st_result TYPE abap_trans_resbind_tab. FIELD-SYMBOLS <st_result> LIKE LINE OF st_result. ...
I found vulnerabilities in the line: ```abap RESULT (st_result). CATCH cx_root INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( exception->get_text( ) ). ENDTRY. DELETE REPORT st_name. * <-- There is a problem here ENDMETHOD. METHOD table_structure. ``` Explanation: Potential dangerous statement ...
65
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_abap_to_json. DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). DATA(test_generator) = NEW zcl_aff_generator( cut ). DATA(st_content) = test_generator->generate_type( test_type ). DATA(st_name) = CONV progname( c_xslt_prefix && st_execution_counter ). st_name = |{ st_name WIDTH = 30 PA...
I found vulnerabilities in the line: ```abap st_name = |{ st_name WIDTH = 30 PAD = '=' }XT|. INSERT REPORT st_name FROM st_content EXTENSION TYPE c_ext_xslt_source. * <-- There is a problem here DATA(json_writer) = cl_sxml_string_writer=>create( type = if_sxml=>co_xt_json ). ``` Explanation: Potential dangerous stateme...
66
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_json_to_abap. DATA(counter) = st_execution_counter - 1. DATA(st_name) = CONV progname( c_xslt_prefix && counter ). st_name = |{ st_name WIDTH = 30 PAD = '=' }XT|. DATA st_result TYPE abap_trans_resbind_tab. FIELD-SYMBOLS <st_result> LIKE LINE OF st_result. CLEAR result. AP...
I found vulnerabilities in the line: ```abap DELETE REPORT st_name. cl_abap_unit_assert=>fail( exception->get_text( ) ). ENDTRY. DELETE REPORT st_name. * <-- There is a problem here ENDMETHOD. METHOD assert_json_equals. ``` Explanation: Potential dangerous statement DELETE REPORT.
67
Find vulnerabilities in this ABAP code snippet.
```abap TRY. handler->if_aff_content_handler~deserialize( EXPORTING content = json IMPORTING data = result ). CATCH cx_aff_root INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. ```
I found vulnerabilities in the line: ```abap TRY. handler->if_aff_content_handler~deserialize( EXPORTING content = json IMPORTING data = result ). CATCH cx_aff_root INTO DATA(exception). DELETE REPORT st_name. * <-- There is a problem here cl_abap_unit_assert=>fail( ). E...
69
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_json_to_abap. DATA(counter) = st_execution_counter - 1. DATA(st_name) = CONV progname( c_xslt_prefix && counter ). st_name = |{ st_name WIDTH = 30 PAD = '=' }XT|. DATA(handler) = NEW cl_aff_content_handler_json( simple_transformation = st_name st_root_name = 'ROOT'...
I found vulnerabilities in the line: ```abap ). CATCH cx_aff_root INTO DATA(exception). DELETE REPORT st_name. cl_abap_unit_assert=>fail( ). ENDTRY. DELETE REPORT st_name. * <-- There is a problem here ENDMETHOD. METHOD table_structure. ``` Explanation: Potential dangerous statement DELETE REPORT.
70
Find vulnerabilities in this ABAP code snippet.
```abap METHOD from_abap_to_json. DATA(cut) = NEW zcl_aff_writer_xslt( 'root' ). cut->zif_aff_writer~set_formatting_option( formatting ). cut->zif_aff_writer~set_name_mappings( name_mappings ). cut->zif_aff_writer~set_abap_value_mappings( value_mappings ). DATA(test_generator) = NEW zcl_aff_generator...
I found vulnerabilities in the line: ```abap st_name = |{ st_name WIDTH = 30 PAD = '=' }{ c_ext_xslt_source }|. INSERT REPORT st_name FROM st_content EXTENSION TYPE c_ext_xslt_source. * <-- There is a problem here DATA(json_writer) = cl_sxml_string_writer=>create( type = if_sxml=>co_xt_json ). ``` Explanation: Potentia...
79
End of preview. Expand in Data Studio

YAML Metadata Warning:The task_categories "text2text-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

README.md exists but content is empty.
Downloads last month
7