Powered by Blogger.

Total Pageviews

I m on Twitter!

Thursday, April 12, 2012

TrustPort Antivirus USB Edition 2012 12.0.0.4860



TrustPort Antivirus USB Edition is the mobile solution for the secure transmission of data on interchangeable memory media for example flash disks or memory cards. Prevents the copying of harmful code onto memory media, carries out antivirus tests on any host computer. Enables the encryption of files against unauthorized entry and offers the reliable shredding of private data which is no longer in use. This product provides on-access protection of the USB flash disk on which it is installed. It offers an on-demand scan of any host computer with a USB interface without the need of installing the software on the hard drive. TrustPort secures your computer from viruses, spyware, and other malicious software. Running automatically in the system background, it requires no expert knowledge from you. The antivirus uses powerful technology with two scanning motors. This technology shows one of the highest malware detection results in the world, nearing the magical boundary of one hundred percent.

Security for your data whenever and wherever:
• Antivirus and antispyware
• Permanent protection of media
• Scanning of any computer
• Data protection by encryption
• Reliable data shredding
• Automated updates
• Antivirus protection. As soon as the memory medium is connected to a given computer the resident protection is activated. This prevents the storing of harmful code on the given medium. So you don’t have to worry that while using a computer with an unknown level of security your USB flash disk or memory card will be infected.
• Scanning on demand. According to your needs you can launch a scan of the computer on which you are working with your portable memory media. In the event of harmful code being found, the file will be renamed, moved to quarantine or deleted depending on the settings.
• Proactive protection. Between the arrival of new harmful code and its classification in the virus database there is a critical period when the computer is most vulnerable. Fortunately this antivirus program is able to recognize a virus not only from the database but also on the basis of its structure and behaviour.
• Encrypted data. The program enables sensitive data to be stored in the encrypted archive of a USB flash disk or memory card in case of loss or theft. The creation and extraction of data from the archive, entry and deletion of files are all at your disposal in the form of the intuitive interface.
• Secure shredding. It is important to delete sensitive confidential data after it is no longer in use in a way that no one can reconstruct it. For this task the program offers secure shredding as the disused files are repeatedly overwritten with random data. You can choose from eight levels of security in shredding.
• Universal use. The program isn’t installed on the computer’s hard drive but on a separate memory medium. This medium can be for example a USB flash disk or a memory card in any format. It is just as easy to install the program on a U3 smart disk. This comprises a special version of the USB flash disk with its own administrator program used for the transfer of personal data and live applications.

What is new in TrustPort Antivirus 2012:
* Added new User Interface of Expert Settings.
* Added new User Interface of On-Demand Scanner.
* Application Inspector – sophisticated test of application at the level of sandboxing for monitoring application’s behavior and protection against unauthorized access and modification of the protected parts of the OS.
* Device Security – intuitive system of managing access to all removable devices.
* Volume Security – setting of protection against unauthorized access to selected user directories and discs.
* Autorun Protection – option to disable automatic launching of removable devices.
* Implemented option to generate Windows PE image with TrustPort Antivirus plugin.
* Added support for Bayesian dictionaries to e-mail clients, support for The Bat! e-mail client.
* Performance optimization for Internet Scanner.
* Added option to manually apply update packages (Offline Update).

Language Versions: English, Czech, Italian German, French, Spanish, Dutch.

Operating system: Windows 2000 (32 bit), Windows XP (32 bit, 64 bit), Windows Vista (32 bit, 64 bit), Windows 7 (32 bit, 64 bit).

Homepage – http://www.trustport.com/en/products/trustport-usb-antivirus

Size: 90.8 MB

Download Trial for USB

Download Trial for U3 smart drives

VHDL code for Even Parity Generator

library ieee;
use ieee.std_logic_1164.all;

entity bejoy_ep is
port(x,y,z:in std_logic;
p:out std_logic);
end bejoy_ep;

architecture a of bejoy_ep is
begin
p<=((x xor y) xnor z);
end a;

Symantec Endpoint Protection 12.1.1000.157



