[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fH630z9lNkh30QJP_87lhEz6FvEngmenNZ7gd1gubaZk":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":17,"download_link":24,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":36,"analysis":131,"fingerprints":548},"wpxlsdata","Wp Convert Excel Data To Tabel And DB","1.2.0","behzadrohizadeh","https:\u002F\u002Fprofiles.wordpress.org\u002Fbehzadrohizadeh\u002F","\u003Cp>An Plugin to convert Excel files to WordPress database And manage data in your WordPress menu\u003Cbr \u002F>\nYou can import  your excel file  and export data at any time  .\u003Cbr \u002F>\nYou can also manually enter, delete, or edit data .\u003Cbr \u002F>\nYou can create custom menue in wordpress\u003Cbr \u002F>\nYou can create custom tabel in wordpress\u003Cbr \u002F>\nif you need to create custom  menue or create custom tabel in wordpress this plugin is best for you\u003Cbr \u002F>\nIn this plugin you can do the above things easily by using Excel file and manage data in WordPress and display to your users in html tabel  and you can also manage your data for each Excel file in a new WordPress menu\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fyoutu.be\u002FC6Nx21W1TjI\" rel=\"nofollow ugc\">Demo Youtube\u003C\u002Fa>\u003C\u002Fp>\n","An Plugin to convert Excel files to WordPress database And manage data in your WordPress menu",90,4933,0,"2020-10-09T07:13:00.000Z","5.5.18","3.0.1","",[19,20,21,22,23],"converter","db","excel","html","tabel","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwpxlsdata.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":30,"total_installs":31,"avg_security_score":32,"avg_patch_time_days":33,"trust_score":34,"computed_at":35},5,190,89,30,86,"2026-04-04T23:01:02.007Z",[37,60,80,102,119],{"slug":38,"name":39,"version":40,"author":41,"author_profile":42,"description":43,"short_description":44,"active_installs":45,"downloaded":46,"rating":47,"num_ratings":48,"last_updated":49,"tested_up_to":50,"requires_at_least":51,"requires_php":17,"tags":52,"homepage":58,"download_link":59,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"html-special-characters-helper","HTML Special Characters Helper","2.2","Scott Reilly","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoffee2code\u002F","\u003Cp>Add an admin widget labeled “HTML Special Characters” that is present in the admin Add\u002FEdit Post and Add\u002FEdit Page pages. Clicking on any special character in the widget causes its character encoding to be inserted into the post body text field at the current cursor location (or at the end of the post if the cursor isn’t located in the post body field). Hovering over any of the special characters in the admin widget causes hover text to appear that shows the HTML entity encoding for the character as well as the name of the character.\u003C\u002Fp>\n\u003Cp>Note that when used in the visual editor mode the special character itself is added to the post body. Also note that the visual editor has its own special characters popup helper accessible via the advanced toolbar, which depending on your usage, may make this plugin unnecessary for you. In truth, the plugin is intended more for the non-visual (aka HTML) mode as that is the mode I (the plugin author) use.\u003C\u002Fp>\n\u003Cp>Links: \u003Ca href=\"http:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fhtml-special-characters-helper\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fhtml-special-characters-helper\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"http:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Filters\u003C\u002Fh3>\n\u003Cp>The plugin exposes two filters for hooking. Typically, code making use of filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain).\u003C\u002Fp>\n\u003Ch4>c2c_html_special_characters (filter)\u003C\u002Fh4>\n\u003Cp>The ‘c2c_html_special_characters’ hook allows you to remove existing characters or entire groups of characters, and\u002For add new characters or groups of characters.\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$codes (array) : An association array in which the keys are a grouping name and the values are associative arrays themselves with the code as the key and the human-friendly descriptions as the values.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Add a new grouping of characters (accented 'A's).\n *\n * @param array $characters Default HTML special characters.\n * @return array\n *\u002F\nfunction more_html_special_characters( $characters ) {\n    $characters['accented_a'] = array(\n        'name'     => 'Accented A',\n        '&Agrave;' => 'A grave accent',\n        '&Aacute;' => 'A accute accent',\n        '&Acirc;'  => 'A circumflex',\n        '&Atilde;' => 'A tilde',\n        '&Auml;'   => 'A umlaut',\n        '&Aring;'  => 'A ring',\n        '&AElig;'  => 'AE ligature',\n    );\n    return $characters; \u002F\u002F Important!\n}\nadd_filter( 'c2c_html_special_characters', 'more_html_special_characters' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>c2c_html_special_characters_post_type (filter)\u003C\u002Fh4>\n\u003Cp>The ‘c2c_html_special_characters_post_type’ hook allows you to specify which post_types for which the HTML Special Characters metabox should be shown.\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$post_types (array) : An array of post types. By default, this value is \u003Ccode>array( 'page', 'post' )\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Show HTML Special Characters Helper for additional post_types.\n *\n * @param array $post_types Arry of post types.\n * @return array\n *\u002F\nfunction more_html_special_characters_post_types( $post_types ) {\n    $post_types[] = 'products'; \u002F\u002F Show for products\n    unset( $post_types['page'] ); \u002F\u002F Don't show for pages\n    return $post_types;\n}\nadd_filter( 'c2c_html_special_characters_post_types', 'more_html_special_characters_post_types' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Admin widget on the Add\u002FEdit Post pages for inserting HTML encodings of special characters into the post.",200,38064,100,3,"2017-02-22T07:32:00.000Z","4.7.32","4.6",[53,54,55,56,57],"admin-widget","dbx","html-special-characters","post","write-post","http:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fhtml-special-characters-helper\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhtml-special-characters-helper.2.2.zip",{"slug":61,"name":62,"version":63,"author":64,"author_profile":65,"description":66,"short_description":67,"active_installs":47,"downloaded":68,"rating":13,"num_ratings":13,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":72,"tags":73,"homepage":17,"download_link":79,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"cf7-element-converter","Contact Form 7 Element Converter","1.0.0","kenkeydev","https:\u002F\u002Fprofiles.wordpress.org\u002Fkenkeydev\u002F","\u003Cp>Convert HTML5 elements into Contact Form 7 shortcodes\u003C\u002Fp>\n\u003Cp>This plugin currently supports:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Text\u003C\u002Fli>\n\u003Cli>Email\u003C\u002Fli>\n\u003Cli>Tel\u003C\u002Fli>\n\u003Cli>Number\u003C\u002Fli>\n\u003Cli>URL\u003C\u002Fli>\n\u003Cli>Textarea\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>And supports the following attributes:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>ID\u003C\u002Fli>\n\u003Cli>Required\u003C\u002Fli>\n\u003Cli>Class\u003C\u002Fli>\n\u003Cli>Placeholder\u003C\u002Fli>\n\u003C\u002Ful>\n","Convert HTML5 elements into Contact Form 7 shortcodes",2461,"2019-06-27T13:41:00.000Z","5.2.24","5.2.1","5.2.4",[74,75,76,77,78],"cf7","contact","contact-form","html-converter","wpcf7","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcf7-element-converter.1.0.0.zip",{"slug":81,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":33,"downloaded":87,"rating":47,"num_ratings":88,"last_updated":89,"tested_up_to":90,"requires_at_least":91,"requires_php":17,"tags":92,"homepage":97,"download_link":98,"security_score":99,"vuln_count":100,"unpatched_count":100,"last_vuln_date":101,"fetched_at":27},"idbbee","1.0","dbBee","https:\u002F\u002Fprofiles.wordpress.org\u002Ffaikdjikic\u002F","\u003Cp>\u003Cstrong>Publish your spreadsheet online!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Simply collect, manage and publish data on your website\u003C\u002Fli>\n\u003Cli>Use any Excel® spreadsheet or Access® database\u003C\u002Fli>\n\u003Cli>One click integration with WordPress\u003C\u002Fli>\n\u003Cli>Simple, intuitive and designed for non-developers\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>What is dbBee?\u003C\u002Fstrong>\u003Cbr \u002F>\ndbBee is innovative frustration-free system for fast, simple and really easy publishing, managing, collecting and sharing data stored in Excel® spreadsheets or Access® databases.\u003Cbr \u002F>\nUse wizards to create search forms, reports and administration systems without any programming. You can actually do the whole thing within 15 minutes and in just a couple of simple steps. It’s really that easy!\u003C\u002Fp>\n\u003Cp>Use fully functional free plan forever, or get more with our paid plans. And… we do have a surprise for you, just register first :-)!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Interested? This is how dbBee system works with WordPress…\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Col>\n\u003Cli>\n\u003Cp>Install dbBee plugin(s) on your WordPress site (go to WordPress Admin Panel and click on \u003Cstrong>Plugins » Add New\u003C\u002Fstrong>, type the word \u003Cstrong>dbBee\u003C\u002Fstrong> in the search box and click \u003Cstrong>Search plugins\u003C\u002Fstrong> button, click \u003Cstrong>Install\u003C\u002Fstrong> button on edbbee or idbbee plugin, click \u003Cstrong>Activate plugin\u003C\u002Fstrong>)\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Register on dbBee – Use simple \u003Cstrong>\u003Ca href=\"http:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">registration form\u003C\u002Fa>\u003C\u002Fstrong> or use hassle free \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Fwplog.wbsp\" rel=\"nofollow ugc\">Login with WordPress\u003C\u002Fa>\u003C\u002Fstrong> or \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Ffblog.wbsp\" rel=\"nofollow ugc\">Login with Facebook\u003C\u002Fa>\u003C\u002Fstrong> option\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Run one of dbBee wizards, upload your Excel workbook or Access database, answer few simple questions and let dbBee do the magic. If you’re using an Excel workbook, make sure it is \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Fhow-your-excel-sheet-should-look-like-so-it-can-easily-be-used-with-dbbee-wizards\" rel=\"nofollow ugc\">formatted properly\u003C\u002Fa>\u003C\u002Fstrong>. Once you are satisfied with your project click “Save and deploy” button\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Embed the project – dbBee will provide ready-to-use code for both idbbee and edbbee plugins to seamlessly embed your project into your WordPress web site\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Cstrong>Don’t worry you will be done within 5-15 minutes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Fully featured free plan\u003C\u002Fstrong> – Use unlimited databases! Create reports! Add, delete or update your data up to 30 records per table \u002F sheet. Free for both personal and commercial use!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Do your job in 15 minutes\u003C\u002Fstrong> – It’s not a joke! Within 15 minutes your Excel® or Access® data will be turned into a powerful fully-featured application that searches, browses and previews data from your Excel sheet or Access database, or you can use it for collecting data from your site’s visitors. dbBee will save you a serious amount of money and a lot of time.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>No coding at all\u003C\u002Fstrong> – The whole publishing process is done by wizards and in just a couple of simple steps that require zero coding knowledge.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Amazing support\u003C\u002Fstrong> – We’re here because of you, with main task to make sure you can really enjoy doing your projects. We will help you create, manage and upgrade your applications. Every user is important to us and we honestly appreciate your trust. Please let us earn our salary – contact us using either online chat or “How to form”.\u003C\u002Fp>\n\u003Cp>We invite you to join our beehive and to empower your services by providing what your visitors need the most, the information. By adding searchable front-end reports to your website and by creating back-end administrative system you will enhance your relationship with your target audience. You may also collect new information from your visitors and then generate new reports that will make your business or your project even more interesting to your target audience.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"http:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">Try now – Its free!\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>More info\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>dbBee Service – \u003Ca href=\"http:\u002F\u002Fwww.dbbee.com\u002F\" rel=\"nofollow ugc\">http:\u002F\u002Fwww.dbbee.com\u002F\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Create free account – \u003Ca href=\"https:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">https:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Available service plans – \u003Ca href=\"http:\u002F\u002Fwww.dbbee.com\u002Fplans\" rel=\"nofollow ugc\">http:\u002F\u002Fwww.dbbee.com\u002Fplans\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>WordPress removes certain html tags because of security reasons, among them \u003Ccode>\u003Ciframe>\u003C\u002Fcode> and \u003Ccode>\u003Cscript>\u003C\u002Fcode>. idbbee shortcode is used for embedding dbBee projects to your WordPress page or post as iframe element.\u003C\u002Fp>\n\u003Ch4>idbbee params:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>src\u003C\u002Fstrong> – source of the dbBee project: \u003Ccode>[idbbee src=\"\u002F\u002Fthyme.dbbee.com\u002Fu\u002Fdemo\u002F\"]\u003C\u002Fcode>;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>width\u003C\u002Fstrong> – width in pixels or in percents: \u003Ccode>[idbbee width=\"90%\"] or [idbbee width=\"640\"]\u003C\u002Fcode>, default value:100%;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>height\u003C\u002Fstrong> – height in pixels: \u003Ccode>[idbbee height=\"800\"]\u003C\u002Fcode>, default value:600;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>scrolling\u003C\u002Fstrong> – include scrollbars: \u003Ccode>[idbbee scrolling=\"no\"]\u003C\u002Fcode>, default value:yes;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>frameborder\u003C\u002Fstrong> – width of frame border in pixels: \u003Ccode>[idbbee frameborder=\"1\"]\u003C\u002Fcode>, default value:0;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>marginheight\u003C\u002Fstrong> – margin height: \u003Ccode>[idbbee marginheight=\"5\"]\u003C\u002Fcode>, default value:0;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>marginwidth\u003C\u002Fstrong> – width of the margin: \u003Ccode>[idbbee marginwidth=\"0\"]\u003C\u002Fcode>, default value:0;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>id\u003C\u002Fstrong> – id attribute for the idbbee: \u003Ccode>[idbbee id=\"dbbeeproject\"]\u003C\u002Fcode>, default value:dbBeeIFrame;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>name\u003C\u002Fstrong> – name attribute for the idbbee: \u003Ccode>[idbbee name=\"dbbeeproject\"]\u003C\u002Fcode>, default value:dbBeeIFrame;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>class\u003C\u002Fstrong> – class attribute for the idbbee: \u003Ccode>[idbbee class=\"idbBeeClass\"]\u003C\u002Fcode>, default value:dbBeeIFrameclass;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>style\u003C\u002Fstrong> – style attribute for the idbbee: \u003Ccode>[idbbee style=\"padding:0px;\"]\u003C\u002Fcode>;\u003C\u002Fli>\n\u003C\u002Ful>\n","Turn your Excel Spreadsheet, or Access database into a powerful online database application with a few clicks.",3600,2,"2023-11-30T14:35:00.000Z","6.4.8","3.0",[93,94,95,96,21],"access","database","dbbee","embed","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fidbbee\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fidbbee.zip",64,1,"2023-10-30 00:00:00",{"slug":103,"name":104,"version":105,"author":106,"author_profile":107,"description":108,"short_description":109,"active_installs":110,"downloaded":111,"rating":13,"num_ratings":13,"last_updated":112,"tested_up_to":70,"requires_at_least":16,"requires_php":72,"tags":113,"homepage":117,"download_link":118,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"word-to-html","Word to html","1.1","wibergsweb","https:\u002F\u002Fprofiles.wordpress.org\u002Fwibergsweb\u002F","\u003Cp>Word to html makes it easy to fetch content from newer word-file(s) (.docx) and convert the document to html on a page with a single shortcode.\u003C\u002Fp>\n\u003Cp>Display some html from one or more word files from your local webserver or an external webserver. Multiple word files support on your local webserver. It’s not intented to be used as full format converting tool as it does create clean html (not a loads of inline styles), but could be convient to read content from word-files just by putting them in a folder on your webserver.\u003C\u002Fp>\n\u003Cp>The plugin does fetch this kind of information from your .docx – document:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Headings (support for english and swedish)\u003C\u002Fli>\n\u003Cli>Paragraphs including bold, underline and italic. When having paragraph defined as a column then a new paragraph is created.\u003C\u002Fli>\n\u003Cli>Hyperlinks\u003C\u002Fli>\n\u003Cli>Tables \u003C\u002Fli>\n\u003Cli>Images (jpg, png, jpeg)\u003C\u002Fli>\n\u003Cli>Unordered lists (bulleted) or ordered lists (numbered). It’s also possible to combine these type of lists.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>The plugin does only create the html without any specific inline styling. The reason for this is that word-documents and html-documents have a totally different structure and you should be using css when styling html – documents. Inline styles would also apply styling to your wordpress-theme that wouldn’t fit your current design.\u003C\u002Fp>\n\u003Cp>If fetching information from more then one docx – document on your local webserver, content from all files are mixed into different sections of html (one file per section). This could be useful if you want to create tabs of some sort based on information from several word-documents.\u003C\u002Fp>\n\u003Cp>If you like the plugin, please consider donating or write a review.\u003C\u002Fp>\n\u003Ch3>Example of usage\u003C\u002Fh3>\n\u003Ch4>shortcodes in post(s)\u002Fpage(s)\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[wordtohtml_create path=”lan” source_files=”skane.docx;smaland.docx;”]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create path=”wordfiles” source_files=”*.docx”]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create path=”wordfiles” source_files=”word1;word2″ debug_mode=”yes”]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create path=”wordfiles” source_files=”word1;word2″ debug_mode=”yes”]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create debug_mode=”no” convert_encoding_from=”Windows-1252″ convert_encoding_to=”UTF-8″]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create debug_mode=”no” convert_encoding_to=”UTF-8″]\u003C\u002Fli>\n\u003Cli>[wordtohtml_create source_files=”http:\u002F\u002Fwibergsweb.se\u002Fkonstak.docx” path=”wordfiles” debug_mode=”yes” html_id=”turnover” html_class=”wow” add_ext_auto=”yes” skip_articletag=”no”]\u003C\u002Fli>\n\u003C\u002Ful>\n","Display some html from one or more word files from your local webserver or an external webserver.",20,5107,"2019-07-19T07:28:00.000Z",[114,19,115,116,103],"convert","docx","word-into-html","http:\u002F\u002Fwww.wibergsweb.se\u002Fplugins\u002Fwordtohtml","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fword-to-html.zip",{"slug":120,"name":120,"version":121,"author":95,"author_profile":122,"description":123,"short_description":86,"active_installs":124,"downloaded":125,"rating":13,"num_ratings":13,"last_updated":17,"tested_up_to":126,"requires_at_least":91,"requires_php":17,"tags":127,"homepage":128,"download_link":129,"security_score":47,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":130},"edbbee","1.0.1","https:\u002F\u002Fprofiles.wordpress.org\u002Fdbbee\u002F","\u003Cp>\u003Cstrong>Publish your spreadsheet online!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Simply collect, manage and publish data on your website\u003C\u002Fli>\n\u003Cli>Use any Excel® spreadsheet or Access® database\u003C\u002Fli>\n\u003Cli>One click integration with WordPress\u003C\u002Fli>\n\u003Cli>Simple, intuitive and designed for non-developers\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>What is dbBee?\u003C\u002Fstrong>\u003Cbr \u002F>\ndbBee is innovative frustration-free system for fast, simple and really easy publishing, managing, collecting and sharing data stored in Excel® spreadsheets or Access® databases.\u003Cbr \u002F>\nUse wizards to create search forms, reports and administration systems without any programming. You can actually do the whole thing within 15 minutes and in just a couple of simple steps. It’s really that easy!\u003C\u002Fp>\n\u003Cp>Use fully functional free plan forever, or get more with our paid plans. And… we do have a surprise for you, just register first :-)!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Interested? This is how dbBee system works with WordPress…\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Col>\n\u003Cli>\n\u003Cp>Install dbBee plugin(s) on your WordPress site (go to WordPress Admin Panel and click on \u003Cstrong>Plugins » Add New\u003C\u002Fstrong>, type the word \u003Cstrong>dbBee\u003C\u002Fstrong> in the search box and click \u003Cstrong>Search plugins\u003C\u002Fstrong> button, click \u003Cstrong>Install\u003C\u002Fstrong> button on edbbee or idbbee plugin, click \u003Cstrong>Activate plugin\u003C\u002Fstrong>)\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Register on dbBee – Use simple \u003Cstrong>\u003Ca href=\"http:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">registration form\u003C\u002Fa>\u003C\u002Fstrong> or use hassle free \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Fwplog.wbsp\" rel=\"nofollow ugc\">Login with WordPress\u003C\u002Fa>\u003C\u002Fstrong> or \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Ffblog.wbsp\" rel=\"nofollow ugc\">Login with Facebook\u003C\u002Fa>\u003C\u002Fstrong> option\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Run one of dbBee wizards, upload your Excel workbook or Access database, answer few simple questions and let dbBee do the magic. If you’re using an Excel workbook, make sure it is \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.dbbee.com\u002Fhow-your-excel-sheet-should-look-like-so-it-can-easily-be-used-with-dbbee-wizards\" rel=\"nofollow ugc\">formatted properly\u003C\u002Fa>\u003C\u002Fstrong>. Once you are satisfied with your project click “Save and deploy” button\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Embed the project – dbBee will provide ready-to-use code for both idbbee and edbbee plugins to seamlessly embed your project into your WordPress web site\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Cstrong>Don’t worry you will be done within 5-15 minutes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Fully featured free plan\u003C\u002Fstrong> – Use unlimited databases! Create reports! Add, delete or update your data up to 30 records per table \u002F sheet. Free for both personal and commercial use!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Do your job in 15 minutes\u003C\u002Fstrong> – It’s not a joke! Within 15 minutes your Excel® or Access® data will be turned into a powerful fully-featured application that searches, browses and previews data from your Excel sheet or Access database, or you can use it for collecting data from your site’s visitors. dbBee will save you a serious amount of money and a lot of time.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>No coding at all\u003C\u002Fstrong> – The whole publishing process is done by wizards and in just a couple of simple steps that require zero coding knowledge.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Amazing support\u003C\u002Fstrong> – We’re here because of you, with main task to make sure you can really enjoy doing your projects. We will help you create, manage and upgrade your applications. Every user is important to us and we honestly appreciate your trust. Please let us earn our salary – contact us using either online chat or “How to form”.\u003C\u002Fp>\n\u003Cp>We invite you to join our beehive and to empower your services by providing what your visitors need the most, the information. By adding searchable front-end reports to your website and by creating back-end administrative system you will enhance your relationship with your target audience. You may also collect new information from your visitors and then generate new reports that will make your business or your project even more interesting to your target audience.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"http:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">Try now – Its free!\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>More info\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>dbBee Service – \u003Ca href=\"http:\u002F\u002Fwww.dbbee.com\u002F\" rel=\"nofollow ugc\">http:\u002F\u002Fwww.dbbee.com\u002F\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Create free account – \u003Ca href=\"https:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\" rel=\"nofollow ugc\">https:\u002F\u002Fthyme.dbbee.com\u002Fregister\u002F\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Available service plans – \u003Ca href=\"http:\u002F\u002Fwww.dbbee.com\u002Fplans\" rel=\"nofollow ugc\">http:\u002F\u002Fwww.dbbee.com\u002Fplans\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>WordPress removes certain html tags because of security reasons, among them \u003Ccode>\u003Ciframe>\u003C\u002Fcode> and \u003Ccode>\u003Cscript>\u003C\u002Fcode>. edbbee shortcode is used for embedding dbBee projects to your WordPress page or post as script element.\u003C\u002Fp>\n\u003Ch4>edbbee params:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>server\u003C\u002Fstrong> – name of dbBee server where your dbBee project is located : \u003Ccode>[edbbee server=\"thyme.dbbee.com\"]\u003C\u002Fcode>;\u003C\u002Fli>\n\u003Cli>\u003Cstrong>projectkey\u003C\u002Fstrong> – unique key of your dbBee project: \u003Ccode>[edbbee projectkey=\"29ffffffec482318be67844ae1000000...key truncated\"]\u003C\u002Fcode>. This parameter is required. There is no default value!;\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Warning\u003C\u002Fh4>\n\u003Cp>Usage of edbbee is limited to one instance per page\u003C\u002Fp>\n",10,2324,"5.7.15",[93,94,95,96,21],"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fedbbee\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fedbbee.zip","2026-03-15T10:48:56.248Z",{"attackSurface":132,"codeSignals":181,"taintFlows":391,"riskAssessment":536,"analyzedAt":547},{"hooks":133,"ajaxHandlers":153,"restRoutes":173,"shortcodes":174,"cronEvents":179,"entryPointCount":180,"unprotectedCount":30},[134,140,144,148],{"type":135,"name":136,"callback":137,"file":138,"line":139},"action","admin_menu","wpxlsdata_Admin_menue_add","inc\\addmenue.php",14,{"type":135,"name":136,"callback":141,"file":142,"line":143},"wpxlsdata_Admin_menue","inc\\menue.php",12,{"type":135,"name":145,"callback":146,"file":142,"line":147},"admin_enqueue_scripts","wpxlsdata_admin_scripts",13,{"type":135,"name":149,"callback":150,"file":151,"line":152},"plugins_loaded","wpxlsdata_localization_init_textdomain","wpxlsdata.php",35,[154,159,163,166,169],{"action":155,"nopriv":156,"callback":157,"hasNonce":156,"hasCapCheck":156,"file":138,"line":158},"wpxlsdata_export",false,"wp_ajax_wpxlsdata_export",15,{"action":160,"nopriv":156,"callback":161,"hasNonce":156,"hasCapCheck":156,"file":138,"line":162},"edit_data_row","wp_ajax_edit_data_row",16,{"action":164,"nopriv":156,"callback":165,"hasNonce":156,"hasCapCheck":156,"file":142,"line":139},"wpxlsdata_import","wp_ajax_wpxlsdata_import",{"action":167,"nopriv":156,"callback":168,"hasNonce":156,"hasCapCheck":156,"file":142,"line":158},"wpxlsdata_add_shortcode","wp_ajax_wpxlsdata_add_shortcode",{"action":170,"nopriv":156,"callback":171,"hasNonce":156,"hasCapCheck":156,"file":142,"line":172},"wpxlsdata_delete_shortcode","wp_ajax_wpxlsdata_delete_shortcode",17,[],[175],{"tag":4,"callback":176,"file":177,"line":178},"wpxlsdata_shortcode_wpxlsdata","inc\\shortcode.php",7,[],6,{"dangerousFunctions":182,"sqlUsage":183,"outputEscaping":273,"fileOperations":100,"externalRequests":13,"nonceChecks":389,"capabilityChecks":13,"bundledLibraries":390},[],{"prepared":48,"raw":184,"locations":185},43,[186,189,191,193,195,197,199,201,203,205,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,241,243,245,247,250,252,254,256,258,260,262,264,266,268,270,272],{"file":138,"line":187,"context":188},33,"$wpdb->get_results() with variable interpolation",{"file":138,"line":190,"context":188},34,{"file":138,"line":192,"context":188},61,{"file":138,"line":194,"context":188},104,{"file":138,"line":196,"context":188},105,{"file":138,"line":198,"context":188},107,{"file":138,"line":200,"context":188},166,{"file":138,"line":202,"context":188},254,{"file":138,"line":204,"context":188},255,{"file":138,"line":206,"context":207},288,"$wpdb->get_var() with variable interpolation",{"file":138,"line":209,"context":188},311,{"file":138,"line":211,"context":188},312,{"file":138,"line":213,"context":188},436,{"file":138,"line":215,"context":188},437,{"file":138,"line":217,"context":207},450,{"file":138,"line":219,"context":188},547,{"file":138,"line":221,"context":188},673,{"file":138,"line":223,"context":188},674,{"file":138,"line":225,"context":188},755,{"file":138,"line":227,"context":207},789,{"file":138,"line":229,"context":188},993,{"file":138,"line":231,"context":188},994,{"file":138,"line":233,"context":188},997,{"file":138,"line":235,"context":188},1036,{"file":138,"line":237,"context":188},1037,{"file":138,"line":239,"context":188},1039,{"file":142,"line":196,"context":188},{"file":142,"line":242,"context":188},106,{"file":142,"line":244,"context":188},203,{"file":142,"line":246,"context":188},264,{"file":142,"line":248,"context":249},272,"$wpdb->query() with variable interpolation",{"file":142,"line":251,"context":188},279,{"file":142,"line":253,"context":207},388,{"file":177,"line":255,"context":188},24,{"file":177,"line":257,"context":188},25,{"file":177,"line":259,"context":188},29,{"file":177,"line":261,"context":188},83,{"file":151,"line":263,"context":207},55,{"file":151,"line":265,"context":249},57,{"file":151,"line":267,"context":207},69,{"file":151,"line":269,"context":249},71,{"file":151,"line":271,"context":207},87,{"file":151,"line":32,"context":249},{"escaped":274,"rawEcho":275,"locations":276},41,59,[277,280,282,284,286,288,290,292,294,296,298,300,302,304,306,307,309,311,313,315,317,318,320,322,324,325,327,329,331,333,335,337,339,341,342,343,345,347,349,351,353,355,357,359,361,363,365,367,369,371,373,375,377,379,380,382,384,386,387],{"file":138,"line":278,"context":279},77,"raw output",{"file":138,"line":281,"context":279},155,{"file":138,"line":283,"context":279},291,{"file":138,"line":285,"context":279},325,{"file":138,"line":287,"context":279},332,{"file":138,"line":289,"context":279},333,{"file":138,"line":291,"context":279},334,{"file":138,"line":293,"context":279},337,{"file":138,"line":295,"context":279},338,{"file":138,"line":297,"context":279},339,{"file":138,"line":299,"context":279},351,{"file":138,"line":301,"context":279},362,{"file":138,"line":303,"context":279},375,{"file":138,"line":305,"context":279},384,{"file":138,"line":305,"context":279},{"file":138,"line":308,"context":279},389,{"file":138,"line":310,"context":279},392,{"file":138,"line":312,"context":279},393,{"file":138,"line":314,"context":279},394,{"file":138,"line":316,"context":279},408,{"file":138,"line":316,"context":279},{"file":138,"line":319,"context":279},625,{"file":138,"line":321,"context":279},630,{"file":138,"line":323,"context":279},632,{"file":138,"line":323,"context":279},{"file":138,"line":326,"context":279},636,{"file":138,"line":328,"context":279},637,{"file":138,"line":330,"context":279},792,{"file":138,"line":332,"context":279},801,{"file":138,"line":334,"context":279},811,{"file":138,"line":336,"context":279},815,{"file":138,"line":338,"context":279},821,{"file":138,"line":340,"context":279},824,{"file":138,"line":340,"context":279},{"file":138,"line":340,"context":279},{"file":138,"line":344,"context":279},945,{"file":138,"line":346,"context":279},959,{"file":138,"line":348,"context":279},1051,{"file":138,"line":350,"context":279},1054,{"file":138,"line":352,"context":279},1065,{"file":138,"line":354,"context":279},1073,{"file":138,"line":356,"context":279},1074,{"file":138,"line":358,"context":279},1084,{"file":138,"line":360,"context":279},1085,{"file":138,"line":362,"context":279},1113,{"file":138,"line":364,"context":279},1114,{"file":138,"line":366,"context":279},1115,{"file":138,"line":368,"context":279},1116,{"file":138,"line":370,"context":279},1118,{"file":142,"line":372,"context":279},48,{"file":142,"line":374,"context":279},82,{"file":142,"line":376,"context":279},251,{"file":142,"line":378,"context":279},324,{"file":142,"line":285,"context":279},{"file":142,"line":381,"context":279},326,{"file":142,"line":383,"context":279},327,{"file":142,"line":385,"context":279},330,{"file":142,"line":385,"context":279},{"file":142,"line":388,"context":279},504,4,[],[392,422,434,468,478,499,509,517,525],{"entryPoint":393,"graph":394,"unsanitizedCount":180,"severity":421},"wpxlsdata_Admin_menue_db_show (inc\\addmenue.php:246)",{"nodes":395,"edges":417},[396,400,405,409,411,415],{"id":397,"type":398,"label":399,"file":138,"line":285},"n0","source","$_GET['page']",{"id":401,"type":402,"label":403,"file":138,"line":285,"wp_function":404},"n1","sink","echo() [XSS]","echo",{"id":406,"type":398,"label":407,"file":138,"line":408},"n2","$_GET (x4)",259,{"id":410,"type":402,"label":403,"file":138,"line":289,"wp_function":404},"n3",{"id":412,"type":398,"label":413,"file":138,"line":414},"n4","$_SERVER",318,{"id":416,"type":402,"label":403,"file":138,"line":316,"wp_function":404},"n5",[418,419,420],{"from":397,"to":401,"sanitized":156},{"from":406,"to":410,"sanitized":156},{"from":412,"to":416,"sanitized":156},"medium",{"entryPoint":423,"graph":424,"unsanitizedCount":13,"severity":433},"wpxlsdata_add_import_menue (inc\\addmenue.php:849)",{"nodes":425,"edges":430},[426,429],{"id":397,"type":398,"label":427,"file":138,"line":428},"$_FILES",894,{"id":401,"type":402,"label":403,"file":138,"line":346,"wp_function":404},[431],{"from":397,"to":401,"sanitized":432},true,"low",{"entryPoint":435,"graph":436,"unsanitizedCount":13,"severity":433},"\u003Caddmenue> (inc\\addmenue.php:0)",{"nodes":437,"edges":461},[438,440,443,446,447,448,449,451,453,455,457,459],{"id":397,"type":398,"label":439,"file":138,"line":257},"$_POST (x18)",{"id":401,"type":402,"label":441,"file":138,"line":187,"wp_function":442},"get_results() [SQLi]","get_results",{"id":406,"type":398,"label":444,"file":138,"line":445},"$_POST (x6)",88,{"id":410,"type":402,"label":403,"file":138,"line":283,"wp_function":404},{"id":412,"type":398,"label":399,"file":138,"line":285},{"id":416,"type":402,"label":403,"file":138,"line":285,"wp_function":404},{"id":450,"type":398,"label":407,"file":138,"line":408},"n6",{"id":452,"type":402,"label":403,"file":138,"line":289,"wp_function":404},"n7",{"id":454,"type":398,"label":413,"file":138,"line":414},"n8",{"id":456,"type":402,"label":403,"file":138,"line":316,"wp_function":404},"n9",{"id":458,"type":398,"label":427,"file":138,"line":428},"n10",{"id":460,"type":402,"label":403,"file":138,"line":346,"wp_function":404},"n11",[462,463,464,465,466,467],{"from":397,"to":401,"sanitized":432},{"from":406,"to":410,"sanitized":432},{"from":412,"to":416,"sanitized":432},{"from":450,"to":452,"sanitized":432},{"from":454,"to":456,"sanitized":432},{"from":458,"to":460,"sanitized":432},{"entryPoint":469,"graph":470,"unsanitizedCount":13,"severity":433},"wpxlsdata_Admin_menue_add (inc\\menue.php:350)",{"nodes":471,"edges":476},[472,475],{"id":397,"type":398,"label":473,"file":142,"line":474},"$_POST",360,{"id":401,"type":402,"label":403,"file":142,"line":388,"wp_function":404},[477],{"from":397,"to":401,"sanitized":432},{"entryPoint":479,"graph":480,"unsanitizedCount":13,"severity":433},"\u003Cmenue> (inc\\menue.php:0)",{"nodes":481,"edges":494},[482,485,486,488,489,491,492,493],{"id":397,"type":398,"label":483,"file":142,"line":484},"$_POST (x2)",93,{"id":401,"type":402,"label":441,"file":142,"line":196,"wp_function":442},{"id":406,"type":398,"label":487,"file":142,"line":246},"$_GET['delete']",{"id":410,"type":402,"label":441,"file":142,"line":246,"wp_function":442},{"id":412,"type":398,"label":413,"file":142,"line":490},282,{"id":416,"type":402,"label":403,"file":142,"line":385,"wp_function":404},{"id":450,"type":398,"label":473,"file":142,"line":474},{"id":452,"type":402,"label":403,"file":142,"line":388,"wp_function":404},[495,496,497,498],{"from":397,"to":401,"sanitized":432},{"from":406,"to":410,"sanitized":432},{"from":412,"to":416,"sanitized":432},{"from":450,"to":452,"sanitized":432},{"entryPoint":500,"graph":501,"unsanitizedCount":48,"severity":508},"wp_ajax_edit_data_row (inc\\addmenue.php:20)",{"nodes":502,"edges":506},[503,505],{"id":397,"type":398,"label":504,"file":138,"line":257},"$_POST (x3)",{"id":401,"type":402,"label":441,"file":138,"line":187,"wp_function":442},[507],{"from":397,"to":401,"sanitized":156},"high",{"entryPoint":510,"graph":511,"unsanitizedCount":88,"severity":508},"wp_ajax_wpxlsdata_export (inc\\addmenue.php:82)",{"nodes":512,"edges":515},[513,514],{"id":397,"type":398,"label":483,"file":138,"line":445},{"id":401,"type":402,"label":441,"file":138,"line":194,"wp_function":442},[516],{"from":397,"to":401,"sanitized":156},{"entryPoint":518,"graph":519,"unsanitizedCount":88,"severity":508},"wp_ajax_wpxlsdata_import (inc\\menue.php:87)",{"nodes":520,"edges":523},[521,522],{"id":397,"type":398,"label":483,"file":142,"line":484},{"id":401,"type":402,"label":441,"file":142,"line":196,"wp_function":442},[524],{"from":397,"to":401,"sanitized":156},{"entryPoint":526,"graph":527,"unsanitizedCount":88,"severity":508},"wpxlsdata_Admin_all (inc\\menue.php:256)",{"nodes":528,"edges":533},[529,530,531,532],{"id":397,"type":398,"label":487,"file":142,"line":246},{"id":401,"type":402,"label":441,"file":142,"line":246,"wp_function":442},{"id":406,"type":398,"label":413,"file":142,"line":490},{"id":410,"type":402,"label":403,"file":142,"line":385,"wp_function":404},[534,535],{"from":397,"to":401,"sanitized":156},{"from":406,"to":410,"sanitized":156},{"summary":537,"deductions":538},"The wpxlsdata v1.2.0 plugin exhibits a concerning security posture primarily due to its significant number of unprotected AJAX handlers and a high percentage of unsanitized taint flows. While the plugin reports no known vulnerabilities and avoids dangerous functions, the presence of 5 AJAX handlers without authentication checks presents a substantial attack surface. The taint analysis revealing 4 high severity flows with unsanitized paths is a critical red flag, indicating potential for sensitive data exposure or malicious code injection through these pathways.  The high volume of SQL queries (46) with a low rate of prepared statements (7%) further exacerbates the risk, potentially leading to SQL injection vulnerabilities if not handled with extreme care.  Despite a 100% output escaping coverage, the fact that only 41% are properly escaped means a significant portion of output could be vulnerable to Cross-Site Scripting (XSS). The lack of known CVEs is positive, but it does not mitigate the inherent risks identified in the static and taint analysis.",[539,541,543,545],{"reason":540,"points":124},"AJAX handlers without authentication checks",{"reason":542,"points":158},"High severity taint flows with unsanitized paths",{"reason":544,"points":178},"Low percentage of prepared statements in SQL queries",{"reason":546,"points":180},"Low percentage of properly escaped output","2026-03-16T21:22:31.793Z",{"wat":549,"direct":558},{"assetPaths":550,"generatorPatterns":552,"scriptPaths":553,"versionParams":555},[551],"\u002Fwp-content\u002Fplugins\u002Fwpxlsdata\u002Fcss\u002Fstyle.css",[],[554],"\u002Fwp-content\u002Fplugins\u002Fwpxlsdata\u002Fjs\u002Fwpxlsdata.js",[556,557],"wpxlsdata\u002Fstyle.css?ver=","wpxlsdata\u002Fwpxlsdata.js?ver=",{"cssClasses":559,"htmlComments":560,"htmlAttributes":561,"restEndpoints":566,"jsGlobals":568,"shortcodeOutput":570},[],[],[562,563,564,565],"data-iddb","data-limit","data-isrow","data-rows",[567],"\u002Fwp-json\u002Fwpxlsdata\u002Fv1\u002Fitems",[4,569],"the_in_url",[571],"[wpxlsdata type=\"tabel\" iddb="]