Changeset 2342036
- Timestamp:
- 07/17/2020 06:05:51 AM (6 years ago)
- Location:
- powies-whois
- Files:
-
- 13 added
- 2 edited
-
tags/0.9.33 (added)
-
tags/0.9.33/languages (added)
-
tags/0.9.33/languages/powies-whois-de_DE.mo (added)
-
tags/0.9.33/languages/powies-whois-de_DE.po (added)
-
tags/0.9.33/languages/powies-whois-es_ES.mo (added)
-
tags/0.9.33/languages/powies-whois-es_ES.po (added)
-
tags/0.9.33/languages/powies-whois-ru_RU.mo (added)
-
tags/0.9.33/languages/powies-whois-ru_RU.po (added)
-
tags/0.9.33/languages/powies-whois.pot (added)
-
tags/0.9.33/powies-whois.php (added)
-
tags/0.9.33/pwhois.js (added)
-
tags/0.9.33/pwhois_settings.php (added)
-
tags/0.9.33/readme.txt (added)
-
trunk/powies-whois.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powies-whois/trunk/powies-whois.php
r2340976 r2342036 4 4 Plugin URI: https://powie.de/wordpress/whois/ 5 5 Description: Domain WHOIS Shortcode Plugin 6 Version: 0.9.3 26 Version: 0.9.33 7 7 License: GPLv2 8 8 Author: Thomas Ehrhardt … … 134 134 //Whois ausführen 135 135 $whois=new psWhois; 136 $result=$whois->lookup(trim($_POST['domain']).$_POST['tld'], $PWHOIS_SERVERS); 136 //sanitize 137 $tld = sanitize_text_field( $_POST['tld'] ); 138 $domain = sanitize_text_field( $_POST['domain'] ); 139 //check that domain is realy domainified 140 $dom = filter_var($domain.$tld, FILTER_VALIDATE_DOMAIN); 141 $result=$whois->lookup($dom, $PWHOIS_SERVERS); 137 142 //file_put_contents(WP_CONTENT_DIR."/logs/pwhois.log",$_POST['domain']."\n",FILE_APPEND ); 138 143 //testen -
powies-whois/trunk/readme.txt
r2340976 r2342036 5 5 Requires at least: 4.0 6 6 Tested up to: 5.4.2 7 Stable tag: 0.9.3 27 Stable tag: 0.9.33 8 8 License: GPLv2 9 9 … … 57 57 58 58 == Changelog == 59 = 0.9.32 (15.07.2020) =59 = 0.9.32 - 0.9.33 (15.07.2020) = 60 60 * Security Fix - https://wpvulndb.com/vulnerabilities/10300 61 61
Note: See TracChangeset
for help on using the changeset viewer.