Endpoint Protection combines Symantec AntiVirus with advanced threat prevention to deliver unmatched defense against malware for laptops, desktops and servers. It seamlessly integrates essential security technologies in a single agent and management console, increasing protection and helping lower total cost of ownership. Symantec Endpoint Protection™ protects networked critical systems and remote and mobile users from unwanted network intrusions and hackers, as well as from viruses, Trojans, and worms. Centralized policy management and response capabilities ease the administrative burden and lower the cost of managing security at the network, mobile, and remote client level.
• Stops malware such as viruses, worms, Trojans, spyware, adware, bots, zero-day threats and rootkits.
• Prevents security outbreaks thus reducing administrative overhead.
• Lowers total cost of ownership for endpoint security.

Key Features:
• Provides unmatched protection from the market leader in endpoint security
• Seamlessly integrates antivirus protection, antispyware, firewall, intrusion prevention, device and application control
• Requires only a single agent
• Powerful central management of security on Windows and Macintosh endpoints
• Enables instant NAC upgrade without additional software deployment
• Antispyware and antivirus programs for and Macintosh and Linux clients
• Secures both physical and virtual environments

New Features:
• Single Agent and Single Console
Delivers a single agent for all Symantec Endpoint Protection technologies and Symantec Network Access Control. Delivers a single integrated interface for managing all Symantec Endpoint Protection technologies and Symantec Network Access Control. All allow for a single communication method and content delivery system across all technologies.
* Provides operational efficiencies such as single software updates, single policy updates.
* Provides unified and central reporting.
* Provides unified licensing and maintenance.
* Requires no change to the client when adding Symantec Network Access Control enforcement.
* Lowers Total Cost of Ownership for endpoint security.
* Reduces administrative effort.

• Proactive Threat Scanning
Behavioral-based protection that protects against zero-day threats and threats not seen before. Unlike other heuristic-based technologies, Proactive Threat Scan scores both the good and bad behavior of unknown applications, providing a more accurate malware detection.
* Accurately detects malware without the need to set up rule-based configurations.
* Helps lower the number of false positives.

• Advanced Rootkit Detection and Removal
Provides superior rootkit detection and removal by integrating VxMS (Veritas Mapping Service—a Veritas technology), thereby providing access below the operating system to allow thorough analysis and repair.
* Detects and removes the most difficult rootkits.
* Saves time and money and productivity lossses associated with re-imaging infected machines.


• Application Control
Allows administrators to control access to specific processes, files, and folders by users and other applications. It provides application analysis, process control, file and registry access control, and module and DLL control. It enables administrators to restrict certain activities deemed as suspicious or high risk.
* Prevents malware from spreading or harming endpoints.
* Locks down endpoints to prevent data leakage.

• Device Control
Controls which peripherals can be connected to a machine and how the peripherals are used. It locks down an endpoints to prevent connections from thumb drives, CD burners, printers, and other USB devices.
* Prevents sensitive and confidential data from being extracted or stolen from endpoints (data leakage).
* Prevents endpoints from being infected by viruses spread from peripheral devices.

Homepage – http://www.symantec.com/business/endpoint-protection

Size: 1440 MB

Download 

VHDL code for Half Subtractor

library ieee;
use ieee.std_logic_1164.all;

entity bejoy_hs is
port (x,y,en : in bit ;
d,b : out bit; y1: inout bit);
end bejoy_hs;

architecture arc of bejoy_hs is
begin
process (en,y1)
begin
if en='1' then
d<= x xor y;
y1<= not (y);
b <= x and y1;
end if;
end process;
end arc;

BitDefender Internet Security 2012 Build 15.0.38.1604



BitDefender Internet Security provides enhanced silent security with the latest protection against Web-based attacks, faster performance for secure online gaming, and unrivaled parental controls. It locks out viruses, hackers & spam, while providing parental control and firewall protection. Bitdefender capitalizes on live and virtualized behavior-based detection, in addition to cloud-based services, to stop emerging e-threats that other products miss. BitDefender Internet Security features antivirus, firewall, antispyware, privacy control and parental control for corporate and home users. It provides comprehensive proactive protection from viruses, hackers, spyware, spam and phishing emails, and it also protects children from inappropriate websites. Bitdefender Internet Security 2012 integrates antivirus, antispam, antiphising, firewall, parental controls, and social networking safeguards into the perfect silent security solution for Internet-connected families!

