<?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>hacking Archives - ITBlogSec.com</title>
	<atom:link href="https://itblogsec.com/tag/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>https://itblogsec.com/tag/hacking/</link>
	<description>IT, network, security and hacking</description>
	<lastBuildDate>Thu, 14 Jan 2021 22:38:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
	<item>
		<title>How to install Fail2Ban on the Raspberry Pi/Unix server</title>
		<link>https://itblogsec.com/how-to-install-fail2ban-on-the-raspberry-pi-unix-server/</link>
					<comments>https://itblogsec.com/how-to-install-fail2ban-on-the-raspberry-pi-unix-server/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 14 Jan 2021 22:19:36 +0000</pubDate>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[rasberry pi]]></category>
		<guid isPermaLink="false">https://itblogsec.com/?p=1335</guid>

					<description><![CDATA[<p>By opening ports from the Internet to your raspberry pi (ssh, http, ftp, https etc.), you are automatically becoming a victim of many hacker's attempts. Hackers are seeking exploits and trying to get access to your server. To protect you against such attacks, there is a tool called Fail2Ban. It supports a lot of services (sshd, apache, qmail, proftpd etc.) and can be integrated directly with your IPTables. By this tutorial, we will guide you via the whole process of how to protect against such attacks.   </p>
<p>The post <a href="https://itblogsec.com/how-to-install-fail2ban-on-the-raspberry-pi-unix-server/">How to install Fail2Ban on the Raspberry Pi/Unix server</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>How to install Fail2Ban on the Raspberry Pi/Unix server</h3>
<p style="text-align: justify;">By <strong>opening ports from the Internet</strong> to your raspberry pi <strong>(ssh, http, ftp, https etc.)</strong>, you are automatically becoming a <strong>victim</strong> of many <strong>hacker&#8217;s attempts</strong>. Hackers are seeking <strong>exploits</strong> and trying <strong>to get access to your server.</strong> To protect you against such attacks, there is a <strong>tool called Fail2Ban</strong>. It supports a lot of services (sshd, apache, qmail, proftpd etc.) and can be integrated directly with your <strong>IPTables</strong>. By this tutorial, we will guide you via the whole process of how to protect against such attacks.   </p>
<h5 style="text-align: justify;">Who is trying to access my raspberry pi?</h5>
<p style="text-align: justify;">If you think that your raspberry pi is safe and you do not need any tool to be installed, please <strong>check the content</strong> of the following <strong>file</strong>:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">cat /var/log/auth.log | grep 'Failed'</pre>
<p><a href="https://itblogsec.com/wp-content/uploads/2021/01/Pictures.png"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-1346" src="https://itblogsec.com/wp-content/uploads/2021/01/Pictures.png" alt="" width="843" height="189" srcset="https://itblogsec.com/wp-content/uploads/2021/01/Pictures.png 843w, https://itblogsec.com/wp-content/uploads/2021/01/Pictures-300x67.png 300w, https://itblogsec.com/wp-content/uploads/2021/01/Pictures-768x172.png 768w, https://itblogsec.com/wp-content/uploads/2021/01/Pictures-585x131.png 585w" sizes="(max-width: 843px) 100vw, 843px" /></a></p>
<p style="text-align: justify;">As you can observe above, there are <strong>many password failures</strong>. Usually, the hacker bots are <strong>seeking exploits</strong>.  Each attempt <strong>consumes resources</strong> as your raspberry pi needs to evaluate each request. It is known as DoS attack. </p>
<p style="text-align: justify;">Hackers can try also a <b>brute-force attack. </b> Such an attack consists of an attacker submitting many passwords or passphrases with the hope of eventually <strong>guessing a combination correctly</strong>. The attacker <strong>systematically</strong> <strong>checks</strong> all <strong>possible passwords</strong> and passphrases until the correct one is found. </p>
<h5 style="text-align: justify;">What is Fail2Ban and how does it work?</h5>
<p style="text-align: justify;">Fail2Ban is a <strong>daemon</strong> that <strong>scans access log files</strong> and it bans IP addresses that <strong>show malicious signs</strong>. It <strong>protects</strong> you <strong>against</strong> <strong>too many password failures</strong> as shown above. </p>
<p style="text-align: justify;">It is a <strong>must have tool</strong> to <strong>protect</strong> your <strong>from intruders</strong> to your server or network <strong>especially</strong> if you allow <strong>outside SSH</strong> traffic or any traffics from an outside network to your Raspberry Pi. Fail2Ban tool <strong>supports many different services</strong> <strong>(sshd, apache, qmail, proftpd, sasl, asterisk, etc) </strong>and can be <strong>integrated</strong> with your <strong>IPTables</strong>.</p>
<p style="text-align: justify;"><strong>Installation</strong> of Fail2Ban is very <strong>easy</strong> to install and basic setup <strong>will drastically improve security</strong> on your Raspberry Pi. Fail2Ban works by <strong>checking your access logs for failures</strong> and depending on the settings you setup, <strong>it will ban</strong> or timeout an IP Address for a certain amount of time. Fail2Ban tool can easily protect your raspberry pi against very known brute-force and DoS attacks.</p>
<h5 style="text-align: justify;">How can I protect myself?</h5>
<p style="text-align: justify;">Very easy, by installing of Fail2Ban on your raspberry pi. We will first <strong>install Fail2Ban</strong> by typing the following commands:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">sudo apt-get update
sudo apt-get install fail2ban</pre>
<p style="text-align: justify;">By doing that, you have Fail2Ban already installed. The <strong>configuration file</strong> is located at <strong>&#8216;/etc/fail2ban/jail.local&#8217;</strong>. If you want to change some parameters, you can simply <strong>modify this file</strong> and <strong>restart the service</strong> to take immediate effect.</p>
<p style="text-align: justify;">Let&#8217;s edit our SSH Fail2Ban configurations. Open up the &#8216;/etc/fail2ban/jail.local&#8217; file with the following command:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">sudo nano /etc/fail2ban/jail.local</pre>
<p style="text-align: justify;">Your <strong>jail.local file should already contain</strong> some <strong>pre-defined config.</strong> We will need to tweak it a little bit. Find a section in the file called <strong>[sshd]</strong> and paste/modify accordingly:</p>
<div id="crayon-5fdbb26ace0f1756477449-1" class="crayon-line">
<div id="crayon-5fdbb26ace0f1756477449-1" class="crayon-line">
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">[sshd]

enabled = true
filter = sshd
port = ssh
logpath = /var/log/auth.log
bantime = 86400
banaction = iptables-allports
findtime = 900
maxretry = 3
backend = %(sshd_backend)s</pre>
<p style="text-align: justify;">After pasting the settings hit CTRL+X and then Y to save the configuration file. Below is what each line in the configuration means and what you can edit:</p>
<p style="text-align: justify;"><strong><em>enabled</em></strong>: Determines whether or not the filter is turned on.</p>
<p style="text-align: justify;"><em><strong>filter</strong></em>: The name of the file located in ‘/etc/fail2ban/filter.d’ that contains the failregex information used to parse log files appropriately.</p>
<p style="text-align: justify;"><em><strong>port</strong></em>: The port Fail2Ban should be referencing in regards to the service. If using the default port, then the service name can be placed here. If you changed your SSH port to something else you would need to write the new port number here.</p>
<p style="text-align: justify;"><em><strong>logpath</strong></em>: The path to your log file.</p>
<p style="text-align: justify;"><em><strong>bantime</strong></em>: The length of time in seconds that the IP Address will be banned for. In my example I used ‘86400’ seconds which would be 24 hours. If you want to ban an IP Address permanently then you will set the <em><strong>bantime</strong></em> to ‘-1’.</p>
<p style="text-align: justify;"><em><strong>banaction</strong></em>: The action to take when banning an IP Address.</p>
<p style="text-align: justify;"><em><strong>findtime</strong></em>: The length of time between login attempts before a ban is set. For example, if Fail2Ban is set to ban an IP after three failed log-in attempts, those three attempts must occur within the set <em><strong>findtime</strong></em> limit. The <em><strong>findtime</strong></em> value should be a set number of seconds.</p>
<p style="text-align: justify;"><em><strong>maxretry</strong></em>: How many attempts can be made to access the server from a single IP before a ban is imposed.</p>
<p style="text-align: justify;">After modification of the configuration file, you need to restart the service to take changes affect:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">sudo service fail2ban restart</pre>
<p style="text-align: justify;">After the restart of service, <strong>your raspberry pi is already protected</strong> and all <strong>DoS</strong> or <strong>brute-force attempts</strong> will be <strong>banned</strong>. The list of all <strong>banned IPs</strong> is <strong>cleared</strong> upon<strong> restarting Fail2Ban</strong> or <strong>rebooting</strong> the <strong>server</strong>. If you manage to ban yourself, you can simply reboot the server or use the command below:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">sudo fail2ban-client set sshd unbanip &lt;IP-YOU-WANT-TO-UNBAN&gt;</pre>
<p style="text-align: justify;">You can <strong>check</strong> your <strong>IPTables</strong> <strong>list</strong> with the following command to see <strong>all your banned IP</strong> addresses:</p>
</div>
<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="godzilla">sudo iptables -L -n --line</pre>
<p><span style="font-size: 8pt;"><strong>source:</strong> <a href="https://en.wikipedia.org/wiki/Brute-force_attack" target="_blank" rel="noopener">https://en.wikipedia.org/wiki/Brute-force_attack</a>, <a href="https://www.fail2ban.org/wiki/index.php/Main_Page" target="_blank" rel="noopener">https://www.fail2ban.org/wiki/index.php/Main_Page</a></span></p>
</div>
<p>The post <a href="https://itblogsec.com/how-to-install-fail2ban-on-the-raspberry-pi-unix-server/">How to install Fail2Ban on the Raspberry Pi/Unix server</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/how-to-install-fail2ban-on-the-raspberry-pi-unix-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hacking for beginners #1 &#8211; Install the Kali Linux</title>
		<link>https://itblogsec.com/hacking-for-beginners-1-install-the-kali-linux/</link>
					<comments>https://itblogsec.com/hacking-for-beginners-1-install-the-kali-linux/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 05 May 2020 08:33:06 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[kali linux]]></category>
		<guid isPermaLink="false">https://itblogsec.com/?p=1240</guid>

					<description><![CDATA[<p>In this tutorial series called Hacking for beginners, we are going to teach you how to use the most powerful open-source Linux system called Kali Linux. This tutorial gives a complete understanding of Kali Linux and explains how to use it in practice for various hacker activities. We are focusing on step-by-step guidelines with the best explanation so even beginners and hacking dummies can understand  and follow it.</p>
<p>The post <a href="https://itblogsec.com/hacking-for-beginners-1-install-the-kali-linux/">Hacking for beginners #1 &#8211; Install the Kali Linux</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">In this tutorial series called <strong>Hacking for beginners</strong>, we are going to teach you how to use the most <strong>powerful open-source Linux system</strong> called <strong><a href="https://www.kali.org" target="_blank" rel="noopener noreferrer">Kali Linux</a>. </strong>This tutorial gives a <strong>complete</strong> <strong>understanding</strong> of <strong>Kali Linux</strong> and explains how to use it <strong>in practice for various hacker activities</strong>. We are focusing on step-by-step guidelines with the best explanation so even beginners and hacking dummies can understand  and follow it. Be polite, be ethical and use it only for education purposes! <strong>Enjoy and stay tuned for the next episodes <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </strong></p>
<h3 style="text-align: justify;">What you can learn </h3>
<p style="text-align: justify;">If you want to start with hacking, first you need <strong>to have some hacking tools available</strong>. The best option for that purpose is using Kali Linux what is linux distribution specially designed to be used for hacking activities. As the part of our hacking tutorials for beginners, we are starting with the <strong>#1</strong> where you can find exact steps <strong>how to install Kali linux on MacOS using Parallels Desktop or Virtual Box</strong>. Of course, you can use <strong>any virtualization platform</strong> you want, even there is ARM Kali Linux image available for <a href="https://itblogsec.com/build-own-openvpn-server-by-using-raspberry-pi-12/" target="_blank" rel="noopener noreferrer"><strong>rapsbperry PI</strong></a>, you can download it <a href="https://www.offensive-security.com/kali-linux-arm-images/" target="_blank" rel="noopener noreferrer">here</a>. </p>
<h3 style="text-align: justify;"><strong>1: Download kali linux image</strong></h3>
<p><strong>&#8211; use official webpage https://www.kali.org/downloads/</strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-13.42.16.png"><img decoding="async" class="aligncenter size-full wp-image-1242" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-13.42.16.png" alt="" width="553" height="168" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-13.42.16.png 553w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-13.42.16-300x91.png 300w" sizes="(max-width: 553px) 100vw, 553px" /></a></p>
<p>&nbsp;</p>
<h3><strong>2: Import Kali linux image </strong></h3>
<p><strong>&#8211; here is example by using Parallels Desktop &#8211; choose Debian GNI/Linux (the same applicable for for Virtual Box)</strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.00.46.png"><img decoding="async" class="aligncenter size-full wp-image-1248" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.00.46.png" alt="" width="865" height="578" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.00.46.png 865w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.00.46-300x200.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.00.46-768x513.png 768w" sizes="(max-width: 865px) 100vw, 865px" /></a></p>
<h3><strong>3: Choose name and location </strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.01.08.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1251" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.01.08.png" alt="" width="859" height="571" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.01.08.png 859w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.01.08-300x199.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.01.08-768x511.png 768w" sizes="(max-width: 859px) 100vw, 859px" /></a></p>
<h3><strong>4: Select type of installation (Graphical install)</strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.19.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1252" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.19.png" alt="" width="633" height="514" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.19.png 633w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.19-300x244.png 300w" sizes="(max-width: 633px) 100vw, 633px" /></a></p>
<p>&nbsp;</p>
<h3><strong>5: Select language for installation</strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.53.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1253" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.53.png" alt="" width="1017" height="797" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.53.png 1017w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.53-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.03.53-768x602.png 768w" sizes="(max-width: 1017px) 100vw, 1017px" /></a></p>
<h3><strong>6: Wait for installation </strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.04.23.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1255 size-full" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.04.23-e1588674488352.png" alt="" width="1016" height="314" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.04.23-e1588674488352.png 1016w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.04.23-e1588674488352-300x93.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.04.23-e1588674488352-768x237.png 768w" sizes="(max-width: 1016px) 100vw, 1016px" /></a></p>
<h3><strong>7: Type hostname of your Kali linux system</strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.17.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1256" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.17.png" alt="" width="1018" height="798" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.17.png 1018w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.17-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.17-768x602.png 768w" sizes="(max-width: 1018px) 100vw, 1018px" /></a></p>
<h3><strong>8: Type domain name</strong></h3>
<p><strong>&#8211; if you do not use domain, just leave it blank</strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.30.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1257" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.30.png" alt="" width="1019" height="795" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.30.png 1019w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.30-300x234.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.30-768x599.png 768w" sizes="(max-width: 1019px) 100vw, 1019px" /></a></p>
<h3><strong>9: Set-up user and password </strong></h3>
<p><strong>&#8211; (always use strong password)</strong></p>
<h3><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.51.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1258" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.51.png" alt="" width="1014" height="798" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.51.png 1014w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.51-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.05.51-768x604.png 768w" sizes="(max-width: 1014px) 100vw, 1014px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.27.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1259" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.27.png" alt="" width="1015" height="792" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.27.png 1015w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.27-300x234.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.27-768x599.png 768w" sizes="(max-width: 1015px) 100vw, 1015px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.58.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1260" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.58.png" alt="" width="1013" height="796" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.58.png 1013w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.58-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.06.58-768x603.png 768w" sizes="(max-width: 1013px) 100vw, 1013px" /></a><strong>10: Select your time-zone</strong> </h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.15.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1261" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.15.png" alt="" width="1013" height="796" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.15.png 1013w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.15-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.15-768x603.png 768w" sizes="(max-width: 1013px) 100vw, 1013px" /></a></p>
<h3><strong>11: Partition and format your virtual disk </strong></h3>
<p><strong>&#8211; please select: Guided &#8211; use entire disk</strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.57.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1262" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.57.png" alt="" width="1018" height="798" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.57.png 1018w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.57-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.07.57-768x602.png 768w" sizes="(max-width: 1018px) 100vw, 1018px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.13.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1263" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.13.png" alt="" width="1017" height="799" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.13.png 1017w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.13-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.13-768x603.png 768w" sizes="(max-width: 1017px) 100vw, 1017px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.25.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1264" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.25.png" alt="" width="1016" height="797" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.25.png 1016w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.25-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.25-768x602.png 768w" sizes="(max-width: 1016px) 100vw, 1016px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.36.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1265" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.36.png" alt="" width="1015" height="798" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.36.png 1015w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.36-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.36-768x604.png 768w" sizes="(max-width: 1015px) 100vw, 1015px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.56.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1266" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.56.png" alt="" width="1016" height="792" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.56.png 1016w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.56-300x234.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.08.56-768x599.png 768w" sizes="(max-width: 1016px) 100vw, 1016px" /></a></p>
<h3><strong>12: Select software you want to install </strong></h3>
<p><strong>&#8211; of course later you can install any kind of software you want</strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.20.34.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1267" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.20.34.png" alt="" width="1015" height="800" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.20.34.png 1015w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.20.34-300x236.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.20.34-768x605.png 768w" sizes="(max-width: 1015px) 100vw, 1015px" /></a></p>
<h3><strong>13: Install GRUB boot loader</strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.13.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1268" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.13.png" alt="" width="1020" height="797" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.13.png 1020w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.13-300x234.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.13-768x600.png 768w" sizes="(max-width: 1020px) 100vw, 1020px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.28.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1269" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.28.png" alt="" width="1019" height="793" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.28.png 1019w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.28-300x233.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.28-768x598.png 768w" sizes="(max-width: 1019px) 100vw, 1019px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.42.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1270" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.42.png" alt="" width="1019" height="799" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.42.png 1019w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.42-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.45.42-768x602.png 768w" sizes="(max-width: 1019px) 100vw, 1019px" /></a><strong> </strong></p>
<h3><strong>14: Wait for installation to be finished</strong></h3>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.47.32.png"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-1271" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.47.32.png" alt="" width="1018" height="799" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.47.32.png 1018w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.47.32-300x235.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.47.32-768x603.png 768w" sizes="(max-width: 1018px) 100vw, 1018px" /></a></p>
<h3><strong>15: Congratulations! We are done.</strong></h3>
<p><strong>&#8211; Now your Kali linux system is ready to be used for your hacking practice </strong></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1272" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31-1024x602.png" alt="" width="1024" height="602" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31-1024x602.png 1024w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31-300x176.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31-768x452.png 768w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.48.31.png 1275w" sizes="(max-width: 1024px) 100vw, 1024px" /></a> <a href="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1273" src="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38-1024x603.png" alt="" width="1024" height="603" srcset="https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38-1024x603.png 1024w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38-300x177.png 300w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38-768x452.png 768w, https://itblogsec.com/wp-content/uploads/2020/05/Screenshot-2020-04-29-at-16.49.38.png 1276w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
<h3>Conclusion</h3>
<p>At this point, you have the system which is ready to learn new hacking practice by yourself. In our next tutorials, we will try to bring you step-by-step guides how to learn ethical hacking practices. Stay tuned, like us on facebook and soon there will second part of <strong>Hacking for Beginners</strong> available. </p>
<p>The post <a href="https://itblogsec.com/hacking-for-beginners-1-install-the-kali-linux/">Hacking for beginners #1 &#8211; Install the Kali Linux</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/hacking-for-beginners-1-install-the-kali-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WPA2 encryption can now be hacked with new KRACKS method</title>
		<link>https://itblogsec.com/wpa2-encryption-can-now-hacked-new-kracks-method/</link>
					<comments>https://itblogsec.com/wpa2-encryption-can-now-hacked-new-kracks-method/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 24 Oct 2017 19:47:01 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=1015</guid>

					<description><![CDATA[<p>Security Researcher Mathy Vanhoef of Imec-DistiNet discovered a weakness within the WPA2 protocol, potentially affecting all the wireless routers supporting WPA2, an attacker can take advantage of this vulnerability by using key re-installation attacks (KRACKS).</p>
<p>The post <a href="https://itblogsec.com/wpa2-encryption-can-now-hacked-new-kracks-method/">WPA2 encryption can now be hacked with new KRACKS method</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>WPA2 encryption can now be hacked with new KRACKS method</h2>
<p style="text-align: justify;">Security Researcher <strong>Mathy Vanhoef of Imec-DistiNet</strong> discovered a <strong>weakness within the WPA2</strong> protocol, potentially affecting <strong>all the wireless routers supporting WPA2,</strong> an attacker can take advantage of this vulnerability by using key re-installation attacks <strong>(KRACKS)</strong>.</p>
<p style="text-align: justify;">The attack can be used to <strong>intercept passwords</strong>, <strong>Emails</strong>, <strong>chat messages</strong> and even your <strong>credit card</strong> Information. Consider if your network is not configured properly the attacker <strong>can inject ransomware and other malware</strong> into the Web sites you visit.</p>
<p style="text-align: justify;">He says that the <strong>weakness is in the Wi-Fi Standard</strong> itself even though if your router is perfectly configured you will be affected by this attack. Mathy suggests <strong>updating the Router’s Firmware</strong> when the Vendor issues the Updates to your Router.</p>
<blockquote>
<p style="text-align: justify;">“Note that if your device supports Wi-Fi, it is common that it is affected. During our initial research, we learned ourselves that Android, Linux, Apple, Windows, OpenBSD, MediaTek, Linksys, and others, are all affected by some modification of the attacks. For more data about specific products, consult the database of CERT/CC, or contact your vendor.”</p>
</blockquote>
<p style="text-align: justify;">In the research paper, he explains the attack as <strong>“exceptionally destructive” against Android 6.0:</strong></p>
<blockquote>
<p style="text-align: justify;">“Because Android uses wpa_supplicant, Android 6.0 and above further contains this vulnerability. This presents it trivial to hijack and manipulate traffic sent by these Linux and Android devices,” he addresses on the Krackattacks site explaining the flaw. “Note that currently, 41% of Android devices are exposed to this exceptionally devastating variant of our attack.”</p>
</blockquote>
<p style="text-align: justify;">He also says that <strong>attacks on MacOS and OpenBSD are easier to execute</strong> although we agree that some of the attack scenarios in the paper are rather impractical, do not let this fool you into believing key re-installation attacks cannot be abused in practice.</p>
<p style="text-align: justify;">Vanhoef further explains how the attack <strong>can still work against Web Apps</strong> and native Apps that are <strong>using HTTPS</strong>, explaining how this added encryption layer can be avoided in what he describes as a worrying number of conditions he flags multiple prior instances of <strong>HTTPS being avoided</strong> “in non-browser software, in Apple’s iOS and OS X, in Android apps, in Android apps again, in financial apps, and even in VPN apps.</p>
<p style="text-align: justify;">See also  a Proof-Concept-Video of the Attack:</p>
<p><iframe title="KRACK Attacks: Bypassing WPA2 against Android and Linux" width="1170" height="658" src="https://www.youtube.com/embed/Oh4WURZoR98?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p><span style="font-size: 14pt; color: #ff0000;"><strong>ALSO READ: </strong></span><a href="https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/" target="_blank" rel="noopener">Hack a Windows 7/8/10 admin account password with Windows magnifier</a></p>
<p><span style="font-size: 10pt;"><strong>source:</strong> <a href="https://latesthackingnews.com" target="_blank" rel="noopener">https://latesthackingnews.com</a></span></p>
<p>The post <a href="https://itblogsec.com/wpa2-encryption-can-now-hacked-new-kracks-method/">WPA2 encryption can now be hacked with new KRACKS method</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/wpa2-encryption-can-now-hacked-new-kracks-method/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hack a Windows 7/8/10 admin account password with Windows magnifier</title>
		<link>https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/</link>
					<comments>https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 21 Sep 2017 19:56:38 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=976</guid>

					<description><![CDATA[<p>This exploit takes advantage of the ease of access tool on the login page by 'tricking' windows into launching a fully privileged command prompt by selecting 'make items on the screen larger - magnifier'. By using this method you can simply reset admin admin account password, just by having physical access to the computer.</p>
<p>The post <a href="https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/">Hack a Windows 7/8/10 admin account password with Windows magnifier</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Hack a Windows 7/8/10 admin account password with Windows magnifier</h2>
<p style="text-align: justify;">This exploit takes advantage of the ease of access tool on the login page by &#8216;tricking&#8217; windows into launching a fully privileged command prompt by selecting &#8216;make items on the screen larger &#8211; magnifier&#8217;. By using this method you can simply reset admin account password, just by having physical access to the computer.</p>
<p style="text-align: justify;"><em><strong>Disclaimer:</strong> This is for use on a PC that you own. Breaking into someone else&#8217;s PC is considered a serious crime in most places. If you make a mistake or change something else, your Windows may become a non-boot. If so, just undo whatever you changed outside of the hack shown here, and it will back to normal. Need I say this is for Educational Purposes! You are responsible for your own thoughts and actions.</em></p>
<p><a href="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier.jpg"><img loading="lazy" decoding="async" class="aligncenter wp-image-977 size-full" title="image-border" src="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier.jpg" alt="" width="581" height="480" srcset="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier.jpg 581w, https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier-300x248.jpg 300w" sizes="(max-width: 581px) 100vw, 581px" /></a></p>
<h3><span style="font-family: Bitter, Georgia, serif; font-size: 22px;">1. Launch any OS that allow full access to file system</span></h3>
<p style="text-align: justify;">Here you can use many different linux distros or even a windows disk/usb, as long as you can access the terminal/command prompt, you&#8217;re good. In this case, we are going to use Kali linux distro. Insert CD/DVD into drive and reboot the machine. Start your Live DVD. You may need to go into the BIOS screen and change the boot-up order to CD/DVD drive first, HDD second.</p>
<h3 class="step">2. Navigate to Sys32</h3>
<p style="text-align: justify;">Use the file browser in your Linux environment, navigate to <strong>%windir%/system32/</strong>. You may have to right-click and mount the Windows partition/drive first or use the <a href="http://linux.die.net/man/8/mount.ntfs-3g" target="_blank" rel="nofollow noopener">NTFS-3G command</a>.</p>
<div id="attachment_978" style="width: 761px" class="wp-caption aligncenter"><a href="https://itblogsec.com/wp-content/uploads/2017/09/kali_01.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-978" class="wp-image-978 size-full" title="image-border" src="https://itblogsec.com/wp-content/uploads/2017/09/kali_01.jpg" alt="" width="751" height="506" srcset="https://itblogsec.com/wp-content/uploads/2017/09/kali_01.jpg 751w, https://itblogsec.com/wp-content/uploads/2017/09/kali_01-300x202.jpg 300w" sizes="(max-width: 751px) 100vw, 751px" /></a><p id="caption-attachment-978" class="wp-caption-text">Article is written on a macbook with Windows dual booted, there is Windows instance named as BOOTCAMP.</p></div>
<h3 class="step">3. Rename Magnify.exe</h3>
<p style="text-align: justify;">Find and rename <strong>magnify.exe</strong> (Magnifier file) to <strong>magnify.old</strong>. </p>
<pre class="lang:default decode:true ">mv magnify.exe magnify.old</pre>
<h3><strong>4. Rename <span class="skimlinks-unlinked">cmd.exe</span></strong></h3>
<p style="text-align: justify;">Find and rename <strong><span class="skimlinks-unlinked">cmd.exe</span></strong> to <strong><span class="skimlinks-unlinked">magnify.exe</span></strong>.</p>
<pre class="lang:default decode:true ">mv cmd.exe magnify.exe</pre>
<h3><strong>5. Shut Down Linux &amp; Reboot Windows</strong></h3>
<p style="text-align: justify;">Log out and reboot, remove CD/DVD/USB, and restart into Windows.</p>
<h3><strong>6. Get CMD Prompt Modify Accounts</strong></h3>
<p style="text-align: justify;">When Windows reboots, click on the ease of access button in the bottom left corner<a href="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier01.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-986 size-full" title="border-image" src="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier01.png" alt="" width="179" height="101" /></a></p>
<p style="text-align: justify;">Click the second selection “Make items on the screen larger (Magnifier)” and hit apply.</p>
<p><a href="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier02.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-988 size-full" title="border-image" src="https://itblogsec.com/wp-content/uploads/2017/09/windows_magnifier02.png" alt="" width="300" height="242" /></a></p>
<p style="text-align: justify;">The command prompt should now be in front of you. You now have a system level command prompt. At this point is where you can change the admin password and make any modification to the system using administrator privileges. </p>
<p style="text-align: justify;"><strong>Tip</strong>: <em>You can right-click on <span class="skimlinks-unlinked">cmd.exe</span> and click “Run as administrator” inside of Windows for escalated privileges. To edit files, it would never be allowed at basic admin level (caution). Same goes for any app in Windows right click and make the magic happen.</em></p>
<div id="attachment_990" style="width: 671px" class="wp-caption aligncenter"><a href="https://itblogsec.com/wp-content/uploads/2017/09/windows_admin_hack.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-990" class="wp-image-990 size-full" title="border-image" src="https://itblogsec.com/wp-content/uploads/2017/09/windows_admin_hack.jpg" alt="" width="661" height="461" srcset="https://itblogsec.com/wp-content/uploads/2017/09/windows_admin_hack.jpg 661w, https://itblogsec.com/wp-content/uploads/2017/09/windows_admin_hack-300x209.jpg 300w" sizes="(max-width: 661px) 100vw, 661px" /></a><p id="caption-attachment-990" class="wp-caption-text">Type net user to get a list of accounts</p></div>
<p><strong><em>Change Password: </em></strong></p>
<pre class="lang:default decode:true">net user username new_password</pre>
<p style="text-align: justify;"><em>Tip: when you do so, the password changes without prompting you again.</em></p>
<p><strong><em>Add an account: </em></strong></p>
<pre class="lang:default decode:true">net user username password /add</pre>
<p style="text-align: justify;"><em>Tip: If your username has a space, like John Doe, use quotes like “John Doe”.</em></p>
<p><strong><em>Admin that: </em></strong></p>
<pre class="lang:default decode:true ">net localgroup administrators username /add</pre>
<p><strong><em>Delete that: </em></strong></p>
<pre class="lang:default decode:true ">net user username /delete</pre>
<p><strong><em>Remote Desktop Users Group: </em></strong></p>
<pre class="lang:default decode:true">net localgroup Remote Desktop Users username /add</pre>
<p><em><strong>Net User Syntax Reference:</strong></em></p>
<pre class="lang:default decode:true">net user commands 
net user for domain</pre>
<h3><strong>7. Revert back all changes</strong></h3>
<p style="text-align: justify;">Now you should insert your Linux Live CD/DVD/USB and rename the files back to the original names.</p>
<ol>
<li style="text-align: justify;">Repeat Step 1</li>
<li style="text-align: justify;">Repeat Step 2</li>
<li style="text-align: justify;">Rename <span class="skimlinks-unlinked">magnify.exe</span> back to <span class="skimlinks-unlinked">cmd.exe</span></li>
<li style="text-align: justify;">Rename <span class="skimlinks-unlinked">magnify.old</span> back to <span class="skimlinks-unlinked">magnify.exe</span></li>
<li style="text-align: justify;">Log out, take out CD/DVD USB, reboot into Windows</li>
</ol>
<h3>Recommended resources</h3>
<p><a title="Kali Linux" href="https://www.kali.org/downloads/">Kali Linux</a><br />
 <a title="Rufus USB Creator" href="https://rufus.akeo.ie/">Create Live USB Sticks Rufus</a></p>
<h3>Conclusion</h3>
<p style="text-align: justify;">Well, that was how you hack a Windows 7/8/2008/10 administrator account password with Windows Magnifier. This also demonstrates how you could Pwn a machine if you think about it some, have hands on and they have not disabled EoA.  Hope it helps you in some way.</p>
<p><span style="font-size: 10pt;"><strong>source:</strong><a href="https://null-byte.wonderhowto.com" target="_blank" rel="noopener"> https://null-byte.wonderhowto.com</a>, <a href="https://thehacktoday.com" target="_blank" rel="noopener">https://thehacktoday.com</a></span></p>
<p>The post <a href="https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/">Hack a Windows 7/8/10 admin account password with Windows magnifier</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/hack-windows-7810-admin-account-password-windows-magnifier/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HBO Hackers Release More TV Show Episodes — No New Game Of Thrones Season 7 Material</title>
		<link>https://itblogsec.com/hbo-hackers-release-tv-show-episodes-no-new-game-thrones-season-7-material/</link>
					<comments>https://itblogsec.com/hbo-hackers-release-tv-show-episodes-no-new-game-thrones-season-7-material/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 14 Aug 2017 20:18:59 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[HBO]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=936</guid>

					<description><![CDATA[<p>The HBO hackers who have been notoriously leaking unaired TV show episodes and their scripts are acting well on their promise of continuously releasing new material. In the latest wave, the hackers have released more content, but it didn’t include Game of Thrones Season 7 episodes.</p>
<p>The post <a href="https://itblogsec.com/hbo-hackers-release-tv-show-episodes-no-new-game-thrones-season-7-material/">HBO Hackers Release More TV Show Episodes — No New Game Of Thrones Season 7 Material</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>HBO Hackers Release More TV Show Episodes — No New Game Of Thrones Season 7 Material</h2>
<p style="text-align: justify;"><strong>The HBO hackers</strong> who have been notoriously leaking <strong>unaired TV show episodes and their scripts</strong> are acting well on their promise of continuously <strong>releasing new</strong> material. In the latest wave, the hackers have released more content, but <strong>it didn’t include Game of Thrones Season 7 episodes</strong>.</p>
<p style="text-align: justify;">According to Reuters, the <strong>hackers have released</strong> the episodes of the much-anticipated comedy series <strong>Curb Your Enthusiasm</strong>, which returns in October. Notably, Curb has been off air for 5 years. The dump also included another popular show <strong>Insecure’s Sunday night episode</strong>.</p>
<p style="text-align: justify;">The other leaked unaired episodes are from the TV shows <strong>The Deuce and Barry</strong>. While The Deuce is an upcoming<strong> TV drama set in and around Times Square</strong>, <strong>Barry is a Bill Hader comedy</strong> series which is set to air <strong>in 2018</strong>.</p>
<p style="text-align: justify;">For those who don’t know, <strong>HBO had suffered a massive hack</strong> after becoming the target of a <strong>hacker group</strong> who calls itself <strong>Mr. Smith</strong>. As per the claims made by the hackers, they had obtained <strong>1.5TB of data after a 6-months long attack</strong>.</p>
<p style="text-align: justify;">Over the past few weeks, <strong>hackers have been releasing unreleased episodes and scripts of Game of Thrones and other TV shows</strong>, employee emails, and <strong>personal contact details of GOT stars</strong>.</p>
<p style="text-align: justify;">The <strong>hackers</strong> have made demands and <strong>asked for a 6-month salary in bitcoin</strong>, which turns out to be about <strong>$6 million to $7.5 million</strong>. It was also revealed that, in the past, <strong>HBO tried to stop the leaks by offering $250,000 for “finding out vulnerabilities in HBO’s systems.”</strong></p>
<p><span style="font-size: 12pt; color: #ff0000;"><strong>ALSO READ:</strong></span> <a href="https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/" target="_blank" rel="noopener">WannaCry ransomware: researcher halts its spread by registering domain for $10.69</a></p>
<p><span style="font-size: 10pt;"><strong>source:</strong> https://fossbytes.com</span></p>
<p>The post <a href="https://itblogsec.com/hbo-hackers-release-tv-show-episodes-no-new-game-thrones-season-7-material/">HBO Hackers Release More TV Show Episodes — No New Game Of Thrones Season 7 Material</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/hbo-hackers-release-tv-show-episodes-no-new-game-thrones-season-7-material/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WannaCry ransomware: researcher halts its spread by registering domain for $10.69</title>
		<link>https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/</link>
					<comments>https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 17 May 2017 12:01:53 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[ransomware]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=883</guid>

					<description><![CDATA[<p>Last year the Internet was taken down by cyber criminals through a massive Distributed Denial of Service Attack (DDoS) attack using the infamous Mirai malware. But last Friday afternoon, almost 99 countries including Russia, UK, USA and Australia became victims of a worldwide mass cyber-attack that has been reported to have caused major disruptions to systems that were being used by hospitals, companies, and other institutions.</p>
<p>The post <a href="https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/">WannaCry ransomware: researcher halts its spread by registering domain for $10.69</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 class="g1-mega g1-mega-1st entry-title">WannaCry ransomware: researcher halts its spread by registering domain for $10.69</h2>
<p style="text-align: justify;">Last year the Internet was taken down by cyber criminals through a massive Distributed Denial of Service Attack (DDoS) attack using the infamous <strong>Mirai malware</strong>. But last Friday afternoon, almost <strong>99 countries including Russia, UK, USA and Australia</strong> became victims of a worldwide <strong>mass cyber-attack WannaCry ransomware</strong> that has been reported to have caused <strong>major disruptions</strong> to systems that were being used by <strong>hospitals, companies, and other institutions</strong>.</p>
<p style="text-align: justify;"><strong><span style="color: #ff0000;">| ALSO READ: </span></strong><a href="https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/" target="_blank" rel="noopener noreferrer">WannaCry ransomware –  hitting world right now uses NSA windows exploit</a></p>
<h3 style="text-align: justify;">The Shadow Brokers and the NSA</h3>
<p style="text-align: justify;">An unknown hacking group launched <strong>ransomware attack</strong> to a number of computers worldwide that is seemingly powered by a hacking tool developed by the <strong>National Security Agency</strong> for spying purposes. The tool got leaked online by the <strong>“Shadow Brokers”</strong> group as part of their agenda to accumulate hacking tools developed by the agency. The tool is apparently given the name <strong>“Eternal Blue”</strong> and it exploits a <strong>vulnerability in Microsoft Windows</strong>.</p>
<p style="text-align: justify;"><strong>What does the vulnerability to do?</strong><br />
 According to experts, the vulnerability in <strong>Microsoft’s flagship operating system</strong> can be exploited by Eternal Blue which blocks access to a computer completely. What is more, is that the hacking group <strong>demanded a sum of $600 from the victims</strong> if they wanted to re-access their systems and <strong>de-encrypt the files</strong> accordingly.</p>
<p>https://twitter.com/fendifille/status/862997621039878145?ref_src=twsrc%5Etfw&#038;ref_url=https%3A%2F%2Fwww.hackread.com%2Fwannacry-ransomware-researcher-halts-spread-by-registering-domain%2F</p>
<p><strong>Who has been affected?</strong></p>
<p style="text-align: justify;">Up till now, <strong>almost 75,000 computers</strong> have been reported to have become the victim of the cyber-attack. Moreover, over <strong>40 NHS organizations</strong> had been affected initially <span class="aBn" tabindex="0" data-term="goog_528246131"><span class="aQJ">on Friday</span></span> in the UK, disrupting the entire health system of the country. Experts say that the ransomware was <strong>spreading at an exponential rate of five million emails per hour</strong> resulting in the virus affecting a number of other countries as well, including <strong>Australia</strong>, <strong>Germany</strong>, <strong>Mexico</strong>, <strong>Italy</strong>, <strong>Belgium</strong>, <strong>France</strong> and <strong>Russia</strong>.</p>
<p style="text-align: justify;"><img decoding="async" src="https://pbs.twimg.com/media/C_pLFK4XUAAbtPq.jpg" /></p>
<div class="MediaCard-media">Also, <strong>FedEx</strong>, one of the world’s leading courier organizations, had its entire system brought down. The <strong>German rail system also</strong> had its ticketing system hijacked by the ransomware.</div>
<div class="SandboxRoot env-bp-350" data-twitter-event-id="1">
<div id="twitter-widget-1" class="EmbeddedTweet EmbeddedTweet--mediaForward media-forward js-clickToOpenTarget js-tweetIdInfo tweet-InformationCircle-widgetParent" lang="en" data-click-to-open-target="https://twitter.com/kaspersky/status/863084833194594304" data-iframe-title="Twitter Tweet" data-dt-full="%{hours12}:%{minutes} %{amPm} - %{day} %{month} %{year}" data-dt-months="Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec" data-dt-am="AM" data-dt-pm="PM" data-dt-now="now" data-dt-s="s" data-dt-m="m" data-dt-h="h" data-dt-second="second" data-dt-seconds="seconds" data-dt-minute="minute" data-dt-minutes="minutes" data-dt-hour="hour" data-dt-hours="hours" data-dt-abbr="%{number}%{symbol}" data-dt-short="%{day} %{month}" data-dt-long="%{day} %{month} %{year}" data-scribe="page:tweet" data-tweet-id="863084833194594304" data-twitter-event-id="6">
<article class="MediaCard
           MediaCard--mediaForward
           
           customisable-border" dir="ltr" data-scribe="component:card"></p>
<div class="MediaCard-media">
<div class="MediaCard-widthConstraint js-cspForcedStyle" data-style="max-width: 1024px"> <img decoding="async" src="https://pbs.twimg.com/media/C_p2MXnWAAEwW25.jpg" /></div>
</div>
</article>
</div>
</div>
<div class="MediaCard-widthConstraint js-cspForcedStyle" data-style="max-width: 1024px">However, none of these were as big as the disruption which took place in <strong>Spain’s major telecommunication company</strong>, <strong>Telefonica</strong>. This was accompanied by attacks made on the <strong>power firm</strong>, <strong>Iberdrola</strong>, and the utility firm <strong>Gas Natural</strong>.</div>
<div class="MediaCard-widthConstraint js-cspForcedStyle" style="text-align: justify;" data-style="max-width: 1024px"> </div>
<div class="MediaCard-widthConstraint js-cspForcedStyle" style="text-align: justify;" data-style="max-width: 1024px">
<h3>How was the attack carried out and stopped?</h3>
<p style="text-align: justify;">A <strong>security researcher</strong> going by the online handle of <strong>@MalwareTechBlog</strong> told AFP that the ransomware was <strong>spreading due to being connected to an unregistered domain</strong>. The researcher, therefore, said that the spread can be <strong>stopped by registering the domain and updating the systems immediately</strong>.</p>
<p style="text-align: justify;">According to <a href="https://www.theguardian.com/technology/2017/may/13/accidental-hero-finds-kill-switch-to-stop-spread-of-ransomware-cyber-attack?CMP=share_btn_tw" target="_blank" rel="noopener noreferrer">The Guardian</a>, <strong>@MalwareTechBlog with the assistance of Darien Huss</strong> from security firm Proofpoint found and <strong>activated a “kill switch”</strong> in the malicious software. The switch was hardcoded into the malware in case the creator wanted to stop it spreading. This involved a very long nonsensical domain name that the malware makes a request to – just as if it was looking up any website – and <strong>if the request comes back and shows that the domain is live, the kill switch takes effect and the malware stops spreading</strong>.</p>
<p style="text-align: justify;">“I saw it wasn’t registered and thought, ‘I think I’ll have that.” <strong>The purchase cost him $10.69</strong>. Immediately, <strong>the domain name was registering thousands of connections every second</strong>. They get the <strong>accidental hero award of the day</strong>,” said Proofpoint’s Ryan Kalember. “They didn’t realize how much it probably slowed down the spread of this ransomware.”</p>
<blockquote class="twitter-tweet" data-width="550" data-dnt="true">
<p lang="en" dir="ltr">I will confess that I was unaware registering the domain would stop the malware until after i registered it, so initially it was accidental.</p>
<p>&mdash; MalwareTech (@MalwareTechBlog) <a href="https://twitter.com/MalwareTechBlog/status/863187104716685312?ref_src=twsrc%5Etfw">May 13, 2017</a></p></blockquote>
<p><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p style="text-align: justify;">The time that @malwaretechblog registered the domain <strong>was too late to help Europe and Asia</strong>, where many organizations were affected. But it gave people in the US <strong>more time to develop immunity to the attack</strong> by patching their systems before they were infected, said Kalember.</p>
<p style="text-align: justify;">Also, <strong>many NHS organizations had Windows XP installed on their computers</strong>. Microsoft long stopped supporting the old version of Windows and hence the ransomware took advantage of this and was able to spread so conveniently. The old operating system did not alert the users of any viruses and did not have updates against such threats.</p>
<h3>Microsoft’s take on the situation</h3>
<p style="text-align: justify;">A Microsoft’s spokesperson said that <strong>those who had enabled updates and had the company’s free antivirus software installed were not affected</strong>. Also, the company <strong>released an update</strong> earlier today which detects this threat as <strong><a href="https://www.microsoft.com/security/portal/threat/encyclopedia/Entry.aspx?Name=Ransom:Win32/WannaCrypt" target="_blank" rel="noopener noreferrer">Ransom: Win32/WannaCrypt</a></strong>.</p>
<blockquote class="twitter-tweet" data-width="550" data-dnt="true">
<p lang="en" dir="ltr">Microsoft has made the patch for MS17-010 available for XP and 2k3. Patch over the weekend. It&#39;s worth the overtime. <a href="https://t.co/XqXjprWtC1">https://t.co/XqXjprWtC1</a></p>
<p>&mdash; Jake Williams (@MalwareJake) <a href="https://twitter.com/MalwareJake/status/863294952146644992?ref_src=twsrc%5Etfw">May 13, 2017</a></p></blockquote>
<p><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<h3>The NHS system was the most badly hit</h3>
<p style="text-align: justify;">Soon after the attack, <strong>various hospitals postponed non-urgent appointments</strong> and ambulances changed routes. <strong>The systems were made to shut down</strong> altogether with doctors complaining about the <strong>major delays</strong> that occurred as a result. Up till now, all that is known is that <strong>various organizations have paid the demanded amount in Bitcoin</strong>. However, since all bitcoin transactions are recorded in a public ledger, it is <strong>hard to tell specifically which organizations paid</strong> the ransom.</p>
<p style="text-align: justify;">At the time of publishing this article, the attacks were stopped. The <strong>@MalwareTechBlog</strong> also released in-depth details highlighting how he was able to accidentally stop the attack which can be <a href="https://www.malwaretech.com/2017/05/how-to-accidentally-stop-a-global-cyber-attacks.html" target="_blank" rel="noopener noreferrer">read here</a>.</p>
<p style="text-align: justify;"><span style="font-size: 10pt;"><strong>source: </strong><a href="https://www.hackread.com/" target="_blank" rel="noopener noreferrer">https://www.hackread.com/</a></span></p>
</div>
<p>The post <a href="https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/">WannaCry ransomware: researcher halts its spread by registering domain for $10.69</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WannaCry ransomware &#8211;  hitting world right now uses NSA windows exploit</title>
		<link>https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/</link>
					<comments>https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 13 May 2017 06:40:55 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[ransomware]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=874</guid>

					<description><![CDATA[<p>Earlier today, a massive ransomware campaign hit computer systems of hundreds of private companies and public organizations across the globe – which is believed to be the most massive ransomware delivery campaign to date. The Ransomware in question has been identified as a variant of ransomware known as WannaCry (also known as 'Wana Decrypt0r,' 'WannaCryptor' or 'WCRY').</p>
<p>The post <a href="https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/">WannaCry ransomware &#8211;  hitting world right now uses NSA windows exploit</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>WannaCry ransomware &#8211;  hitting world right now uses NSA windows exploit</h2>
<p style="text-align: justify;">Earlier today, a massive <strong>ransomware</strong> campaign hit computer systems of hundreds of private companies and public organizations across the globe – which is believed to be the <strong>most massive</strong> <strong>ransomware</strong> delivery campaign to date. The Ransomware in question has been identified as a variant of ransomware known as <b>WannaCry ransomware</b> (also known as &#8216;<strong>Wana Decrypt0r</strong>,&#8217; &#8216;<strong>WannaCryptor</strong>&#8216; or &#8216;<strong>WCRY</strong>&#8216;).</p>
<p style="text-align: justify;">Like other nasty ransomware variants, WannaCry also <strong>blocks access</strong> to a computer or its files and <strong>demands money to unlock</strong> it. Once infected with the WannaCry ransomware, victims are asked <strong>to pay up to $300</strong> in order to remove the infection from their PCs; otherwise, their PCs render unusable, and their files remain locked.</p>
<p>In separate news, researchers have also discovered a <strong>massive malicious email campaign</strong> that&#8217;s spreading the <strong>Jaff ransomware</strong> at the rate of <strong>5 million emails per hour</strong> and hitting computers across the globe.</p>
<p><span style="font-size: 14pt;"><strong><span style="color: #ff0000;">| ALSO READ:</span></strong></span> <a href="https://itblogsec.com/wannacry-ransomware-researcher-halts-spread-registering-domain-10-69/" target="_blank" rel="noopener noreferrer">WannaCry ransomware: researcher halts its spread by registering domain for $10.69</a></p>
<h3>Ransomware Using NSA&#8217;s Exploit to Spread Rapidly</h3>
<p style="text-align: justify;">What&#8217;s interesting about this ransomware is that WannaCry attackers are <strong>leveraging a Windows exploit harvested from the NSA</strong> called <b>EternalBlue</b>, which was dumped by the <strong>Shadow Brokers</strong> hacking group over a month ago.</p>
<p style="text-align: justify;"><strong>Microsoft</strong> released a <strong>patch</strong> for the vulnerability <strong>in March (MS17-010)</strong>, but many users and organizations who did not patch their systems are open to attacks. The <strong>exploit</strong> has the capability to <strong>penetrate into machines</strong> running unpatched version of <strong>Windows XP through 2008 R2</strong> by exploiting flaws in <strong>Microsoft Windows SMB Server</strong>. This is why WannaCry campaign is spreading at an astonishing pace.</p>
<p style="text-align: justify;"><strong>Once a single computer</strong> in your organization <strong>is hit</strong> by the WannaCry ransomware, the worm <strong>looks for other vulnerable computers</strong> and infects them as well.</p>
<h3>Infections from All Around the World</h3>
<div id="aim23162064901975293080" style="text-align: justify;">In just <strong>a few hours</strong>, the ransomware <strong>targeted over 45,000 computers in 74 countries</strong>, including <strong>United States</strong>, <strong>Russia</strong>, <strong>Germany</strong>, <strong>Turkey</strong>, <strong>Italy</strong>, <strong>Philippines</strong> and <strong>Vietnam</strong>, and that the number was still growing, according to <a href="https://securelist.com/blog/incidents/78351/wannacry-ransomware-used-in-widespread-attacks-all-over-the-world/" target="_blank" rel="nofollow noopener noreferrer">Kaspersky Labs</a>.</div>
<div style="text-align: justify;"> </div>
<div class="clear" style="text-align: justify;">
<p style="text-align: justify;">According to a report, the ransomware attack <strong>has shut down work at 16 hospitals</strong> across the <strong>UK</strong> after doctors got blocked from accessing patient files. Another <a href="https://www.telefonica.com/es/web/press-office/-/cibersecurity-incident" target="_blank" rel="nofollow noopener noreferrer">report</a> says, <strong>85% of computers at the Spanish telecom firm, Telefonica, has get infected with this malware</strong>.</p>
<p style="text-align: justify;">Another independent security researcher, MalwareTech, <a href="https://intel.malwaretech.com/botnet/wcrypt" target="_blank" rel="nofollow noopener noreferrer">reported</a> that a <strong>large number of U.S. organizations</strong> (at least 1,600) have been hit by WannaCry, compared to <strong>11,200 in Russia</strong> and <strong>6,500 in China</strong>.</p>
</div>
<div class="clear"> </div>
<div class="clear"><a href="https://itblogsec.com/wp-content/uploads/2017/05/Wana-Decrypt0r-WannaCry-Ransomware-1.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-875" src="https://itblogsec.com/wp-content/uploads/2017/05/Wana-Decrypt0r-WannaCry-Ransomware-1.png" alt="Wana-Decrypt0r-WannaCry-Ransomware" width="728" height="380" srcset="https://itblogsec.com/wp-content/uploads/2017/05/Wana-Decrypt0r-WannaCry-Ransomware-1.png 728w, https://itblogsec.com/wp-content/uploads/2017/05/Wana-Decrypt0r-WannaCry-Ransomware-1-300x157.png 300w" sizes="(max-width: 728px) 100vw, 728px" /></a></div>
<div class="clear"> </div>
<div class="clear" style="text-align: justify;">
<p style="text-align: justify;">Screenshots of the <strong>WannaCry</strong> ransomware with different <strong>languages</strong>, including <strong>English</strong>, <strong>Spanish</strong>, <strong>Italian</strong>, were also shared online by various users and experts on Twitter. <strong>Bitcoin</strong> <strong>wallets</strong> seemingly associated with WannaCry were reportedly <strong>started filling up with cash</strong>.</p>
<p style="text-align: justify;">The Spanish computer emergency response organization (<a href="https://www.ccn-cert.cni.es/seguridad-al-dia/comunicados-ccn-cert/4464-ataque-masivo-de-ransomware-que-afecta-a-un-elevado-numero-de-organizaciones-espanolas.html" target="_blank" rel="nofollow noopener noreferrer">CCN-CERT</a>) has even issued an alert that warns users of the &#8220;massive attack of ransomware&#8221; from WannaCry, saying (translated version):</p>
<blockquote class="tr_bq">
<p style="text-align: justify;">&#8220;The ransomware, a version of WannaCry, infects the machine by encrypting all its files and, using a remote command execution vulnerability through SMB, is distributed to other Windows machines on the same network.&#8221;</p>
</blockquote>
<p style="text-align: justify;">It is <strong>unclear how the WannaCry ransomware is infecting systems</strong>, but obvious attack vector can be <strong>phishing emails</strong> or <strong>victims visiting a website containing malware</strong>.</p>
<p style="text-align: justify;">&#8220;<strong>Power firm Iberdrola and utility provider Gas Natural were also reported to have suffered</strong> from the outbreak.,&#8221; according to <a href="http://www.bbc.com/news/technology-39901382" target="_blank" rel="nofollow noopener noreferrer">BBC</a>.</p>
</div>
<h3 class="clear">How to Protect Yourself from WannaCry</h3>
<div class="clear">
<p style="text-align: justify;">First of all, if you haven&#8217;t <strong>patched your Windows machines</strong> and servers against <strong>EternalBlue exploit (MS17-010)</strong>, <strong>do it right now</strong>.</p>
<p style="text-align: justify;">To safeguard against such ransomware infection, you should always <strong>be suspicious of uninvited documents sent an email</strong> and should <strong>never click on links inside those documents</strong> unless verifying the source.</p>
<p style="text-align: justify;">To always <strong>have a tight grip on all your important files and documents</strong>, keep a<strong> good backup routine</strong> in place that makes their copies to an external storage device that is not always connected to your PC.</p>
<p style="text-align: justify;">Moreover, make sure that you <strong>run an active anti-virus security suite of tools on your system</strong>, and most importantly, always <strong>browse the Internet safely</strong>.</p>
<p style="text-align: justify;"><span style="font-size: 8pt;"><strong>source:</strong> <a href="http://thehackernews.com" target="_blank" rel="noopener noreferrer">http://thehackernews.com</a></span></p>
</div>
<p>The post <a href="https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/">WannaCry ransomware &#8211;  hitting world right now uses NSA windows exploit</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/wannacry-ransomware-hitting-world-right-now-uses-nsa-windows-exploit/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Over 85% of Smart TVs can be hacked remotely using broadcasting signals</title>
		<link>https://itblogsec.com/85-smart-tvs-can-hacked-remotely-using-broadcasting-signals/</link>
					<comments>https://itblogsec.com/85-smart-tvs-can-hacked-remotely-using-broadcasting-signals/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 04 Apr 2017 20:18:02 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hacking]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=829</guid>

					<description><![CDATA[<p>The Internet-connected devices are growing at an exponential rate, and so are threats to them. Due to the insecure implementation, a majority of Internet-connected embedded devices, including Smart TVs, Refrigerators, Microwaves, Security Cameras, and printers, are routinely being hacked and used as weapons in cyber attacks.</p>
<p>The post <a href="https://itblogsec.com/85-smart-tvs-can-hacked-remotely-using-broadcasting-signals/">Over 85% of Smart TVs can be hacked remotely using broadcasting signals</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Over 85% Of Smart TVs Can Be Hacked Remotely Using Broadcasting Signals</h2>
<p style="text-align: justify;">The <strong>Internet-connected devices</strong> are <strong>growing</strong> at an exponential rate, and so are threats to them. Due to the insecure implementation, a majority of Internet-connected embedded devices, including <strong>Smart TVs</strong>, <strong>Refrigerators</strong>, <strong>Microwaves</strong>, <strong>Security Cameras</strong>, and printers, are routinely being hacked and used as weapons in cyber attacks.</p>
<p style="text-align: justify;">We have seen IoT botnets like <strong>Mirai</strong> – possibly the<strong> biggest IoT-based malware threat</strong> that emerged late last year and caused vast internet outage by launching <strong>massive DDoS attacks</strong> against <strong>DynDNS</strong> provider – which proves how easy it is to hack these connected devices. Now, a security researcher is warning of another <strong>IoT threat involving Smart TVs</strong> that could allow hackers to take complete <strong>control of a wide range of Smart TVs</strong> at once without having any physical access to any of them.</p>
<p style="text-align: justify;"><span style="font-size: 14pt; color: #ff0000;">| ALSO READ:</span> <a href="https://itblogsec.com/vault-7-top-15-discoveries-implications/" target="_blank" rel="noopener">Vault 7: Top 15 Discoveries &amp; Implications</a></p>
<h3>Researcher Shows Live Hacking Demonstration</h3>
<p style="text-align: justify;">The proof-of-concept exploit for the attack, developed by <strong>Rafael Scheel</strong> of cyber security firm <strong>Oneconsult</strong>, uses a<strong> low-cost transmitter for embedding malicious commands into a rogue DVB-T</strong> (Digital Video Broadcasting — Terrestrial) signals. Those rogue signals are then broadcast to nearby devices, allowing attackers to <strong>gain root access on the Smart TVs</strong>, and using those devices for nasty actions, such as launching <strong>DDoS attacks</strong> and spying on end users.</p>
<p><a href="https://itblogsec.com/wp-content/uploads/2017/04/smart-tc-hacking.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-830" src="https://itblogsec.com/wp-content/uploads/2017/04/smart-tc-hacking.png" alt="smart-tc-hacking" width="728" height="380" srcset="https://itblogsec.com/wp-content/uploads/2017/04/smart-tc-hacking.png 728w, https://itblogsec.com/wp-content/uploads/2017/04/smart-tc-hacking-300x157.png 300w" sizes="(max-width: 728px) 100vw, 728px" /></a></p>
<p style="text-align: justify;"><strong>Scheel</strong> provided a <strong>live hacking demonstration</strong> of the attack during a presentation at the <strong>European Broadcasting Union (EBU) Media Cyber Security Seminar</strong>, saying about <strong>90 percent of the Smart TVs sold in the last years are potential victims</strong> of similar attacks. Scheel&#8217;s exploit relies on a transmitter based on DVB-T — a transmission standard that&#8217;s built into TVs that are connected to the Internet. The attack exploits two known <strong>privilege escalation vulnerabilities in the web browsers</strong> running in the background and once compromised, attackers <strong>could remotely connect to the TV</strong> over the Internet using interfaces, allowing them to take complete control of the device. Once compromised, the TV would be infected in a way that neither device <strong>reboots nor factory resets would help the victims get rid of the infection</strong>.</p>
<p><iframe title="Smart TV Hacking (Oneconsult Talk at EBU Media Cyber Security Seminar)" width="1170" height="658" src="https://www.youtube.com/embed/bOJ_8QHX6OA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p style="text-align: justify;"><strong>Scheel&#8217;s exploit is unique</strong> and much <strong>more dangerous</strong> than any smart TV hack we have seen so far. Previous Smart TV hacks, including <a href="https://itblogsec.com/vault-7-top-15-discoveries-implications/" target="_blank" rel="noopener"><strong>Weeping Angel</strong></a> (described in the CIA leaked documents), <strong>required physical access</strong> to the targeted device or relied on <strong>social engineering</strong>, which exposes hackers to the risk of being caught as well as limits the number of devices that can be hacked.</p>
<p style="text-align: justify;">However, <strong>Scheel&#8217;s exploit eliminates the need for hackers to gain physical control</strong> of the device and can work against a vast majority of TV sets at once. <strong>The hack once again underlines the risks of &#8220;Internet of Things&#8221; devices</strong>. Since the IoT devices are rapidly growing and changing the way we use technology, it drastically expands the attack surface, and when viewed from the vantage point of information security, IoT can be frightening.</p>
<p><span style="font-size: 8pt;"><strong>source:</strong> http://thehackernews.com</span></p>
<p>The post <a href="https://itblogsec.com/85-smart-tvs-can-hacked-remotely-using-broadcasting-signals/">Over 85% of Smart TVs can be hacked remotely using broadcasting signals</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/85-smart-tvs-can-hacked-remotely-using-broadcasting-signals/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>“Disappearing Malware” Allowed Hackers Steal $800,000 Cash From Russian ATMs</title>
		<link>https://itblogsec.com/disappearing-malware-allowed-hackers-steal-800000-cash-russian-atms/</link>
					<comments>https://itblogsec.com/disappearing-malware-allowed-hackers-steal-800000-cash-russian-atms/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 04 Apr 2017 19:58:40 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hacking]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=824</guid>

					<description><![CDATA[<p>A team of researchers at Kaspersky Labs have recently cracked the mystery of a fileless malware that was used to hack bank ATMs in Russia and steal $800,000 in a single night. It was possible because of the two log files unintentionally left on the machine by the attackers. The researchers were able to reverse engineer the attack.</p>
<p>The post <a href="https://itblogsec.com/disappearing-malware-allowed-hackers-steal-800000-cash-russian-atms/">“Disappearing Malware” Allowed Hackers Steal $800,000 Cash From Russian ATMs</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 class="entry-title">“Disappearing Malware” Allowed Hackers Steal $800,000 Cash From Russian ATMs</h2>
<p style="text-align: justify;">Some <strong>Russian banks</strong> are having sleepless nights because of a series of robberies that happened in the strangest way possible. As seen on the CCTV footage, a guy <strong>walks up to an ATM</strong>, stands for <strong>20 minutes</strong> and goes back with a handful of <strong>cash in Rubles (roughly $100,000)</strong>. All of this was done without even touching the machine. A similar story was repeated at other ATMs across the city, totaling the amount to $800,000 in just one night.</p>
<p style="text-align: justify;">The <strong>banks</strong> were <strong>completely unaware</strong> of how did the guys perform the attacks. They didn’t find any existence of malware on their backend network or the ATMs. The Russian security firm <strong>Kaspersky Labs was approached</strong> by one of the two affected banks.</p>
<p style="text-align: justify;">The only digital traces of the attack were the<strong> two log files</strong> which the attackers might’ve left by mistake. The <strong>events</strong> that occurred on the machines were <strong>recorded in the log files</strong>. The logs also include a line of text written in English, <strong>“Take the money bitch.”</strong></p>
<h3 style="text-align: justify;">The story of the invisible malware</h3>
<p style="text-align: justify;">Earlier this year, Kaspersky Labs reported about i<strong>nvisible fileless malware attacks</strong> that affected around <strong>140 banks in Europe</strong>, <strong>US</strong>, and other places. Such kind of malware <strong>resides in the random access memory</strong> of the devices, thus, reducing the chances of leaving any sign afterward.</p>
<p style="text-align: justify;"><strong>Sergey Golovanov</strong>, a malware expert at Kaspersky Lab, who worked on the case says that the two log files might’ve been left while uninstalling the malware.</p>
<p style="text-align: justify;"><strong>Golovanov</strong> and his team examined the two <strong>log files and concluded that the attack happened in three stages</strong>. First, the machine was <strong>commanded</strong> to <strong>withdraw</strong> <strong>cash</strong> from the cassettes and the second to <strong>put it on the dispensing tray</strong>. The third stage included the mouth of the ATM. The English text might’ve been logged at the same time and also as an indication on the screen for the guy.</p>
<p style="text-align: justify;">However, that wasn’t enough; the researchers took the help of a tool called <strong>YARA</strong> to create malware samples using the English text in the log files. They successfully <strong>found</strong> the match of the <strong>malware</strong> on <strong>VirusTotal</strong> – an online malware analysis tool – with<strong> two files uploaded</strong> by someone from <strong>Russia</strong> and <strong>Kazakhstan</strong>.</p>
<p style="text-align: justify; padding-left: 30px;"><span style="font-size: 14pt; color: #ff0000;">| ALSO READ:</span> <a href="https://itblogsec.com/cloud-bleed-cloudflare-bug-exposes-sensitive-data-from-million-sites/" target="_blank">CloudBleed – CloudFlare bug exposes sensitive data from million sites</a></p>
<p style="text-align: justify;">The <strong>researchers</strong> <strong>analyzed</strong> the bank’s <strong>network</strong>. They were able to reverse engineer the code and reconstruct the attack process. The <strong>attackers</strong> had <strong>built</strong> a <strong>digital</strong> <strong>tunnel</strong> <strong>across</strong> the bank’s <strong>network</strong> which allowed them to execute <strong>Windows Powershell commands</strong> and <strong>control the ATMs in real-time</strong>.</p>
<p style="text-align: justify;">Golovanov says that <strong>fileless attacks</strong> might be <strong>difficult</strong> to <strong>track</strong> but not impossible. They’ve linked the possible ties of the attackers with two already known bank hacker gangs. Until now, no arrests have been made.</p>
<p style="text-align: justify;">If you have something to add, drop your thoughts and comments.</p>
<p style="text-align: justify;"><span style="font-size: 8pt;"><strong>source:</strong> <a href="https://fossbytes.com" target="_blank">https://fossbytes.com</a></span></p>
<p>The post <a href="https://itblogsec.com/disappearing-malware-allowed-hackers-steal-800000-cash-russian-atms/">“Disappearing Malware” Allowed Hackers Steal $800,000 Cash From Russian ATMs</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/disappearing-malware-allowed-hackers-steal-800000-cash-russian-atms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google hacking (dorking) tutorial #1</title>
		<link>https://itblogsec.com/google-hacking-dorking-tutorial-1/</link>
					<comments>https://itblogsec.com/google-hacking-dorking-tutorial-1/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 17 Mar 2017 15:00:16 +0000</pubDate>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[google dorks]]></category>
		<category><![CDATA[google hacking]]></category>
		<category><![CDATA[hacking]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=584</guid>

					<description><![CDATA[<p>Everybody knows how to use search engine "google".  But do you know tips, tricks and operators which can be used for google hacking? Here's a tutorial that will teach you how to use google to hack and obtain even more specific data. Enjoy!</p>
<p>The post <a href="https://itblogsec.com/google-hacking-dorking-tutorial-1/">Google hacking (dorking) tutorial #1</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Google hacking (dorking) tutorial #1</h2>
<p style="text-align: justify;">Everybody knows how to use search engine &#8220;google&#8221;.  But do you know tips, tricks and operators which can be used for google hacking? Here&#8217;s a tutorial that will teach you how to use google to hack and obtain even more specific data. Enjoy!</p>
<p style="text-align: justify;">We have decided to start a new tutorial where we are trying to collect all techniques and commands which can be used for google hacking. Google hacking, also named Google dorking, is a computer hacking technique that uses Google Search and other Google applications to find security holes in the configuration and computer code that websites use. Google hacking involves using advanced operators in the Google search engine to locate specific strings of text within search results. Some of the more popular examples are finding specific versions of vulnerable Web applications.</p>
<h3 style="text-align: justify;">History </h3>
<p style="text-align: justify;">The concept of &#8220;Google Hacking&#8221; dates back to 2002, when <strong>Johnny Long</strong> began to collect interesting Google search queries that uncovered vulnerable systems and/or sensitive information disclosures &#8211; labeling them <strong>googleDorks</strong>.</p>
<p style="text-align: justify;">The list of googleDorks grew into large dictionary of queries, which were eventually organized into the original <strong>Google Hacking Database (GHDB)</strong> in 2004. These Google hacking techniques were the focus of a book released by Johnny Long in 2005, called <strong>Google Hacking for Penetration Testers, Volume 1</strong>.</p>
<p style="text-align: justify;">Since its heyday, the concepts explored in Google Hacking have been extended to other search engines, such as <a href="http://www.bishopfox.com/resources/tools/google-hacking-diggity/attack-tools/#bing-hacking-database---bhdb-v2" target="_blank">Bing</a> and <a href="http://www.bishopfox.com/resources/tools/google-hacking-diggity/attack-tools/#shodan-hacking-database---shdb" target="_blank">Shodan</a>. Automated attack tools use custom search dictionaries to find vulnerable systems and sensitive information disclosures in public systems that have been indexed by search engines.</p>
<p style="text-align: justify;">But in 2012 Google held an open challenge for anyone to infiltrate their resisting servers. For a full visual timeline, detailing the major events and developments in <strong>Google Hacking from 2002</strong> to Present, see the <strong>Google Hacking History by Bishop Fox</strong>.</p>
<h3 style="text-align: justify;"><strong>Search operators</strong></h3>
<p>There are many operators which can be used and even combined to achieve required results, see here the list of most popular operators:</p>
<div class="pcrstb-wrap"><table class="aTable">
<tbody>
<tr>
<td><strong> Operator</strong></td>
<td><strong> Description</strong></td>
<td><strong> Examples</strong></td>
</tr>
<tr>
<td> <strong>*</strong></td>
<td>
<p><strong>Whole word wildcard</strong></p>
<ul>
<li>Searches for a missing word in a phrase search.</li>
</ul>
</td>
<td>
<p><i>&#8220;Thomas * Edison&#8221;</i></p>
<ul>
<li>Returns results:
<ul>
<li>Thomas Edison</li>
<li>Thomas A. Edison</li>
<li>Thomas Alva Edison</li>
</ul>
</li>
</ul>
<p><i>&#8220;Obama voted * on the * bill&#8221;</i></p>
</td>
</tr>
<tr>
<td><strong> <span style="color: #ff6600;">~</span></strong></td>
<td>
<p><strong>Synonyms</strong></p>
<ul>
<li>Searches for a specified keyword and words that are similar to that word.</li>
<li>Adding a plus sign before a word disables synonyms.</li>
</ul>
</td>
<td><i>~neuroscience</i></p>
<ul>
<li>Results:
<ul>
<li>neurophysiology</li>
<li>neurobiology</li>
<li>brain</li>
<li>neurology</li>
</ul>
</li>
</ul>
<p><i>&#8220;SciFinder Scholar&#8221; ~tutorial</i></p>
<ul>
<li>Possible results:
<ul>
<li>SciFinder Scholar help</li>
<li>SciFinder Scholar guide</li>
<li>SciFinder Scholar documentation</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td> <strong>&#8230;</strong></td>
<td><strong>Range search</strong></p>
<ul>
<li><i>number&#8230;number</i></li>
</ul>
</td>
<td>Find laptops that cost $250 to $500.<br />
 <i>$250&#8230;$500 laptops</i></p>
<p>Find laptops with screen sizes between 14 and 17 inches.</p>
<p><i>14inch&#8230;17inch laptops</i></p>
<p>Find milestones in science that took place between 1910 and 1920.</p>
<p><i>&#8220;science milestones&#8221; 1910&#8230;1920</i></td>
</tr>
<tr>
<td><strong> allintext:</strong></td>
<td><strong>Searches for multiple words in the body of the search result.</strong></p>
<ul>
<li>Begin the query with <i>allintext:</i></li>
<li>There is no space between <i>allintext:</i> and the following word.</li>
<li>Google will restrict the results to pages that have all the query words in the body of the document.</li>
<li>Do not use a phrase search with the <i>allintext:</i> operator; use <i>intext:</i></li>
</ul>
</td>
<td>Find help for email fraud in Microsoft Outlook.<br />
 <i>allintext:microsoft help fraudulent email</i></td>
</tr>
<tr>
<td><strong> allintitle:</strong></td>
<td><strong>Searches for multiple words in the title of the search result.</strong></p>
<ul>
<li>Begin the query with <i>allintitle:</i></li>
<li>There is no space between <i>allintitle:</i> and the following word.</li>
<li>Google will restrict the results to pages that have all the query words in the title of the document.</li>
<li>Do not use a phrase search with the <i>allintitle:</i> operator; use <i>intitle:</i></li>
</ul>
</td>
<td>Find information about the Toyota auto recalls.<br />
 <i>allintitle:Toyota recall</i></td>
</tr>
<tr>
<td><strong> allinurl:</strong></td>
<td> <strong>Searches for multiple words in the url of the search result.</strong></p>
<ul>
<li>Begin the query with <i>allinurl:</i></li>
<li>There is no space between <i>allinurl:</i> and the following word.</li>
<li>Google will restrict the results to pages that have all the query words in the document url.</li>
<li>Do not use a phrase search with the <i>allinurl:</i> operator; use <i>intext:</i></li>
</ul>
</td>
<td>Find help for Microsoft Vista.<br />
 <i>allinurl:microsoft help vista</i></td>
</tr>
<tr>
<td> <strong>define:</strong></td>
<td> <strong>Searches for definitions of words from various web sources.</strong> <br />
  The operator can be used with or without the colon.</p>
<ul>
<li>Use the operator in the form <i>define:</i> and the results are restricted to a list of definitions.</li>
<li>The operator without the colon, <i>define</i>, and the results are broadened to include definitions as well as other relevant pages.</li>
<li>Use <i>define </i>if more than one word is entered in the query. The definition will be for the entire phrase as typed.</li>
</ul>
</td>
<td><i>define:combinatorics</i></p>
<p><i>define passive voice</i></p>
</td>
</tr>
<tr>
<td> <strong>filetype:</strong></td>
<td> <strong>Restrict your search to a specific file type.</strong></p>
<ul>
<li>There is no space between <i>filetype:</i> and the following word.</li>
<li>Look <a href="http://www.google.com/help/faq_filetypes.html" target="_blank">here</a> for a list of filetypes returned in a Google search.</li>
</ul>
</td>
<td>Find PDF Federal tax forms.</p>
<p><i>IRS tax forms filetype:pdf</i></p>
</td>
</tr>
<tr>
<td> <strong>intext:</strong></td>
<td>
<p><strong>Searches for a single word or phrase in the body of the search result.</strong></p>
<ul>
<li>There is no space between <i>intext:</i> and the following word.</li>
<li>Google will restrict the results to pages that have the query word or phrase in the body of the document.</li>
</ul>
</td>
<td> </p>
<p>Find help for email fraud in Microsoft Outlook.</p>
<p><i>help site:microsoft.com intext:email intext:fraudulent</i></p>
<p>Find funding opportunities provided by the Society of Neuroscience.</p>
<p><i>allintext:grants funding intext:&#8221;Society of Neuroscience&#8221;</i></p>
</td>
</tr>
<tr>
<td><strong> intitle:</strong></td>
<td>
<p><strong>Searches for a single word or phrase in the title of the search result.</strong></p>
<ul>
<li>There is no space between <i>intitle:</i> and the following word.</li>
<li>Google will restrict the results to pages that have the query word or phrase in the title of the document.</li>
</ul>
</td>
<td>
<p>Find information about the use of robots in the production of Toyota vehicles.</p>
<p><i>assembly line robots intitle:Toyota</i></p>
<p>Find information about RSS feeds provided by the MIT Libraires.</p>
<p><i>intitle:&#8221;MIT Libraries&#8221; intitle:&#8221;RSS feeds&#8221;</i></p>
</td>
</tr>
<tr>
<td><strong> inurl:</strong></td>
<td>
<p><strong>Searches for a single word or phrase in the url of the search result.</strong></p>
<ul>
<li>There is no space between <i>inurl:</i> and the following word.</li>
<li>Google will restrict the results to pages that have the query word or phrase in the url of the document.</li>
</ul>
</td>
<td>
<p>Find information about Periodic Table ipad apps from Apple.com</p>
<p><i>ipad apps intext:&#8221;periodic table&#8221; inurl:www.apple.com</i></p>
</td>
</tr>
<tr>
<td><strong> movie:</strong></td>
<td><strong>Searches for show times by location or for a specific movie.</strong></td>
<td>
<p>Find what&#8217;s playing and when in Cambridge.</p>
<p><em>movie:02139</em></p>
<p>Find reviews and showtimes for Iron Man 2 near Needham, MA.</p>
<p><em>movie:Iron Man 2 movie:02492</em></p>
</td>
</tr>
<tr>
<td><strong> phonebook:</strong></td>
<td>
<p><strong>Displays phonebook listings.</strong> <br />
 Results may vary depending on whether the search is performed in Google phonebook or Google Web.</p>
<ul>
<li><i>phonebook: </i>search for business and residential listings.</li>
<li><i>bphonebook: </i>search for business listings only.</li>
<li><i>rphonebook: </i>search for residential listings only.</li>
<li>Queries can be entered in various ways:
<ul>
<li>first name (or first initial), last name, city</li>
<li>last name, city, state</li>
<li>last name, zip code</li>
<li>phone number, including area code</li>
</ul>
</li>
<li>Searching by the first initial may result in false information. Most entries include first names spelled out. When in doubt, search by last name only.</li>
<li>Adding city and state information is optional.</li>
</ul>
</td>
<td>
<p>Find a business or residential listing in Massachusetts for Smith.</p>
<p><i>phonebook:smith ma</i></p>
<p>Find a residential listing for Tim Beaver.</p>
<p><i>rphonebook:tim beaver</i></p>
<p>Find a listing for a hardware store in Cambridge, MA.</p>
<p><i>bphonebook:hardware cambridge ma</i></p>
</td>
</tr>
<tr>
<td><strong> stocks:</strong></td>
<td>
<p><strong>Displays the current stock quote.</strong></p>
<p><em>stocks:</em>ticker symbol</p>
<ul>
<li>Search for ticker symbols <a href="http://www.nasdaq.com/asp/NasdaqSymLookup2.asp?mode=stock" target="_blank">here</a>.</li>
</ul>
</td>
<td>Find the current stock quote for Lockheed Martin.</p>
<p><em>stocks:LMT</em></p>
</td>
</tr>
</tbody>
</table></div>
<h3>
 The formula of google dorks</h3>
<p style="text-align: justify;"><strong>Dorks:</strong> They are like search criteria in which a search engine returns results related to your dork. The process can be a little time consuming, but the outcome will be worth it after learning on how to use dorks.</p>
<p>Basic Formula of dork: </p>
<pre class="lang:default decode:true">"inurl:."domain"/"dorks" "</pre>
<p>So now try to understand concept: <br />
 <strong>&#8220;inurl&#8221;</strong> = input URL<br />
 <strong>&#8220;domain&#8221;</strong> = your desired domain ex. .gov<br />
 <strong>&#8220;dorks&#8221;</strong> = your dork of your choice</p>
<h3>Real examples</h3>
<pre class="lang:default decode:true">"intitle:index.of:" mp3 jackson</pre>
<p>&#8211; download your favorite music for free</p>
<pre title="" class="">intitle:index.of +?last modified? +?parent directory? +pdf "lord of the rings" -htm -html -php -asp</pre>
<p>&#8211; download book for free</p>
<pre class="lang:default decode:true">300 -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mp4|wma|aac|avi)</pre>
<p>&#8211; download your favorite movie directly from the Internet or you can watch it even online (in our example movie 300)<br />
 &#8211; explanation:</p>
<p style="text-align: justify;"><strong>movie Name -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mp4|wma|aac|avi)<br />
 </strong>&#8211; as a result you will see a movie name there you can add any movie name for example 300, deadpool, etc.</p>
<p style="text-align: justify;"><strong>inurl(htm|html|php|pls|txt)<br />
 </strong>&#8211; this means search the movie name in the URL. Most of the times there are name of the keywords given in the link itself, and it will search all the links which are having extensions named as htm, html, php, pls, txt.</p>
<p style="text-align: justify;"><strong>intitle:index.of “last modified”<br />
 </strong>&#8211; It means that this will search for the recent date when the file was uploaded, so that you can get the HD print of the movie and you can download it in blazing fast speed.</p>
<p><strong>(mp4|wma|aac|avi)<br />
 </strong>&#8211; Your movie will be searched which is having extension of mp4, wma, aac, avi format only. </p>
<h3>Conlusion</h3>
<p style="text-align: justify;">In the second part of our tutorial, we will show you more complicated formulas, how to find vulnerable online cameras, web servers and many many another practical tips and tricks. Comment, subscribe or Like us on Facebook so you will get notification about new part of tutorial. Enjoy!</p>
<p>The post <a href="https://itblogsec.com/google-hacking-dorking-tutorial-1/">Google hacking (dorking) tutorial #1</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/google-hacking-dorking-tutorial-1/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 0/262 objects using XCache
Page Caching using Disk: Enhanced 

Served from: itblogsec.com @ 2026-05-28 00:13:34 by W3 Total Cache
-->