<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>security Archives -</title>
	<atom:link href="https://mitindia.in/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/security/</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2017 11:16:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>security Archives -</title>
	<link>https://mitindia.in/tag/security/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Maintaining the Database</title>
		<link>https://mitindia.in/maintaining-the-database/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Fri, 30 Dec 2016 07:20:54 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[database management]]></category>
		<category><![CDATA[decryption]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[user level security]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=674</guid>

					<description><![CDATA[<p>Maintaining the Database [MS Access] Database Security is essential Security can be administered in the form of: -A database Password -User-Level Security Compacting a Database -Backing up a Database -Importing and Linking external data Database Password &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; -Simplest mode of securing a database. -Not very fool proof. -Database password to be used for opening database [&#8230;]</p>
<p>The post <a href="https://mitindia.in/maintaining-the-database/">Maintaining the Database</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><strong>Maintaining the Database [MS Access]</strong></h3>
<hr />
<p><img decoding="async" class="wp-image-675 alignright" src="http://www.mitindia.in/wp-content/uploads/2016/12/db-300x199.jpg" alt="Database Management" width="213" height="141" />Database Security is essential<br />
Security can be administered in the form of:<br />
<em>-A database Password </em><br />
<em>-User-Level Security</em></p>
<p><strong> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Co</strong><strong>mpacting a Database</strong><br />
-Backing up a Database<br />
-Importing and Linking external data</p>
<p><strong>Database Password</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
-Simplest mode of securing a database.<br />
-Not very fool proof.<br />
-Database password to be used for opening database and accessing data from it.</p>
<p><strong>Encryption</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
The encrypted database cannot be read by using any Disk Editors.<br />
Encrypting a database degrades its performance. The RDBMS takes care of ‘Decrypting’ the database.</p>
<p><strong>User Level Security</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
1. Read, Write, Delete and modify structure of tables<br />
2. Read, and Write<br />
3. Only Write</p>
<p><strong>Groups</strong><br />
&#8212;&#8212;&#8212;&#8211;<br />
Very useful when there are a number of people who are performing the same role.</p>
<p><strong>Assigning permissions</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
GRANT: Grants permissions to user.<br />
GRANT SELECT, INSERT ON OrderMaster TO john;</p>
<p>REVOKE: Revokes permissions from user.<br />
REVOKE INSERT ON OrderMaster FROM john;</p>
<p><strong>The Data Dictionary</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Data dictionary stores Meta data (data about data)<br />
Oracle maintains all this information in “System Tables”</p>
<p><strong>Workgroup Information File</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Also called ‘Workgroup’ or ‘System’ file<br />
This file is called System.mdw<br />
Stores Usernames, Passwords and the Groups to which each user belongs.<br />
Access reads this file at startup<br />
Access cant start if this file is lost or damaged<br />
Created by Access at installation time<br />
New WIF is created through WRKGADM .EXE utility</p>
<p><strong>Optimising Tables</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Tables need to be optimised to ensure that they operate efficiently.</p>
<p>1. Avoid Redundant Data<br />
2. Choose Appropriate Data Type<br />
3. Index Only When Necessary</p>
<p><strong>Compacting an Access Database</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
1. A database gets fragmented due to addition, modification and removal of data.<br />
2. Scattering of data is called fragmentation.<br />
3. Compacting rearranges the way data is stored on the disk.<br />
4. Reduces disk space occupied by database and Increases speed of data retrieval.</p>
<p><strong>Backing up</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1. Backup databases to prevent loss of data<br />
2. The workgroup information file also need to be backed up.<br />
3. Backups are typically maintained on devices like floppy zip or tape drive.<br />
4. Maintain a copy in a different location.</p>
<p><strong>Importing and Linking</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Importing creates a duplicate copy of the data in Access. Changes made to the imported data does not affect the original data.</p>
<p>Linking creates a reference to the master database in Access. Changes made to the linked data is reflected in the original data as well.</p>
<h3><strong><em>Conclusion</em></strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
1. Security is essential<br />
2. Access support different methods of security: Database password, Encryption and User level security.<br />
3. Access to database can be speeded up<br />
4. Database needs to be backed up from time to time<br />
5. External data can be linked or imported</h3>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&amp;linkname=Maintaining%20the%20Database" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&amp;linkname=Maintaining%20the%20Database" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&#038;title=Maintaining%20the%20Database" data-a2a-url="https://mitindia.in/maintaining-the-database/" data-a2a-title="Maintaining the Database"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/maintaining-the-database/">Maintaining the Database</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress site security</title>
		<link>https://mitindia.in/wordpress-site-security/</link>
					<comments>https://mitindia.in/wordpress-site-security/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 28 Jul 2016 05:43:09 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[prevent from hackers]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[site security]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=394</guid>

					<description><![CDATA[<p>How to prevent your WordPress site / blog from hackers? Now a days it become very common that websites are hacked by hackers / attackers with or without any reasons but how to prevent from such dangerous people? As a blogger, lot of patience is required to write post on their blogging site with using [&#8230;]</p>
<p>The post <a href="https://mitindia.in/wordpress-site-security/">WordPress site security</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><span style="color: #800080;">How to prevent your WordPress site / blog from hackers?</span></h3>
<p>Now a days it become very common that websites are hacked by hackers / attackers with or without any reasons but how to prevent from such dangerous people?</p>
<p>As a blogger, lot of patience is required to write post on their blogging site with using utmost skills in writing and arranging information in legible manner but what happens if somebody hacks your site? Of course it huge frustration and lot of anger. But having said that the world is having good people also to prevent such attacks and they are real programmer or real software engineer who works for the betterment of the society they live in and not like hackers, who always hide their face from society just like thieves.</p>
<h4><span style="color: #339966;">Now coming to real fact,</span></h4>
<p>To prevent your site from hackers or attackers you need to implement 2 step-authentication systems provided by <strong>Google Authenticator</strong> (an app on android / apple store) this app can be downloaded freely on your smart phone.</p>
<p><img fetchpriority="high" decoding="async" class="size-medium wp-image-395 alignnone" src="http://www.mitindia.in/wp-content/uploads/2016/07/Google-auth-300x211.jpg" alt="Google authentication " width="300" height="211" srcset="https://mitindia.in/wp-content/uploads/2016/07/Google-auth-300x211.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/Google-auth.jpg 463w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>Once the app is downloaded to your smart phone and do some basic settings like “Account name” and “Your key” and also select a random code to generate frequently based on “Time based” or “Counter based”. [you can also scan the QR code generated after clicking on &#8220;Create New Secret key&#8221;]</p>
<p><img decoding="async" class="alignnone size-full wp-image-396" src="http://www.mitindia.in/wp-content/uploads/2016/07/smartphone-key.jpg" alt="smartphone-key" width="197" height="291" /></p>
<p>After this step on your smart phone, now login to your WordPress site and download a plug-in called “Google Authenticator” as look like in the following screen shot.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-397" src="http://www.mitindia.in/wp-content/uploads/2016/07/plugin-300x143.jpg" alt="plugin" width="300" height="143" srcset="https://mitindia.in/wp-content/uploads/2016/07/plugin-300x143.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/plugin.jpg 362w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>After successful download, activate it. And go to “Users” then ”Your Profile” on wordpress dashboard and do the basic settings on Google Authenticator tab as following.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-398" src="http://www.mitindia.in/wp-content/uploads/2016/07/settings-300x190.jpg" alt="settings" width="300" height="190" srcset="https://mitindia.in/wp-content/uploads/2016/07/settings-300x190.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/settings.jpg 602w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p><strong>Now click on update.</strong></p>
<p>That’s all, when you login next time to your wordpress blog / site you’ll be prompted with 2step-verification (i.e. one is your user name and password and second is security key provided by your app on smart phone)</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-399" src="http://www.mitindia.in/wp-content/uploads/2016/07/wp-login-190x300.jpg" alt="wp-login" width="190" height="300" srcset="https://mitindia.in/wp-content/uploads/2016/07/wp-login-190x300.jpg 190w, https://mitindia.in/wp-content/uploads/2016/07/wp-login.jpg 218w" sizes="(max-width: 190px) 100vw, 190px" /></p>
<p>Now your site is protected with 2step verification so there is almost no chance of hacking your site by hackers because they require user name / password and your smart phone to generate the random key!</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&amp;linkname=WordPress%20site%20security" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&amp;linkname=WordPress%20site%20security" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&#038;title=WordPress%20site%20security" data-a2a-url="https://mitindia.in/wordpress-site-security/" data-a2a-title="WordPress site security"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/wordpress-site-security/">WordPress site security</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/wordpress-site-security/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
