<?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>The Web Archives - Tech Chronicles</title>
	<atom:link href="http://kostacipo.stream/category/the-web/feed/" rel="self" type="application/rss+xml" />
	<link>https://kostacipo.stream/category/the-web/</link>
	<description>Ramblings of a Tech Dude</description>
	<lastBuildDate>Mon, 24 Jul 2023 22:08:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://kostacipo.stream/wp-content/uploads/2019/12/cropped-profile-32x32.jpg</url>
	<title>The Web Archives - Tech Chronicles</title>
	<link>https://kostacipo.stream/category/the-web/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Cross-Site Request Forgery (CSRF) Attacks: An Emerging Threat to Browser Security</title>
		<link>http://kostacipo.stream/cross-site-request-forgery-csrf-attacks-an-emerging-threat-to-browser-security/</link>
					<comments>http://kostacipo.stream/cross-site-request-forgery-csrf-attacks-an-emerging-threat-to-browser-security/#respond</comments>
		
		<dc:creator><![CDATA[Majordomo]]></dc:creator>
		<pubDate>Mon, 24 Jul 2023 22:08:12 +0000</pubDate>
				<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Cross-Site Request Forgery (CSRF)]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[web security]]></category>
		<guid isPermaLink="false">https://kostacipo.stream/?p=2149</guid>

					<description><![CDATA[<p>One of the most sophisticated types of attacks that threaten our digital landscape is Cross-Site Request Forgery (CSRF). According to the Open Web Application Security Project (OWASP), CSRF vulnerabilities are among the top 10 most critical web application security risks. Let&#8217;s explore what CSRF attacks are, how they work, and the preventative steps that browsers [&#8230;]</p>
<p>The post <a href="http://kostacipo.stream/cross-site-request-forgery-csrf-attacks-an-emerging-threat-to-browser-security/">Cross-Site Request Forgery (CSRF) Attacks: An Emerging Threat to Browser Security</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div>
<p class="paragraph">One of the most sophisticated types of attacks that threaten our digital landscape is Cross-Site Request Forgery (CSRF).</p>
<p class="paragraph">According to the Open Web Application Security Project (OWASP), CSRF vulnerabilities are <a href="https://owasp.org/www-project-top-ten/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">among the top 10</a> most critical web application security risks.</p>
<p class="paragraph">Let&#8217;s explore what CSRF attacks are, how they work, and the preventative steps that browsers and websites can take to tackle them.</p>
<p class="paragraph">A CSRF attack is an ingenious form of web exploit where an attacker tricks a victim&#8217;s browser into performing an unwanted action on a website where the victim is authenticated.</p>
<p class="paragraph">A sobering statistic from Imperva&#8217;s Cyber Threat Index indicates that CSRF attacks <a href="https://www.imperva.com/cyber-threat-index/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">accounted for almost 5%</a> of all application layer attacks in 2022.</p>
<p class="paragraph">Here&#8217;s a simple example: Let&#8217;s say you&#8217;re logged into your bank&#8217;s website, and you&#8217;ve left it open in a tab. You visit another website in a new tab, which is under the control of a nefarious actor.</p>
<p class="paragraph">This site forces your browser to send a request to your bank&#8217;s website to transfer money without your knowledge or consent. This is a CSRF attack.</p>
<h2 id="h-how-csrf-attacks-happen">How CSRF Attacks Happen</h2>
<p class="paragraph">Unlike many other types of attacks that rely on stealing user credentials, CSRF attacks exploit the trust a website has in a user&#8217;s browser.</p>
<p class="paragraph">They manipulate the victim into performing actions they didn&#8217;t intend to, leading to potential data loss, corruption, or unauthorized changes.</p>
<p class="paragraph">Disturbingly, the <a href="https://www.nortonlifelock.com/blogs/norton-cyber-security-insights-report-2022?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">2022 Norton Cyber Security Insights Report</a> showed that 1 in 4 online users globally have been victims of a form of CSRF attacks.</p>
<p class="paragraph">To carry out a CSRF attack, an attacker needs to create a malicious website or email that generates forged HTTP requests. The victim&#8217;s browser sends these requests to the targeted website, which can&#8217;t differentiate between these forged requests and legitimate ones.</p>
<p class="paragraph">The attacker can then ride the authenticated session of the user.</p>
<h2 id="h-preventing-csrf-attacks-the-role-of-browsers-and-websites">Preventing CSRF Attacks: The Role of Browsers and Websites</h2>
<p class="paragraph">Preventing CSRF attacks is a shared responsibility between web developers and browser manufacturers. A robust understanding and application of <a href="https://layerxsecurity.com/learn/browser-security/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">browser security</a> are paramount.</p>
<p class="paragraph"><strong>The Website&#8217;s Responsibility</strong></p>
<p class="paragraph">Websites can guard against CSRF attacks through various measures. They can generate and verify tokens for each session or use the &#8216;SameSite&#8217; cookie attribute, which allows cookies to be sent only when the request originates from the same site that set the cookie.</p>
<p class="paragraph">The use of CAPTCHA can also help in mitigating CSRF attacks. According to Google, implementing <a href="https://www.blog.google/products/recaptcha/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">reCAPTCHA blocked 99.9%</a> of automated software-based CSRF attacks on their platforms.</p>
<p class="paragraph"><strong>The Browser&#8217;s Responsibility</strong></p>
<p class="paragraph">Browsers play a crucial role in mitigating CSRF attacks. They can warn users about suspicious websites, provide visual cues about the security level of websites, and use better cookie controls.</p>
<p class="paragraph">For instance, browsers are now implementing features such as HTTPOnly and Secure cookies that prevent cross-domain requests.</p>
<h2 id="h-empowering-individual-users-against-csrf">Empowering Individual Users Against CSRF</h2>
<p class="paragraph">Ultimately, the prevention of CSRF attacks also lies in the hands of individual users.</p>
<p class="paragraph">Practicing caution when clicking on suspicious links, logging out of sensitive websites when not in use, and regularly updating the browser can significantly reduce the risk of CSRF attacks.</p>
<p class="paragraph">According to a study by the Pew Research Center, <a href="https://www.pewresearch.org/internet/2023/01/23/cybersecurity-in-the-modern-age/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">approximately 64% of online adults</a> have become more cautious in their online activities due to cybersecurity threats. This is a clear testament to increasing cybersecurity awareness among internet users.</p>
<h2 id="h-the-future-of-csrf">The Future of CSRF</h2>
<p class="paragraph">Research indicates that CSRF attacks are <a href="https://www.statista.com/statistics/cyber-crime-growth/?ref=hackernoon.com" target="_blank" rel="noopener noreferrer ugc">likely to increase in the future</a>. This makes ongoing advancements in browser security and web development crucial in maintaining a safe digital environment.</p>
<p class="paragraph">By prioritizing secure coding practices, understanding and implementing advanced CSRF prevention techniques, and continuously educating users about these types of threats, we can create a safer online ecosystem.</p>
<p class="paragraph">Remember, cybersecurity is not a destination but an ongoing journey that requires diligence, knowledge, and adaptability.</p>
</div>
<p>The post <a href="http://kostacipo.stream/cross-site-request-forgery-csrf-attacks-an-emerging-threat-to-browser-security/">Cross-Site Request Forgery (CSRF) Attacks: An Emerging Threat to Browser Security</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://kostacipo.stream/cross-site-request-forgery-csrf-attacks-an-emerging-threat-to-browser-security/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HackBrowserData &#8211; Decrypt passwords/cookies/history/bookmarks from the browser</title>
		<link>http://kostacipo.stream/hackbrowserdata-decrypt-passwords-cookies-history-bookmarks-from-the-browser/</link>
					<comments>http://kostacipo.stream/hackbrowserdata-decrypt-passwords-cookies-history-bookmarks-from-the-browser/#respond</comments>
		
		<dc:creator><![CDATA[Majordomo]]></dc:creator>
		<pubDate>Wed, 06 Apr 2022 11:19:02 +0000</pubDate>
				<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[passwords]]></category>
		<guid isPermaLink="false">https://kostacipo.stream/?p=2132</guid>

					<description><![CDATA[<p>HackBrowserData is an open-source tool that could help you decrypt data (password&#124;bookmark&#124;cookie&#124;history&#124;credit card&#124;downloads link) from the browser. It supports the most popular browsers on the market and runs on Windows, macOS and Linux. Disclaimer: This tool is limited to security research only, and the user assumes all legal and related responsibilities arising from its use! [&#8230;]</p>
<p>The post <a href="http://kostacipo.stream/hackbrowserdata-decrypt-passwords-cookies-history-bookmarks-from-the-browser/">HackBrowserData &#8211; Decrypt passwords/cookies/history/bookmarks from the browser</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p dir="auto"><code>HackBrowserData</code> is an open-source tool that could help you decrypt data (password|bookmark|cookie|history|credit card|downloads link) from the browser. It supports the most popular browsers on the market and runs on Windows, macOS and Linux.</p>
<blockquote>
<p dir="auto">Disclaimer: This tool is limited to security research only, and the user assumes all legal and related responsibilities arising from its use! The author assumes no legal responsibility!</p>
</blockquote>
<p><a href="https://github.com/moonD4rk/HackBrowserData" target="_blank" rel="nofollow noopener">https://github.com/moonD4rk/HackBrowserData</a></p>
<h2 dir="auto">Supported Browser</h2>
<h3 dir="auto"><a id="user-content-windows" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#windows" target="_blank" rel="nofollow noopener" aria-hidden="true"></a>Windows</h3>
<table border="1">
<thead>
<tr>
<th align="left"><strong>Browser</strong></th>
<th align="center"><strong>Password</strong></th>
<th align="center"><strong>Cookie</strong></th>
<th align="center"><strong>Bookmark</strong></th>
<th align="center"><strong>History</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">Google Chrome</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Google Chrome Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Chromium</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Microsoft Edge</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">360 Speed</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">QQ</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Brave</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Opera</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">OperaGX</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Vivaldi</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Yandex</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">CocCoc</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Dev</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox ESR</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Nightly</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Internet Explorer</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
</tbody>
</table>
<h2 dir="auto"><a id="user-content-macos" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#macos" target="_blank" rel="nofollow noopener" aria-hidden="true"></a><strong>MacOS</strong></h2>
<p dir="auto">Based on Apple&#8217;s security policy, some browsers <strong>require a current user password</strong> to decrypt.</p>
<table border="1">
<thead>
<tr>
<th align="left"><strong>Browser</strong></th>
<th align="center"><strong>Password</strong></th>
<th align="center"><strong>Cookie</strong></th>
<th align="center"><strong>Bookmark</strong></th>
<th align="center"><strong>History</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">Google Chrome</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Google Chrome Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Chromium</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Microsoft Edge</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Brave</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Opera</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">OperaGX</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Vivaldi</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Yandex</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">CocCoc</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Dev</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox ESR</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Nightly</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Safari</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/274c.png" alt="❌" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
</tbody>
</table>
<h2 dir="auto"><a id="user-content-linux" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#linux" target="_blank" rel="nofollow noopener" aria-hidden="true"></a><strong>Linux</strong></h2>
<table border="1">
<thead>
<tr>
<th align="left">Browser</th>
<th align="center">Password</th>
<th align="center">Cookie</th>
<th align="center">Bookmark</th>
<th align="center">History</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">Google Chrome</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Google Chrome Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Chromium</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Microsoft Edge Dev</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Brave</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Opera</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Vivaldi</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Beta</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Dev</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox ESR</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
<tr>
<td align="left">Firefox Nightly</td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
<td align="center"><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2705.png" alt="✅" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
</tr>
</tbody>
</table>
<h2><a id="user-content-install" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#install" target="_blank" rel="nofollow noopener" aria-hidden="true"></a><strong>Install</strong></h2>
<p dir="auto">Installation of <code>HackBrowserData</code> is dead-simple, just download <a href="https://github.com/moonD4rk/HackBrowserData/releases" target="_blank" rel="nofollow noopener">the release for your system</a> and run the binary.</p>
<blockquote>
<p dir="auto">In some situations, this security tool will be treated as a virus by Windows Defender or other antivirus software and can not be executed. The code is all open source, you can modify and compile by yourself.</p>
</blockquote>
<h3><a id="user-content-building-from-source" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#building-from-source" target="_blank" rel="nofollow noopener" aria-hidden="true"></a><strong>Building from source</strong></h3>
<p dir="auto">support <code>go 1.14+</code></p>
<div class="highlight highlight-source-shell position-relative overflow-auto">
<pre>git clone https://github.com/moonD4rk/HackBrowserData

<span class="pl-c1">cd</span> HackBrowserData

go build</pre>
</div>
<p><strong>Cross compile</strong></p>
<p>Need to install target OS&#8217;s <code>gcc</code> library, here&#8217;s an example of the use <code>Mac</code> building for <code>Windows</code> and <code>Linus</code></p>
<h3><strong>Windows</strong></h3>
<div class="highlight highlight-source-shell">
<pre>brew install mingw-w64

CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=<span class="pl-s"><span class="pl-pds">"</span>x86_64-w64-mingw32-gcc<span class="pl-pds">"</span></span> go build</pre>
</div>
<h3><strong>Linux</strong></h3>
<div class="highlight highlight-source-shell">
<pre>brew install FiloSottile/musl-cross/musl-cross

CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++ GOARCH=amd64 GOOS=linux CGO_ENABLED=1 go build -ldflags <span class="pl-s"><span class="pl-pds">"</span>-linkmode external -extldflags -static<span class="pl-pds">"</span></span></pre>
</div>
<h3><a id="user-content-run" class="anchor" href="https://github.com/moonD4rk/HackBrowserData#run" target="_blank" rel="nofollow noopener" aria-hidden="true"></a><strong>Run</strong></h3>
<p>You can double-click to run, or use the command line.</p>
<pre><code>PS C:\test&gt; .\hack-browser-data.exe -h
NAME:
   hack-browser-data - Export passwords/cookies/history/bookmarks from browser
USAGE:
   [hack-browser-data -b chrome -f json -dir results -cc]
   Get all data(password/cookie/history/bookmark) from chrome
VERSION:
   0.3.7</code></pre>
<pre><code>GLOBAL OPTIONS:
   --verbose, --vv                     verbose (default: false)
   --compress, --cc                    compress result to zip (default: false)
   --browser value, -b value           available browsers: all|opera|firefox|chrome|edge (default: "all")
   --results-dir value, --dir value    export dir (default: "results")
   --format value, -f value            format, csv|json|console (default: "csv")
   --profile-dir-path value, -p value  custom profile dir path, get with chrome://version
   --key-file-path value, -k value     custom key file path
   --help, -h                          show help (default: false)
   --version, -v                       print the version (default: false)

PS C:\test&gt;  .\hack-browser-data.exe -b all -f json --dir results -cc
[x]:  Get 44 cookies, filename is results/microsoft_edge_cookie.json
[x]:  Get 54 history, filename is results/microsoft_edge_history.json
[x]:  Get 1 passwords, filename is results/microsoft_edge_password.json
[x]:  Get 4 bookmarks, filename is results/microsoft_edge_bookmark.json
[x]:  Get 6 bookmarks, filename is results/360speed_bookmark.json
[x]:  Get 19 cookies, filename is results/360speed_cookie.json
[x]:  Get 18 history, filename is results/360speed_history.json
[x]:  Get 1 passwords, filename is results/360speed_password.json
[x]:  Get 12 history, filename is results/qq_history.json
[x]:  Get 1 passwords, filename is results/qq_password.json
[x]:  Get 12 bookmarks, filename is results/qq_bookmark.json
[x]:  Get 14 cookies, filename is results/qq_cookie.json
[x]:  Get 28 bookmarks, filename is results/firefox_bookmark.json
[x]:  Get 10 cookies, filename is results/firefox_cookie.json
[x]:  Get 33 history, filename is results/firefox_history.json
[x]:  Get 1 passwords, filename is results/firefox_password.json
[x]:  Get 1 passwords, filename is results/chrome_password.json
[x]:  Get 4 bookmarks, filename is results/chrome_bookmark.json
[x]:  Get 6 cookies, filename is results/chrome_cookie.json
[x]:  Get 6 history, filename is results/chrome_history.json
[x]:  Compress success, zip filename is results/archive.zip</code><code></code></pre>
<h3 dir="auto">Run with custom browser profile path</h3>
<div class="snippet-clipboard-content position-relative overflow-auto">
<pre><code>PS C:\Users\User\Desktop&gt; .\hack-browser-data.exe -b edge -p 'C:\Users\User\AppData\Local\Microsoft\Edge\User Data\Default' -k 'C:\Users\User\AppData\Local\Microsoft\Edge\User Data\Local State'

[x]:  Get 29 history, filename is results/microsoft_edge_history.csv
[x]:  Get 0 passwords, filename is results/microsoft_edge_password.csv
[x]:  Get 1 credit cards, filename is results/microsoft_edge_credit.csv
[x]:  Get 4 bookmarks, filename is results/microsoft_edge_bookmark.csv
[x]:  Get 54 cookies, filename is results/microsoft_edge_cookie.csv


PS C:\Users\User\Desktop&gt; .\hack-browser-data.exe -b edge -p 'C:\Users\User\AppData\Local\Microsoft\Edge\User Data\Default'

[x]:  Get 1 credit cards, filename is results/microsoft_edge_credit.csv
[x]:  Get 4 bookmarks, filename is results/microsoft_edge_bookmark.csv
[x]:  Get 54 cookies, filename is results/microsoft_edge_cookie.csv
[x]:  Get 29 history, filename is results/microsoft_edge_history.csv
[x]:  Get 0 passwords, filename is results/microsoft_edge_password.csv</code></pre>
</div>
<p>The post <a href="http://kostacipo.stream/hackbrowserdata-decrypt-passwords-cookies-history-bookmarks-from-the-browser/">HackBrowserData &#8211; Decrypt passwords/cookies/history/bookmarks from the browser</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://kostacipo.stream/hackbrowserdata-decrypt-passwords-cookies-history-bookmarks-from-the-browser/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Web Application Penetration Testing Checklist – A Detailed Cheat Sheet</title>
		<link>http://kostacipo.stream/web-application-penetration-testing-checklist-a-detailed-cheat-sheet/</link>
					<comments>http://kostacipo.stream/web-application-penetration-testing-checklist-a-detailed-cheat-sheet/#respond</comments>
		
		<dc:creator><![CDATA[Majordomo]]></dc:creator>
		<pubDate>Wed, 16 Dec 2020 09:18:22 +0000</pubDate>
				<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Pentesting]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[web applications]]></category>
		<guid isPermaLink="false">http://www.kostacipo.stream/?p=1961</guid>

					<description><![CDATA[<p>Web Application Pentesting is a method of identifying, analyzing and Report the vulnerabilities which are existing in the Web application including buffer overflow, input validation, code Execution, Bypass Authentication, SQL Injection, CSRF, Cross-site scripting in the target web Application which is given for Penetration Testing. Repeatable Testing and Conduct a serious method One of the [&#8230;]</p>
<p>The post <a href="http://kostacipo.stream/web-application-penetration-testing-checklist-a-detailed-cheat-sheet/">Web Application Penetration Testing Checklist – A Detailed Cheat Sheet</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Web Application Pentesting is a method of identifying, analyzing and Report the vulnerabilities which are existing in the Web application including<strong> buffer overflow, input validation, code Execution, Bypass Authentication, SQL Injection, CSRF, Cross-site scripting</strong> in the target web Application which is given for Penetration Testing.</p>
<p>Repeatable Testing and Conduct a serious method One of the Best Method conduct Web Application Penetration Testing for all kind of web application vulnerabilities.</p>
<h2><strong>Web Application Penetration Testing Checklist</strong></h2>
<h4><strong>Information Gathering</strong></h4>
<p>1. Retrieve and Analyze the robot.txt files by using a tool called GNU Wget.</p>
<p>2. Examine the version of the software. database Details, the error technical component, bugs by the error codes by requesting invalid pages.</p>
<p>3. Implement techniques such as DNS inverse queries, DNS zone Transfers, web-based DNS Searches.</p>
<p>4. Perform Directory style Searching and vulnerability scanning, Probe for URLs, using tools such as <strong><a href="https://nmap.org/">NMAP</a></strong> and <strong>Nessus</strong>.</p>
<p>5. Identify the Entry point of the application using <strong>Burp Proxy</strong>,<strong> OWSAP ZAP, TemperIE, WebscarabTemper Data</strong>.</p>
<p>6. By using traditional Fingerprint Tool such as<strong> Nmap, Amap</strong>, perform TCP/ICMP and service Fingerprinting.</p>
<p>7. By Requesting Common File Extension such as.<strong>ASP,EXE, .HTML, .PHP</strong> ,Test for recognized file types/Extensions/Directories.</p>
<p>8. Examine the Sources code From the Accessing Pages of the Application front end.</p>
<h3><strong>Authentication Testing</strong></h3>
<p>1. Check if it is possible to<strong> “reuse”</strong> the session after Logout.also check if the application automatically logs out a user has idle for a certain amount of time.</p>
<p>2. Check whether any sensitive information&nbsp; Remain Stored stored in browser cache.</p>
<p>3. Check and try to Reset the password, by social engineering crack secretive questions and guessing.</p>
<p>4. Check if the <strong>“Remember my password”</strong> Mechanism is implemented by checking the HTML code of the login page.</p>
<p>5. Check if the hardware devices directly communicate and independently with authentication infrastructure using an additional communication channel.</p>
<p>6. Test <strong>CAPTCHA</strong> for authentication vulnerabilities presented or not.</p>
<p>7. Check whether any weak security <strong>questions/Answer</strong> are presented.</p>
<p>8. A successful SQL injection could lead to the loss of customer trust and attackers can steal phone numbers, addresses, and credit card details. Placing a <strong>web application firewall</strong> can filter out the malicious SQL queries in the traffic.</p>
<h3><strong>Authorization Testing</strong></h3>
<p>1. Test the Role and Privilege Manipulation to Access the Resources.</p>
<p>2. Test For Path Traversal by Performing input Vector Enumeration and analyze the input validation functions presented in the web application.</p>
<p>3. Test for cookie and parameter Tempering using web spider tools.</p>
<p>4. Test for HTTP Request Tempering and check whether to gain illegal access to reserved resources.</p>
<h3><strong>Configuration&nbsp; Management Testing</strong></h3>
<p>1. Check directory and File Enumeration review server and application Documentation. also, check the infrastructure and application admin interfaces.</p>
<p>2. Analyze the Web server banner and Performing network scanning.</p>
<p>3. Check and verify the presence of old Documentation and Backup and referenced files such as source codes, passwords, installation paths.</p>
<p>4. Check and identify the ports associated with the <strong>SSL/TLS</strong> services using <strong>NMAP</strong> and <strong>NESSUS</strong>.</p>
<p>5. Review OPTIONS HTTP method using <strong>Netcat </strong>and <strong>Telnet.</strong></p>
<p>6. Test for HTTP methods and XST for credentials of legitimate users.</p>
<p>7. Perform application configuration management test to review the information of the source code, log files and default Error Codes.</p>
<h3><strong>Session Management Testing</strong></h3>
<p>1. Check the URL’s in the Restricted area to Test for Cross sight Request Forgery.</p>
<p>2. Test for Exposed Session variables by inspecting Encryption and reuse of <strong>session token,&nbsp;Proxies and caching, GET&amp;POST</strong>.</p>
<p>3. Collect a sufficient number of cookie samples and analyze the cookie sample algorithm and forge a valid Cookie in order to perform an Attack.</p>
<p>4. Test the cookie attribute using intercept proxies such as <strong>Burp Proxy, OWASP ZAP</strong>, or traffic intercept proxies such as Temper Data.</p>
<p>5. Test the session Fixation, to avoid seal user session.(session Hijacking )</p>
<h3><strong>Data Validation Testing</strong></h3>
<p>1. Performing Sources code Analyze for javascript Coding Errors.</p>
<p>2. Perform Union Query SQL injection testing, standard SQL injection Testing, blind&nbsp; SQL query Testing, using tools such as <strong>sqlninja,sqldumper,sql power injector</strong> .etc.</p>
<p>3. Analyze the HTML Code, Test for stored XSS, leverage stored XSS, using tools such as<strong> XSS proxy, Backframe, Burp Proxy, OWASP, ZAP, XSS Assistant.</strong></p>
<p>4. Perform <strong>LDAP injection</strong> testing for sensitive information about users and hosts.</p>
<p>5. Perform <strong>IMAP/SMTP injection</strong> Testing for Access the Backend Mail server.</p>
<p>6. Perform<strong> XPATH Injection</strong> Testing for Accessing the confidential information</p>
<p>7. Perform <strong>XML injection</strong> testing to know information about XML Structure.</p>
<p>8. Perform Code injection testing to identify input validation Error.</p>
<p>9. Perform Buffer Overflow testing for Stack and heap memory information and application control flow.</p>
<p>10. Test for HTTP Splitting and smuggling for cookies and HTTP redirect information.</p>
<h3><strong>Denial of Service Testing</strong></h3>
<p>1. Send Any Large number of Requests that perform database operations and observe any Slowdown and&nbsp; New Error Messages.</p>
<p>2.Perform manual source code analysis and submit a range of input varying lengths to the applications</p>
<p>3. Test for SQL wildcard attacks for application information testing. Enterprise Networks should choose the <strong>best DDoS Attack prevention services</strong>&nbsp;to ensure the DDoS attack protection and prevent their network</p>
<p>4. Test for User specifies object allocation whether a maximum number of object that application can handle.</p>
<p>5. Enter Extreme Large number of the input field used by the application as a Loop counter. Protect website from future attacks Also Check your Companies&nbsp;<strong>DDOS Attack Downtime Cost.</strong></p>
<p>6. Use a script to automatically submit an extremely long value for the server can be logged the request.</p>
<p>The post <a href="http://kostacipo.stream/web-application-penetration-testing-checklist-a-detailed-cheat-sheet/">Web Application Penetration Testing Checklist – A Detailed Cheat Sheet</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://kostacipo.stream/web-application-penetration-testing-checklist-a-detailed-cheat-sheet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Starting an Open Source Project</title>
		<link>http://kostacipo.stream/starting-an-open-source-project/</link>
					<comments>http://kostacipo.stream/starting-an-open-source-project/#respond</comments>
		
		<dc:creator><![CDATA[Majordomo]]></dc:creator>
		<pubDate>Thu, 29 Oct 2020 23:35:32 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[open source]]></category>
		<guid isPermaLink="false">http://www.kostacipo.stream/?p=1838</guid>

					<description><![CDATA[<p>Learn more about the world of open source and get ready to launch your own project. The “what” and “why” of open source So you’re thinking about getting started with open source? Congratulations! The world appreciates your contribution. Let’s talk about what open source is and why people do it. What does “open source” mean? [&#8230;]</p>
<p>The post <a href="http://kostacipo.stream/starting-an-open-source-project/">Starting an Open Source Project</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: justify;">Learn more about the world of open source and get ready to launch your own project.</h2>
<h2 id="the-what-and-why-of-open-source" style="text-align: justify;">The “what” and “why” of open source</h2>
<p style="text-align: justify;">So you’re thinking about getting started with open source? Congratulations! The world appreciates your contribution. Let’s talk about what open source is and why people do it.</p>
<h3 id="what-does-open-source-mean" style="text-align: justify;">What does “open source” mean?</h3>
<p style="text-align: justify;">When a project is open source, that means <strong>anybody is free to use, study, modify, and distribute your project for any purpose.</strong> These permissions are enforced through <a href="https://opensource.org/licenses">an open source license</a>.</p>
<p style="text-align: justify;">Open source is powerful because it lowers the barriers to adoption and collaboration, allowing people to spread and improve projects quickly. Also because it gives users a potential to control their own computing, relative to closed source. For example, a business using open source software has the option to hire someone to make custom improvements to the software, rather than relying exclusively on a closed source vendor’s product decisions.</p>
<p style="text-align: justify;"><em>Free software</em> refers to the same set of projects as <em>open source</em>. Sometimes you’ll also see <a href="https://en.wikipedia.org/wiki/Free_and_open-source_software">these terms</a> combined as “free and open source software” (FOSS) or “free, libre, and open source software” (FLOSS). <em>Free</em> and <em>libre</em> refer to freedom, not price.</p>
<h3 id="why-do-people-open-source-their-work" style="text-align: justify;">Why do people open source their work?</h3>
<p style="text-align: justify;">There are many reasons why a person or organization would want to open source a project. Some examples include:</p>
<ul style="text-align: justify;">
<li><strong>Collaboration:</strong> Open source projects can accept changes from anybody in the world. <a href="https://github.com/exercism/">Exercism</a>, for example, is a programming exercise platform with over 350 contributors.</li>
<li><strong>Adoption and remixing:</strong> Open source projects can be used by anyone for nearly any purpose. People can even use it to build other things. <a href="https://github.com/WordPress">WordPress</a>, for example, started as a fork of an existing project called <a href="https://github.com/WordPress/book/blob/HEAD/Content/Part%201/2-b2-cafelog.md">b2</a>.</li>
<li><strong>Transparency:</strong> Anyone can inspect an open source project for errors or inconsistencies. Transparency matters to governments like <a href="https://medium.com/@bozhobg/bulgaria-got-a-law-requiring-open-source-98bf626cf70a">Bulgaria</a> or the <a href="https://sourcecode.cio.gov/">United States</a>, regulated industries like banking or healthcare, and security software like <a href="https://github.com/letsencrypt">Let’s Encrypt</a>.</li>
</ul>
<p style="text-align: justify;">Open source isn’t just for software, either. You can open source everything from data sets to books. Check out <a href="https://github.com/explore">GitHub Explore</a> for ideas on what else you can open source.</p>
<h3 id="does-open-source-mean-free-of-charge" style="text-align: justify;">Does open source mean “free of charge”?</h3>
<p style="text-align: justify;">One of open source’s biggest draws is that it does not cost money. “Free of charge”, however, is a byproduct of open source’s overall value.</p>
<p style="text-align: justify;">Because <a href="https://opensource.org/osd-annotated">an open source license requires</a> that anyone can use, modify, and share your project for nearly any purpose, projects themselves tend to be free of charge. If the project cost money to use, anyone could legally make a copy and use the free version instead.</p>
<p style="text-align: justify;">As a result, most open source projects are free, but “free of charge” is not part of the open source definition. There are ways to charge for open source projects indirectly through dual licensing or limited features, while still complying with the official definition of open source.</p>
<h2 id="should-i-launch-my-own-open-source-project" style="text-align: justify;">Should I launch my own open source project?</h2>
<p style="text-align: justify;">The short answer is yes, because no matter the outcome, launching your own project is a great way to learn how open source works.</p>
<p style="text-align: justify;">If you’ve never open sourced a project before, you might be nervous about what people will say, or whether anyone will notice at all. If this sounds like you, you’re not alone!</p>
<p style="text-align: justify;">Open source work is like any other creative activity, whether it’s writing or painting. It can feel scary to share your work with the world, but the only way to get better is to practice &#8211; even if you don’t have an audience.</p>
<p style="text-align: justify;">If you’re not yet convinced, take a moment to think about what your goals might be.</p>
<h3 id="setting-your-goals" style="text-align: justify;">Setting your goals</h3>
<p style="text-align: justify;">Goals can help you figure out what to work on, what to say no to, and where you need help from others. Start by asking yourself, <em>why am I open sourcing this project?</em></p>
<p style="text-align: justify;">There is no one right answer to this question. You may have multiple goals for a single project, or different projects with different goals.</p>
<p style="text-align: justify;">If your only goal is to show off your work, you may not even want contributions, and even say so in your README. On the other hand, if you do want contributors, you’ll invest time into clear documentation and making newcomers feel welcome.</p>
<p style="text-align: justify;">As your project grows, your community may need more than just code from you. Responding to issues, reviewing code, and evangelizing your project are all important tasks in an open source project.</p>
<p style="text-align: justify;">While the amount of time you spend on non-coding tasks will depend on the size and scope of your project, you should be prepared as a maintainer to address them yourself or find someone to help you.</p>
<p style="text-align: justify;"><strong>If you’re part of a company open sourcing a project,</strong> make sure your project has the internal resources it needs to thrive. You’ll want to identify who’s responsible for maintaining the project after launch, and how you’ll share those tasks with your community.</p>
<p style="text-align: justify;">If you need a dedicated budget or staffing for promotion, operations and maintaining the project, start those conversations early.</p>
<h3 id="contributing-to-other-projects" style="text-align: justify;">Contributing to other projects</h3>
<p style="text-align: justify;">If your goal is to learn how to collaborate with others or understand how open source works, consider contributing to an existing project. Start with a project that you already use and love. Contributing to a project can be as simple as fixing typos or updating documentation.</p>
<h2 id="launching-your-own-open-source-project" style="text-align: justify;">Launching your own open source project</h2>
<p style="text-align: justify;">There is no perfect time to open source your work. You can open source an idea, a work in progress, or after years of being closed source.</p>
<p style="text-align: justify;">Generally speaking, you should open source your project when you feel comfortable having others view, and give feedback on, your work.</p>
<p style="text-align: justify;">No matter which stage you decide to open source your project, every project should include the following documentation:</p>
<ul style="text-align: justify;">
<li><a href="https://help.github.com/articles/open-source-licensing/#where-does-the-license-live-on-my-repository">Open source license</a></li>
<li><a href="https://help.github.com/articles/create-a-repo/#commit-your-first-change">README</a></li>
<li><a href="https://help.github.com/articles/setting-guidelines-for-repository-contributors/">Contributing guidelines</a></li>
</ul>
<p style="text-align: justify;">As a maintainer, these components will help you communicate expectations, manage contributions, and protect everyone’s legal rights (including your own). They significantly increase your chances of having a positive experience.</p>
<p style="text-align: justify;">If your project is on GitHub, putting these files in your root directory with the recommended filenames will help GitHub recognize and automatically surface them to your readers.</p>
<h3 id="choosing-a-license" style="text-align: justify;">Choosing a license</h3>
<p style="text-align: justify;">An open source license guarantees that others can use, copy, modify, and contribute back to your project without repercussions. It also protects you from sticky legal situations. <strong>You must include a license when you launch an open source project.</strong></p>
<p style="text-align: justify;">Legal work is no fun. The good news is that you can copy and paste an existing license into your repository. It will only take a minute to protect your hard work.</p>
<p style="text-align: justify;"><a href="https://choosealicense.com/licenses/mit/">MIT</a>, <a href="https://choosealicense.com/licenses/apache-2.0/">Apache 2.0</a>, and <a href="https://choosealicense.com/licenses/gpl-3.0/">GPLv3</a> are the most popular open source licenses, but <a href="https://choosealicense.com">there are other options</a> to choose from.</p>
<p style="text-align: justify;">When you create a new project on GitHub, you are given the option to select a license. Including an open source license will make your GitHub project open source.</p>
<p style="text-align: justify;"><img decoding="async" src="https://opensource.guide/assets/images/starting-a-project/repository-license-picker.png" alt="Pick a license"></p>
<p style="text-align: justify;">If you have other questions or concerns around the legal aspects of managing an open source project, <a href="https://opensource.guide/legal/">we’ve got you covered</a>.</p>
<h3 id="writing-a-readme" style="text-align: justify;">Writing a README</h3>
<p style="text-align: justify;">READMEs do more than explain how to use your project. They also explain why your project matters, and what your users can do with it.</p>
<p style="text-align: justify;">In your README, try to answer the following questions:</p>
<ul style="text-align: justify;">
<li>What does this project do?</li>
<li>Why is this project useful?</li>
<li>How do I get started?</li>
<li>Where can I get more help, if I need it?</li>
</ul>
<p style="text-align: justify;">You can use your README to answer other questions, like how you handle contributions, what the goals of the project are, and information about licenses and attribution. If you don’t want to accept contributions, or your project is not yet ready for production, write this information down.</p>
<p style="text-align: justify;">Sometimes, people avoid writing a README because they feel like the project is unfinished, or they don’t want contributions. These are all very good reasons to write one.</p>
<p style="text-align: justify;">For more inspiration, try using <a class="user-mention" href="https://github.com/dguo">@dguo</a>’s <a href="https://www.makeareadme.com/">“Make a README” guide</a> or <a class="user-mention" href="https://github.com/PurpleBooth">@PurpleBooth</a>’s <a href="https://gist.github.com/PurpleBooth/109311bb0361f32d87a2">README template</a> to write a complete README.</p>
<p style="text-align: justify;">When you include a README file in the root directory, GitHub will automatically display it on the repository homepage.</p>
<h3 id="writing-your-contributing-guidelines" style="text-align: justify;">Writing your contributing guidelines</h3>
<p style="text-align: justify;">A CONTRIBUTING file tells your audience how to participate in your project. For example, you might include information on:</p>
<ul style="text-align: justify;">
<li>How to file a bug report (try using <a href="https://github.com/blog/2111-issue-and-pull-request-templates">issue and pull request templates</a>)</li>
<li>How to suggest a new feature</li>
<li>How to set up your environment and run tests</li>
</ul>
<p style="text-align: justify;">In addition to technical details, a CONTRIBUTING file is an opportunity to communicate your expectations for contributions, such as:</p>
<ul style="text-align: justify;">
<li>The types of contributions you’re looking for</li>
<li>Your roadmap or vision for the project</li>
<li>How contributors should (or should not) get in touch with you</li>
</ul>
<p style="text-align: justify;">Using a warm, friendly tone and offering specific suggestions for contributions (such as writing documentation, or making a website) can go a long way in making newcomers feel welcomed and excited to participate.</p>
<p style="text-align: justify;">For example, <a href="https://github.com/activeadmin/activeadmin/">Active Admin</a> starts <a href="https://github.com/activeadmin/activeadmin/blob/HEAD/CONTRIBUTING.md">its contributing guide</a> with:</p>
<blockquote><p>First off, thank you for considering contributing to Active Admin. It’s people like you that make Active Admin such a great tool.</p></blockquote>
<p style="text-align: justify;">In the earliest stages of your project, your CONTRIBUTING file can be simple. You should always explain how to report bugs or file issues, and any technical requirements (like tests) to make a contribution.</p>
<p style="text-align: justify;">Over time, you might add other frequently asked questions to your CONTRIBUTING file. Writing down this information means fewer people will ask you the same questions over and over again.</p>
<p style="text-align: justify;">For more help with writing your CONTRIBUTING file, check out <a class="user-mention" href="https://github.com/nayafia">@nayafia</a>’s <a href="https://github.com/nayafia/contributing-template/blob/HEAD/CONTRIBUTING-template.md">contributing guide template</a> or <a class="user-mention" href="https://github.com/mozilla">@mozilla</a>’s <a href="https://mozillascience.github.io/working-open-workshop/contributing/">“How to Build a CONTRIBUTING.md”</a>.</p>
<p style="text-align: justify;">Link to your CONTRIBUTING file from your README, so more people see it. If you <a href="https://help.github.com/articles/setting-guidelines-for-repository-contributors/">place the CONTRIBUTING file in your project’s repository</a>, GitHub will automatically link to your file when a contributor creates an issue or opens a pull request.</p>
<p style="text-align: justify;"><img decoding="async" src="https://opensource.guide/assets/images/starting-a-project/Contributing-guidelines.jpg" alt="Contributing guidelines"></p>
<h3 id="establishing-a-code-of-conduct" style="text-align: justify;">Establishing a code of conduct</h3>
<p style="text-align: justify;">Finally, a code of conduct helps set ground rules for behavior for your project’s participants. This is especially valuable if you’re launching an open source project for a community or company. A code of conduct empowers you to facilitate healthy, constructive community behavior, which will reduce your stress as a maintainer.</p>
<p style="text-align: justify;">In addition to communicating <em>how</em> you expect participants to behave, a code of conduct also tends to describe who these expectations apply to, when they apply, and what to do if a violation occurs.</p>
<p style="text-align: justify;">Much like open source licenses, there are also emerging standards for codes of conduct, so you don’t have to write your own. The <a href="https://contributor-covenant.org/">Contributor Covenant</a> is a drop-in code of conduct that is used by <a href="https://www.contributor-covenant.org/adopters">over 40,000 open source projects</a>, including Kubernetes, Rails, and Swift. No matter which text you use, you should be prepared to enforce your code of conduct when necessary.</p>
<p style="text-align: justify;">Paste the text directly into a CODE_OF_CONDUCT file in your repository. Keep the file in your project’s root directory so it’s easy to find, and link to it from your README.</p>
<h2 id="naming-and-branding-your-project" style="text-align: justify;">Naming and branding your project</h2>
<p style="text-align: justify;">Branding is more than a flashy logo or catchy project name. It’s about how you talk about your project, and who you reach with your message.</p>
<h3 id="choosing-the-right-name" style="text-align: justify;">Choosing the right name</h3>
<p style="text-align: justify;">Pick a name that is easy to remember and, ideally, gives some idea of what the project does. For example:</p>
<ul style="text-align: justify;">
<li><a href="https://github.com/getsentry/sentry">Sentry</a> monitors apps for crash reporting</li>
<li><a href="https://github.com/macournoyer/thin">Thin</a> is a fast and simple Ruby web server</li>
</ul>
<p style="text-align: justify;">If you’re building upon an existing project, using their name as a prefix can help clarify what your project does (for example, <a href="https://github.com/bitinn/node-fetch">node-fetch</a> brings <code class="language-plaintext highlighter-rouge">window.fetch</code> to Node.js).</p>
<p style="text-align: justify;">Consider clarity above all. Puns are fun, but remember that some jokes might not translate to other cultures or people with different experiences from you. Some of your potential users might be company employees: you don’t want to make them uncomfortable when they have to explain your project at work!</p>
<h3 id="avoiding-name-conflicts" style="text-align: justify;">Avoiding name conflicts</h3>
<p style="text-align: justify;"><a href="http://ivantomic.com/projects/ospnc/">Check for open source projects with a similar name</a>, especially if you share the same language or ecosystem. If your name overlaps with a popular existing project, you might confuse your audience.</p>
<p style="text-align: justify;">If you want a website, Twitter handle, or other properties to represent your project, make sure you can get the names you want. Ideally, <a href="https://instantdomainsearch.com/">reserve those names now</a> for peace of mind, even if you don’t intend to use them just yet.</p>
<p style="text-align: justify;">Make sure that your project’s name doesn’t infringe upon any trademarks. A company might ask you to take down your project later on, or even take legal action against you. It’s just not worth the risk.</p>
<p style="text-align: justify;">You can check the <a href="http://www.wipo.int/branddb/en/">WIPO Global Brand Database</a> for trademark conflicts. If you’re at a company, this is one of the things your legal team can help you with.</p>
<p style="text-align: justify;">Finally, do a quick Google search for your project name. Will people be able to easily find your project? Does something else appear in the search results that you wouldn’t want them to see?</p>
<h3 id="how-you-write-and-code-affects-your-brand-too" style="text-align: justify;">How you write (and code) affects your brand, too!</h3>
<p style="text-align: justify;">Throughout the life of your project, you’ll do a lot of writing: READMEs, tutorials, community documents, responding to issues, maybe even newsletters and mailing lists.</p>
<p style="text-align: justify;">Whether it’s official documentation or a casual email, your writing style is part of your project’s brand. Consider how you might come across to your audience and whether that is the tone you wish to convey.</p>
<p style="text-align: justify;">Using warm, inclusive language (such as “them”, even when referring to the single person) can go a long way in making your project feel welcoming to new contributors. Stick to simple language, as many of your readers may not be native English speakers.</p>
<p style="text-align: justify;">Beyond how you write words, your coding style may also become part of your project’s brand. <a href="https://angular.io/guide/styleguide">Angular</a> and <a href="https://contribute.jquery.org/style-guide/js/">jQuery</a> are two examples of projects with rigorous coding styles and guidelines.</p>
<p style="text-align: justify;">It isn’t necessary to write a style guide for your project when you’re just starting out, and you may find that you enjoy incorporating different coding styles into your project anyway. But you should anticipate how your writing and coding style might attract or discourage different types of people. The earliest stages of your project are your opportunity to set the precedent you wish to see.</p>
<h2 id="your-pre-launch-checklist" style="text-align: justify;">Your pre-launch checklist</h2>
<p style="text-align: justify;">Ready to open source your project? Here’s a checklist to help. Check all the boxes? You’re ready to go! <a href="https://help.github.com/articles/making-a-private-repository-public/">Click “publish”</a> and pat yourself on the back.</p>
<p style="text-align: justify;"><strong>Documentation</strong></p>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox1" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox1"> Project has a LICENSE file with an open source license </label></div>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox2" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox2"> Project has basic documentation (README, CONTRIBUTING, CODE_OF_CONDUCT) </label></div>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox3" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox3"> The name is easy to remember, gives some idea of what the project does, and does not conflict with an existing project or infringe on trademarks </label></div>
<div class="clearfix mb-4" style="text-align: justify;"><input id="cbox4" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox4"> The issue queue is up-to-date, with issues clearly organized and labeled </label></div>
<p style="text-align: justify;">&nbsp;</p>
<p style="text-align: justify;"><strong>Code</strong></p>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox5" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox5"> Project uses consistent code conventions and clear function/method/variable names </label></div>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox6" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox6"> The code is clearly commented, documenting intentions and edge cases </label></div>
<div class="clearfix mb-4" style="text-align: justify;"><input id="cbox7" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox7"> There are no sensitive materials in the revision history, issues, or pull requests (for example, passwords or other non-public information) </label></div>
<p style="text-align: justify;">&nbsp;</p>
<p style="text-align: justify;"><strong>People</strong></p>
<p style="text-align: justify;">If you’re an individual:</p>
<div class="clearfix mb-4" style="text-align: justify;"><input id="cbox8" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox8"> You&#8217;ve talked to the legal department and/or understand the IP and open source policies of your company (if you&#8217;re an employee somewhere) </label></div>
<p style="text-align: justify;">If you’re a company or organization:</p>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox9" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox9"> You&#8217;ve talked to your legal department </label></div>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox10" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox10"> You have a marketing plan for announcing and promoting the project </label></div>
<div class="clearfix mb-2" style="text-align: justify;"><input id="cbox11" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox11"> Someone is committed to managing community interactions (responding to issues, reviewing and merging pull requests) </label></div>
<div class="clearfix mb-4" style="text-align: justify;"><input id="cbox12" class="d-block float-left mt-1 mr-2" type="checkbox" value="checkbox"> <label class="overflow-hidden d-block text-normal" for="cbox12"> At least two people have administrative access to the project </label></div>
<h2 id="you-did-it" style="text-align: justify;">You did it!</h2>
<p style="text-align: justify;">Congratulations on open sourcing your first project. No matter the outcome, working in public is a gift to the community. With every commit, comment, and pull request, you’re creating opportunities for yourself and for others to learn and grow.</p>
<p>The post <a href="http://kostacipo.stream/starting-an-open-source-project/">Starting an Open Source Project</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://kostacipo.stream/starting-an-open-source-project/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Securely Access the Darkweb (Darknet)?</title>
		<link>http://kostacipo.stream/how-to-securely-access-the-darkweb-darknet/</link>
					<comments>http://kostacipo.stream/how-to-securely-access-the-darkweb-darknet/#respond</comments>
		
		<dc:creator><![CDATA[Majordomo]]></dc:creator>
		<pubDate>Fri, 28 Aug 2020 10:48:43 +0000</pubDate>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[darkweb]]></category>
		<category><![CDATA[web]]></category>
		<guid isPermaLink="false">http://www.kostacipo.stream/?p=1805</guid>

					<description><![CDATA[<p>&#160; The internet we usually use is only a fraction of the area we can access. With the emergence of the internet all around the world, more security solutions were introduced to make the website secure, as well as keeping the required information confidential from others. In the 1990’s, the US military introduced the concept [&#8230;]</p>
<p>The post <a href="http://kostacipo.stream/how-to-securely-access-the-darkweb-darknet/">How to Securely Access the Darkweb (Darknet)?</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<p>The internet we usually use is only a fraction of the area we can access. With the emergence of the internet all around the world, more security solutions were introduced to make the website secure, as well as keeping the required information confidential from others. In the 1990’s, the US military introduced the concept of the Dark web, which is only accessible by using specific tools so that Google or other search engines do not index it. The need comes because of the sensitive nature of data the military has to share.</p>
<p>In 2000, the use of <a href="https://www.ehacking.net/2015/04/darknet-markets-under-attack.html">Darknet</a> was available for everyone, and since then, everyone who wants to remain anonymous and not being tracked can use the Darkweb. Some of the search engines that are available for accessing Dark web are given below:</p>
<ul>
<li><a href="https://thehiddenwiki.org/">The Hidden Wiki</a></li>
<li><a href="http://hss3uro2hsxfogfq.onion">Not Evil</a></li>
<li><a href="http://haystakvxad7wbk5.onion">HayStak</a></li>
<li><a href="https://3g2upl4pq6kufc4m.onion/">DuckDuckGo</a></li>
</ul>
<h2>Access the Darknet via TOR Browser:</h2>
<p>Now let’s talk about the Tor browser. So far, we know some of the search engines that can be used to access the dark web. But the question is that can we use any browser like Google Chrome or Firefox to use those search engines. The answer is <strong>NO. </strong>We need to use a specific browser that does not transfer any personal information from your system to the internet. Tor anonymizes the data by creating a series of routers called ‘<strong>onion routers</strong>.’ The data remains encrypted when it goes from one onion router to another router.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-7829 td-animation-stack-type0-2" src="https://www.ehacking.net/wp-content/uploads/2020/08/Access-the-Darknet-via-TOR-Browser.png" sizes="(max-width: 709px) 100vw, 709px" srcset="https://www.ehacking.net/wp-content/uploads/2020/08/Access-the-Darknet-via-TOR-Browser.png 709w, https://www.ehacking.net/wp-content/uploads/2020/08/Access-the-Darknet-via-TOR-Browser-300x159.png 300w, https://www.ehacking.net/wp-content/uploads/2020/08/Access-the-Darknet-via-TOR-Browser-696x369.png 696w" alt="Access the Darknet via TOR Browser" width="709" height="376"></p>
<p>The figure above is a clear demonstration of the Tor network. All the routes are encrypted by the Onion router apart from the exit relay. Between these routes, no one can trace a person or see the actual data. The only possibility is that if a person can capture the traffic on the exit relay, but since the Tor network is anonymized so much, it cannot be predicted that which router is the exit relay.</p>
<h2>Is Darkweb safe to use?</h2>
<p>Since the dark web provides anonymity, it is widely used by cybercriminals, terrorists, military intelligence, hackers, and spammers. All the illegal activities, including trading of drugs, money laundering, weapons, etc. are done through the Darknet. Therefore, it is not safe for the children to use and access the Dark web since they might mistakenly access some unwanted things that can affect the children psychologically. It is recommended to parents that they must keep an eye on the child for any such activities. Regular users can browse the dark web for day to day activities if they are concerned about their privacy. However, accessing the suspicious URLs such as trading of drugs, etc. is not allowed by law and if caught, will be sent to prison.</p>
<h2>Starting with TOR browser to surf anonymously:</h2>
<p>To access the Dark web, we need to download the TOR browser, which is an open-source project by TOR, partially funded by the US government. TOR Browser can be downloaded from the following link:</p>
<ul>
<li><a href="https://www.torproject.org/download/">https://www.torproject.org/download/</a></li>
</ul>
<p>After downloading and installing, we can see a similar interface to that of any normal browser we use. The search bar displays the message as “Search with DuckDuckGo” which is a default search engine in TOR browser.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-7830 td-animation-stack-type0-2" src="https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately.png" sizes="(max-width: 1574px) 100vw, 1574px" srcset="https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately.png 1574w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-300x157.png 300w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-1024x537.png 1024w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-768x403.png 768w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-1536x805.png 1536w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-696x365.png 696w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-1068x560.png 1068w, https://www.ehacking.net/wp-content/uploads/2020/08/explore-privately-801x420.png 801w" alt="explore privately" width="1574" height="825"></p>
<h2>Accessing hidden services</h2>
<p>Dark web URL’s end with. onion as their top-level domain. Anything that ends with. onion is basically a hidden website only accessible via particular browsers such as TOR browser. Now let’s take a look at <strong>theh</strong><strong>iddenwiki, </strong>which is a Wikipedia of onion sites.</p>
<ul>
<li><a href="https://thehiddenwiki.org/">https://thehiddenwiki.org/</a></li>
</ul>
<p><img decoding="async" class="aligncenter size-full wp-image-7831 td-animation-stack-type0-2" src="https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services.png" sizes="(max-width: 1269px) 100vw, 1269px" srcset="https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services.png 1269w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-300x183.png 300w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-1024x625.png 1024w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-768x468.png 768w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-696x425.png 696w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-1068x651.png 1068w, https://www.ehacking.net/wp-content/uploads/2020/08/Accessing-hidden-services-689x420.png 689w" alt="Accessing hidden services" width="1269" height="774"></p>
<p>As shown above, it has links to all onion sites of all categories, including Blogging, social media platforms, marketplace financial, commercial services, PayPal, and many more.</p>
<p>We can copy any of these URLs and paste in TOR browser’s default search engine DuckDuckGo. To access the Facebook hidden service, use their. onion URL, and it will be accessed normally. It is to be noted that this URL won’t work with regular browsers.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-7832 td-animation-stack-type0-2" src="https://www.ehacking.net/wp-content/uploads/2020/08/sign.png" sizes="auto, (max-width: 1581px) 100vw, 1581px" srcset="https://www.ehacking.net/wp-content/uploads/2020/08/sign.png 1581w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-300x144.png 300w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-1024x493.png 1024w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-768x370.png 768w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-1536x739.png 1536w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-696x335.png 696w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-1068x514.png 1068w, https://www.ehacking.net/wp-content/uploads/2020/08/sign-873x420.png 873w" alt="sign" width="1581" height="761"></p>
<p>The scary part of this is that criminals can use this platform to perform illegal activities such as renting a hacker as shown in the below screenshot. Therefore, it is very important to use it with special precautions to avoid any unlawful activities.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-7833 td-animation-stack-type0-2" src="https://www.ehacking.net/wp-content/uploads/2020/08/hacking.png" sizes="auto, (max-width: 1202px) 100vw, 1202px" srcset="https://www.ehacking.net/wp-content/uploads/2020/08/hacking.png 1202w, https://www.ehacking.net/wp-content/uploads/2020/08/hacking-300x95.png 300w, https://www.ehacking.net/wp-content/uploads/2020/08/hacking-1024x325.png 1024w, https://www.ehacking.net/wp-content/uploads/2020/08/hacking-768x243.png 768w, https://www.ehacking.net/wp-content/uploads/2020/08/hacking-696x221.png 696w, https://www.ehacking.net/wp-content/uploads/2020/08/hacking-1068x339.png 1068w" alt="hacking" width="1202" height="381"></p>
<p>The internet we see is a very little part of the overall web. But it is also important to note that most of the internet is full of nasty things and illegal activities. Therefore, it is recommended that users, especially children, should stay away from the dark web.</p>
<p>The post <a href="http://kostacipo.stream/how-to-securely-access-the-darkweb-darknet/">How to Securely Access the Darkweb (Darknet)?</a> appeared first on <a href="http://kostacipo.stream">Tech Chronicles</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://kostacipo.stream/how-to-securely-access-the-darkweb-darknet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
