Security
Security is the condition of being protected against danger or loss.
Language
Platform
Any
License
Any
: Is there a way to run the following command in perl and
: not have to type in my alias every time it's called?
:
: example:
: system (qq{scp ${send_file}
: ${user_name}\@${server}...
Hi,
I'm not quite sure what the problem is, but a few pointers...
: # just to test everything got through.
: print "...${valueone} and ${valuetwo}\n";
:
Does this line actually print what...
Is there a perl (or any other language) script that can use LDAP or Active Directory to authenticate users without promting them for a username and password? In other words can the script access the...
I guess with careful writing I could just use "require" on Perl scripts and SSI on static HTML pages....
Thanks for your response,
Jesse
: : When I output an SSI directive with perl script,...
: When I output an SSI directive with perl script, it isn't parsed. It
: this possible?
:
Not generally. Unless you capture the output of the script and process the directives yourself somehow....
: The redirect could also be done with PHP (or ASP) as well as the Javascript already mentioned. But you will need Javascript to test for invalid entries.
:
Having JavaScript to check for invalid...
Hi,
: I have a website and when I check the logs sometimes I see "Blocked
: By Norton" in the field that normally contains the referring URL.
: It seems to me that somehow Norton was able to...
Jonathan, thanks very much for your help and advice.
I have taken your warning and implemented a little bit more security into the script I have been working on.
I must say that your security...
: : Do you use alot of work arounds when you're using the tainted
: : data mode for the CGI scripting?
: Here's a shocker - I don't actually use taint mode! I do have my own library of security...
: Do you use alot of work arounds when you're using the tainted
: data mode for the CGI scripting?
Here's a shocker - I don't actually use taint mode! I do have my own library of security...
: This isn't meant to be a small war between perl and php (:-)),
: Although I recently heard this:
:
: 'As far as I know PHP has quite a bit less security issues than
: Perl. It's much faster...
This isn't meant to be a small war between perl and php (:-)), Although I recently heard this:
'As far as I know PHP has quite a bit less security issues than Perl. It's much faster to use for web...
Hey,
: This is is the request method that i wish to build basic HTTP
: authentication into:
:
: ....pretty well written Perl ;-)....
:
: The line with 'WWW-Authenticate: Basic...
"tcp") || die($!);
print($socket "GET $request HTTP\/1.0\nHost: $host\nWWW-Authenticate: Basic realm="user:passwd"\n\r\n\r");
while ($data = )
{
chomp($data);
if...
Add if possible an IP restriction too...
: : I would use ssh. You can export the public key (/homedir/on/serverA/.ssh/id_dsa.pub) without a password on generation to /homedir/of/user/...
: I would use ssh. You can export the public key (/homedir/on/serverA/.ssh/id_dsa.pub) without a password on generation to /homedir/of/user/.ssh/authorized_keys on Server B. Then You can run the...
: Hi,
:
: I need to make a perl script (not cgi) that checks via form based
: authentication, if a user name and/or password are valid. I have
: been messing about with it for some time but...
Hi,
I need to make a perl script (not cgi) that checks via form based authentication, if a user name and/or password are valid. I have been messing about with it for some time but seem to run...
: Hi,
: I am a newby concerning perl and have a problem by creating a directory wiht a perl script
:
: ------
: $test = "newDir";
: mkdir($test, 0700);
: ----
: On Linux it works fine.
:...
Hi,
I am a newby concerning perl and have a problem by creating a directory wiht a perl script
------
$test = "newDir";
mkdir($test, 0700);
----
On Linux it works fine.
How can I do this...