The Autopilot provides a hassle-free experience by making optimal security-related decisions without input from you. This means no pop-ups, no alerts, nothing to configure.

Key-Features:
• Blocks viruses, spyware & spam
• Halts ID theft attempts
• Filters the links you receive from your Facebook and Twitter friends
• Keeps kids safe with cutting-edge parental controls
• Firewall to guard your Internet connection

FEATURES:
Unparalleled Security. Bitdefender capitalizes on live and virtualized behavior-based detection, in addition to cloud-based services, to stop emerging e-threats that other products miss.
• Active Virus Control – Monitors processes behavior while they are running to detect new & unknown viruses
• Rescue mode – Reboots your computer in a trusted environment, which is used for cleanup and restoration
• Virtualized Browser – Isolates the browser from the operating system in a Bitdefender-provided environment to block web-based threats
• Vulnerability Scanner – Checks for missing or outdated security software as well as potentially unsafe system settings
• Antispam – Stops unwanted e-mail from reaching your Inbox
• Two-way Firewall – Monitors your Internet connections and keeps strangers from accessing your Wi-Fi connection
• Parental Control – Blocks inappropriate content, restricts Web access between certain hours, and helps parents remotely monitor their children’s online activity
Absolute Silence. Bitdefender’s Autopilot makes all the security-related decisions for you!
• Autopilot – Provides a hassle-free experience by making optimal security-related decisions without input from you

Worry-free Socializing. Protect yourself, and your friends, from e-threats that attempt to exploit the trust you’ve built with them.
• Social Network Protection – Filters the links you receive from your Facebook and Twitter friends and monitors your privacy settings
• Search Advisor – Gives advance warning of risky websites right in your Google and Bing search results

Total Privacy. Bitdefender protects your privacy and personal data with a range of specialized modules and functions.
• Personal Data Filter – Prevents critical data, such as your social security number, from ever leaving your computer
• Antiphising – Blocks websites supporting various scams or credit card phishing attempts
• Chat Encryption – Keeps your conversations private on Yahoo! and MSN Messenger

Full Speed. Bitdefender 2012 takes “scheduled scanning” to a whole new level, as the scanning only takes place when your system is idle.
• Scan Dispatcher – Triggers system scans when resource usage falls below a certain threshold to avoid any impact on your system’s performance

Homepage – http://www.bitdefender.com

Size: 229 MB

Download BitDefender Internet Security 2012 x86

Download BitDefender Internet Security 2012 x64

Serial BitDefender Internet Security 2012 Build 15.0.38.1604

AJJTD26



7L3SUSC
VPDKBHS
XYV4K3E
CQNKUYJ
A3G6QBB
IDA7CUC
GHKPKRR
QB0CJQY
43LSRHT

Wednesday, April 11, 2012

VHDL code for 4x1 Multiplexer using structural style

library IEEE;
use IEEE.std_logic_1164.all;

entity bejoy_4x1 is
port(s1,s2,d00,d01,d10,d11 : in std_logic;
z_out : out std_logic);
end bejoy_4x1;

architecture arc of bejoy_4x1 is

component mux
port(sx1,sx2,d0,d1 : in std_logic;
z : out std_logic);
end component;

component or_2
port(a,b : in std_logic;
c : out std_logic);
end component;

signal intr1, intr2, intr3, intr4 : std_logic;
begin
mux1 : mux port map(s1,s2,d00,d01,intr1);
mux2 : mux port map(not s1,s2, d10,d11,intr2);
o1 : or_2 port map(intr1, intr2, z_out);
end arc;

library ieee;
use ieee.std_logic_1164.all;

entity mux is
port(sx1,sx2,d0,d1 :in std_logic;
z1,z2: inout std_logic;
z: out std_logic);
end mux;

architecture arc of mux is
begin
z1 <= d0 and (not sx1) and (not sx2);
z2 <= (d1 and (not sx1) and sx2);
z<= z1 or z2;
end arc;

entity or_2 is
port(a,b : in bit;
c : out bit);
end or_2;
architecture arc of or_2 is
begin
c<=a or b;
end arc;

Rising PC Doctor 6.0.5.16



