Sponsored Content
Special Forums Cybersecurity Antivirus Programm for Solaris Desktop Post 1996 by S.Vishwanath on Thursday 12th of April 2001 09:32:55 AM
Old 04-12-2001
Hello,

As such I know, I think that there can be no threat about the possible virus attack's for unix flavoured OS's. As there is lot of security check's that has to passed before tampring the System. Till know I have never come across, about virus attack & damage being caused on Unix flavoured OS's. Hence I hope u need not bother about Viruses attack's on Unix Flavoured Technologies OS's.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

antivirus for sun solaris

Hi All , Please i have mail server , sun solaries 7 .. and i want to protect the users mails from viruses . so i want to download an antivirus for this server to protect it against viruses . is there anything for FREEEEEEEE plzzzzz. (4 Replies)
Discussion started by: tamemi
4 Replies

2. UNIX for Dummies Questions & Answers

I'm looking for a 64-bit Desktop that will run Windows, Linspire, FreeBSD and Solaris

Ok, I've been shopping around and I've seen some nice one's, but they are either too expensive or they are not 64-bit; I want to be prepared for the future at the right price (under $3,000 with a decent configuration)! :D Where can I find a good 64-bit desktop or workstation that will run the... (0 Replies)
Discussion started by: Mr. Nice Guy
0 Replies

3. Shell Programming and Scripting

How to embeded programm within programm

Hi, How to embeded programme within perl programme. Shankarao (2 Replies)
Discussion started by: shankarao
2 Replies

4. UNIX for Dummies Questions & Answers

Solaris 6 Desktop Troubleshooting

Good Morning People, I wanted to help on users we have that apparently on their desktop their word wrap is automatic. I have looked on their openwin-menu and haven't found anything with word wrap. Would anybody know where to look to change a user's word wrap capability? Let me know, any... (0 Replies)
Discussion started by: Sarccastik Dude
0 Replies

5. UNIX for Advanced & Expert Users

Solaris 10 Desktop resolution

I have a problem with solaris 10 desktop resolution. My resolution is 1680x1050. I want to boot in troubleshooting mode to change this resolution for the root user. Or all users. What is the configuration script. ex: .dtconfig/Xconfig (3 Replies)
Discussion started by: simquest
3 Replies

6. Solaris

Is Unix/Solaris 10 ready for professional Desktop need?

There is little or no gaming available without the use of emulation or virtualization. There is no support for Xen in Solaris 10, you will have to Nevada to get that which also means no XP apps unless you can get them to run in Wine. It is unlikely that windows only hardware will be supported. (1 Reply)
Discussion started by: ezsurf
1 Replies

7. Solaris

How can I start Solaris without Graphical Desktop login?

Hi All, Any ideas on how to start Solaris 10 x86 without the Graphical Desktop login? I'm just interested in having the console login (text based) when starting Solaris. Thanks in advance, Daniel (4 Replies)
Discussion started by: danielsf
4 Replies

8. Solaris

How do I switch from CDE to Java Desktop in Solaris 10?

I am a newbie to Solaris/UNIX. I just installed Solaris 10 and accidentally chose CDE as my desktop instead of Java. How can I set Java Desktop as my desktop? Because before i installed my mechine is using java and more beauty from CDE.. (2 Replies)
Discussion started by: moslemovic
2 Replies

9. Solaris

Antivirus for Solaris 8

Hi- I am looking for a best open source antivirus software for solaris other than clamav. We have been using clamav but it doesnot work on old solaris 8 systems..compiling the clamav and installing it on old solaris 8 systems resulted in system crash.Our business don't have any plan for OS upgrade... (3 Replies)
Discussion started by: lakshmanknr
3 Replies

10. Solaris

How to install Solaris-desktop?

Hello, I am trying to install solaris desktop in solaris pkg install Solaris-desktop it say insufficient access to complete the required operation privileged user what does this mean? (14 Replies)
Discussion started by: Riteshkakkar
14 Replies
HASH_EQUALS(3)								 1							    HASH_EQUALS(3)

hash_equals - Timing attack safe string comparison

SYNOPSIS
bool hash_equals (string $known_string, string $user_string) DESCRIPTION
Compares two strings using the same time whether they're equal or not. This function should be used to mitigate timing attacks; for instance, when testing crypt(3) password hashes. PARAMETERS
o $known_string - The string of known length to compare against o $user_string - The user-supplied string RETURN VALUES
Returns TRUE when the two strings are equal, FALSE otherwise. ERRORS
/EXCEPTIONS Emits an E_WARNING message when either of the supplied parameters is not a string. EXAMPLES
Example #1 example <?php $expected = crypt('12345', '$2a$07$usesomesillystringforsalt$'); $correct = crypt('12345', '$2a$07$usesomesillystringforsalt$'); $incorrect = crypt('apple', '$2a$07$usesomesillystringforsalt$'); var_dump(hash_equals($expected, $correct)); var_dump(hash_equals($expected, $incorrect)); ?> The above example will output: bool(true) bool(false) NOTES
Note Both arguments must be of the same length to be compared successfully. When arguments of differing length are supplied, FALSE is returned immediately and the length of the known string may be leaked in case of a timing attack. Note It is important to provide the user-supplied string as the second parameter, rather than the first. PHP Documentation Group HASH_EQUALS(3)
All times are GMT -4. The time now is 09:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy