Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

B.14. Security


Perl has a number of strong

security-related features that can make a
program written in Perl more secure than the corresponding program
written in C. Probably the most important of these is
data-flow
analysis, better known as taint
checking
. When this is enabled, Perl keeps
track of which pieces of data seem to have come from the user or
environment (and are therefore untrustworthy). Generally, if any such
piece of so-called "tainted" data is used to affect
another process, file, or directory, Perl will prohibit the operation
and abort the program. It''s not perfect, but it''s a
powerful way to prevent some security-related mistakes. There''s
more to the story; see the
perlsec manpage.

/ 875