Rising PC Doctor, professional and smart security tool to computer users. With its seven key functions of automatic malware analysis, immunization of USB storage devices, ability  to  repair Microsoft Internet Explorer & Windows, Trojan Behavior Detector & Blocker, protection against malicious websites, Internet Explorer protection and Trojan Download blocker, Rising PC Doctor will greatly enhance your protection against malware and cyberthreats.

Trojan Behavior Detector & Blocker
Rising PC Doctor can detect the majority of Trojans and a even great number of other malware upon startup before they can execute their malicious function. This function will significantly increase your protection from cyber threats.

Trojan Download Blocker
After successful infection, many viruses automatically start to download large numbers of Trojans and other malware. The Trojan blocking technology of Rising PC Doctor ensures that even an infected computer will not download any other viruses and stop the spreading of whole families of Trojans.

Automatic Malware Analysis
AT boot, Rising PC Doctor can automatically scan for potentially unknown malware. When permitted by the user, possible malware is automatically transferred to Rising’s Automated Malware Analyzer (RsAMA) for detailed analysis. The user is informed about the result of the analysis and can quickly react to new threats for which conventional protection is not yet available. Analysis metadata collected by the community of Rising users (Rising Cloud Security) will be stored in the Rising Security Database (RsSD), providing up-to-date information about cyber security.

Main Functions:
1. Completely Redesigned Vulnerability Scan. The completely redesigned Vulnerability Scan of Rising PC Doctor can detect vulnerabilities in Microsoft Windows, its security settings and third party software from many manufacturers. With the easy to use interface, even inexperienced users can handle potential vulnerabilities in the operational system and a lot of other major software applications.
2. Strong Ability to Repair Microsoft Internet Explorer & Windows. Rising PC Doctor can fix the Internet Explorer on many computers whose homepage has been changed by malware, which are permanently displaying adware or which are plagued by many other problems. On such computers, Rising PC Doctor can help you to repair the system registry, system settings and the host file.
3. Powerful Process and Startup Management. This function gives you better control over drivers, programs loaded at boot, Active X controls and other important software influencing the operation of your computer.
4. Advanced Tools for Experienced Users. Rising PC Doctor provides additional tools for experienced computer users such as Disk Cleanup, System Startup Management, Service Management, Network Application Management, LSP Repair, File Shredder, and Special Virus Removal Tools which are designed to eliminate only a limited number of viruses.

Other Functions:
1. Spyware Scan & Removal. Rising PC Doctor can detect and completely remove many kinds of especially obnoxious spyware from your computer.
2. Strong Protection against Current Trojans. Rising PC Doctor detects and destroys millions of current Trojans designed to steal valuable user information such as online gaming or online banking accounts.
3. Privacy Protection. Rising PC Doctor protects your privacy. With Rising PC Doctor, even inexperienced users can conveniently delete potentially sensitive information such as browser and media player history or the list of last files opened under Microsoft Office.

Support System: Windows 2000/XP/2003/Vista

Homepage – http://www.rising-global.com/products/rising-pc-doctor.html

Size: 9.07 MB

Download Freeware

Kaspersky Anti-Virus 2013 13.0.0.3011 Technical Preview





Kaspersky Anti-Virus 2013 – the backbone of your PC’s security system, offering protection from a range of IT threats. Kaspersky Anti-Virus 2013 provides the basic tools needed to protect your PC.
Kaspersky Internet Security 2013 – the all-in-one security solution that offers a worry-free computing environment for you and your family. Kaspersky Internet Security 2013 has everything you need for a safe and secure Internet experience. Kaspersky Internet Security 13.0 – is a new line of Kaspersky Labs products, which is designed for the multi-tiered protection of personal computers. This product is based on in-house protection components, which are based on variety of technologies for maximum levels of user protection regardless of technical competencies. This product utilizes several technologies, which were jointly developed by Kaspersky Labs and other companies; part of them is implemented via online-services. Our products for home and home office are specifically designed to provide hassle-free and quality protection against viruses, worms and other malicious programs, as well as hacker attacks, spam and spyware.
During product preparation several competitor offerings were considered and analyzed – firewalls, security suites systems, which position themselves as proactive in defence and HIPS systems. Combination of in-hosue innovative developments and results from analysis gathered through the industry allowed to jump onto a new level of protection for personal users, whereby offering even more hardened and less annoying computer protection from all types of electronic threats – malicious programs of different types, hacker attacks, spam mailings, program-root kits, phishing emails, advertisement popup windows etc.

