File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ DBI::Changes - List of significant changes to the DBI
14
14
driver_prefix is not fulfilled (RT#93204) [Jens Rehsack]
15
15
Fixed redundant sprintf argument warning RT#97062 [Reini Urban]
16
16
17
+ Added security notice to DBD::Proxy and DBI::ProxyServer because they
18
+ use Storable which is insecure. Thanks to
[email protected] RT#90475
19
+
17
20
=head2 Changes in DBI 1.631 - 20th Jan 2014
18
21
19
22
NOTE: This release changes the handle passed to Callbacks from being an 'inner'
Original file line number Diff line number Diff line change @@ -973,6 +973,13 @@ The workaround is storing the modified local copy back to the server:
973
973
$dbh->{"csv_tables"} = $tables;
974
974
975
975
976
+ =head1 SECURITY WARNING
977
+
978
+ L<RPC::PlClient> used underneath is not secure due to serializing and
979
+ deserializing data with L<Storable> module. Use the proxy driver only in
980
+ trusted environment.
981
+
982
+
976
983
=head1 AUTHOR AND COPYRIGHT
977
984
978
985
This module is Copyright (c) 1997, 1998
Original file line number Diff line number Diff line change @@ -867,6 +867,13 @@ Don't try to put parameters into the sql-query like this:
867
867
=back
868
868
869
869
870
+ =head1 SECURITY WARNING
871
+
872
+ L<RPC::PlServer> used underneath is not secure due to serializing and
873
+ deserializing data with L<Storable> module. Use the proxy driver only in
874
+ trusted environment.
875
+
876
+
870
877
=head1 AUTHOR
871
878
872
879
Copyright (c) 1997 Jochen Wiedmann
You can’t perform that action at this time.
0 commit comments