Kaspersky Internet Security All Features:
Essential Protection:
* Protects from viruses, Trojans and worms
* Blocks spyware and adware
* Scans files in real time (on access) and on demand
* Scans email messages (regardless of email client)
* Scans Internet traffic (regardless of browser)
* Protects instant messengers (ICQ, MSN)
* Provides proactive protection from unknown threats
* Scans Java and Visual Basic scripts
Extended Protection:
* Two-way personal firewall
* Safe Wi-Fi and VPN connections
* Intrusion prevention system
* Intelligent application management and control
o automatically configured application rules
o security rating is assigned to unknown applications
o access to the user’s resources and data is restricted for unknown applications
Preventive Protection:
* Scans operating system and installed applications for vulnerabilities
* Analyzes and closes Internet Explorer vulnerabilities
* Disables links to malware sites
* Detects viruses based on the packers used to compress code
* Global threat monitoring (Kaspersky Security Network)
Advanced Protection & Recovery:
* The program can be installed on infected computers
* Self-protection from being disabled or stopped
* Restores correct system settings after removing malicious software
* Tools for creating a rescue disk
Data & Identity Theft Protection:
* Disables links to fake (phishing) websites
* Blocks all types of keyloggers
* Virtual keyboard is provided for safely entering logins and passwords
* Prevents the theft of data exchanged via secure connections (HTTPS / SSL)
* Blocks unauthorized dial-up connections
* Cleans up any traces of user activity (deletes temporary files, cookies etc.)
Content Filtering:
* Parental control
* Improved antispam protection (plugins for Microsoft Outlook, Microsoft Outlook Express, The Bat!, Thunderbird)
* Blocks banners on web pages
Usability:
* Automatic configuration during installation
* Wizards for common tasks
* Visual reports with charts and diagrams
* Alerts provide all the information necessary for informed user decisions
* Automatic or interactive mode
* Round-the-clock technical support
* Automatic database updates

Homepage – http://www.kaspersky.com

Size: 146 MB

Download Kaspersky Anti-Virus 2013 Beta

Serial Kaspersky Internet Security 2013 Beta

VHDL code for Basic Gates

AND Gate

library ieee;

use ieee.std_logic_1164.all;

entity and_gate is

port (a,b : in std_logic ;

c : out std_logic);

end and_gate;

architecture arc of and_gate is

begin

c <= a and b; end arc;


OR Gate


library ieee;

use ieee.std_logic_1164.all;

entity or_gate is

port (a,b : in std_logic ;

c : out std_logic);

end or_gate;

architecture arc of or_gate is

begin

c <= a or b; end arc;



NOT Gate


library ieee;

use ieee.std_logic_1164.all;

entity not_gate is

port (a: in std_logic ;

b : out std_logic);

end not_gate;

architecture arc of not_gate is

begin

b <= not a; end arc;


NAND Gate


library ieee;

use ieee.std_logic_1164.all;

entity nand_gate is

port (a,b : in std_logic ;

c : out std_logic);

end nand_gate;

architecture arc of nand_gate is

begin

c <= a or b; end arc;


NOR Gate


library ieee;

use ieee.std_logic_1164.all;

entity nor_gate is

port (a,b : in std_logic ;

c : out std_logic);

end nor_gate;

architecture arc of nor_gate is

begin

c <= a nor b; end arc;


XOR Gate


library ieee;

use ieee.std_logic_1164.all;

entity xor_gate is

port (a,b : in std_logic ;

c : out std_logic);

end xor_gate;

architecture arc of xor_gate is

begin

c <= a xor b;

end arc;

Privatefirewall 7.0.27.1




Privatefirewall multi-layered endpoint security software protects Windows desktops and servers from malware and unauthorized use. Personal firewall, packet inspection, URL filtering, process monitor, and application/system behavior modeling and anomaly detection components  stop hackers, spyware, viruses and other forms of malware before they can cause damage. Privatefirewall detects, blocks and quarantines activity characteristic of known malware, hacking, phishing and other threat types so that personal computer users and IT managers within small, medium or large organizations can more effectively and proactively protect the environments and private data for which they are responsible. You’ll realize expanded protection and become educated about the nature of activity – trusted and un-trusted – that occurs on your system. An exceptionally simple user interface makes Privatefirewall a breeze to manage. An exceptionally simple user interface makes Privatefirewall a breeze to manage.

Privatefirewall features signature-less, behavior-based anti-malware and desktop defense capabilities comprised of several distinct technology layers designed to block or mitigate the damage caused by intrusion, virus and other malware attacks. Beyond unparalleled personal firewall protection, Privatefirewall includes the following layers of proactive, behavior-based defense technology:
• Application Monitor/Manager
• Registry Monitor
• Process Monitor/Manager
• Email Anomaly Analyzer/Manager
• System Anomaly Analyzer
Privatefirewall also detects malware and intrusions based on behaviors characteristic of unauthorized system use.
Some of these include:
• Attempts to access a protected registry area
• Attempts to access a protected object
• Attempts to Initiate a foreign process
• Attempts to control Windows service
• Attempts to create a DNS request
• Attempts to initiate outgoing TCP traffic

Proactive, Multi-Layered Defense:
• NEW! Complete Windows 7 (RTM) and Vista Support – Certified compatible with all versions of Vista (32 and 64 bit).
• Advanced packet filtering – Proprietary stateful packet inspection technology monitors all communication between the PC and the Internet and detects and blocks all unauthorized traffic. Privatefirewall allows the simple adjustment of security levels (High/Low/Custom) to establish different degrees of security for Internet and Local Network access.
• Ultimate Application Control – Highly configurable Application Control Console enables you to specify which and precisely how applications can access the Internet.
• Process Detection – Prevents viruses, trojans, worms and other malware by tracking all trusted processes and providing alerts when any potentially malicious process attempts to run.
• System Anomaly Detection – System Anomaly Detection Engine baselines normal usage based on system variables such as CPU utilization, thread count, and others.  Normal use patterns of running applications are monitored and alerts are generated as unusual activity is detected.
• Intelligent Tray Alerts – Compact, user-friendly tray alerts provide detailed information regarding security events, offer native web search for convenient investigation, and pre-set intelligent “time-out” responses.
• Stealth Mode – PC is invisible when online and stealth to potential intruders.
• Port Tracking and Reporting – All ports are monitored to prohibit unauthorized scanning and system intrusion. Detailed reports are generated on all port scan and other reconnaissance attempts in addition to instantaneous on-screen alerts.
• Email Anomaly Detection – Privatefirewall mitigates the impact of attacks targeting email clients by tracking the volume and frequency of outbound emails. Privatefirewall alerts you and blocks unacceptable deviations from normal email activity.
Application Control and Firewall Policy Management:
• Monitor all traffic to and from your PC and prevent trusted applications from being “Hi-Jacked” to steal local or network-accessible files.
• The Process Monitor adds an important layer of defense to conventional firewall protection by identifying process-level behavior characteristics of intrusion techniques and malware activity.
• Control which applications can access the Internet, and whether to permit/block every application with each usage or make permissions permanent. Specific IPs and/or Websites can be blocked or allowed access.
• Define application specific or global packet filtering rules that can be applied to incoming, outgoing or bi-directional traffic.
• View or create advanced firewall reports sorted by Web, Mail, or System access attempts spanning Hours, Days, Weeks, or customized time periods.

Unmatched Ease of Use:
• Privatefirewall’s security presets deliver superior PC protection immediately upon installation. Setup and configuration are fully automatic right out of the box.
• One-click configuration of pre-defined security settings for Home, Office, and Remote profiles eliminate complicated application tuning.
• Privatefirewall conveniently detects connections to local networks and automatically sets rules that allow access within that network.
• A variety of custom configuration interfaces are easily accessible for advanced users.
• Privatefirewall is fully integrated with Windows XP Security Center.

Homepage – http://www.privacyware.com/personal_firewall.html

Size: 3.56 MB

Download Free

Ads By Sponsers